/metadata_spec
Gets a pagination of Metadata Specs for the given query.
0
20
default response
GET /api/rest/metadata_spec HTTP/1.1
Host: localhost:8080
Authorization: YOUR_API_KEY
Accept: */*
{
"code": "text",
"message": "text"
}
Creates a new Metadata Spec definition.
Represents a request to create a MetadataSpec definition.
The name of the metadata spec.
The type of the metadata spec.
The token template tabs to create.
default response
POST /api/rest/metadata_spec HTTP/1.1
Host: localhost:8080
Authorization: YOUR_API_KEY
Content-Type: */*
Accept: */*
Content-Length: 305
{
"name": null,
"type": "STRING",
"properties": [
{
"name": null,
"displayName": null,
"type": "STRING",
"required": null,
"placeholder": null,
"defaultValue": null,
"properties": [
{
"name": null,
"displayName": null,
"type": "STRING",
"required": null,
"placeholder": null,
"defaultValue": null,
"properties": [
"[Circular Reference]"
]
}
]
}
]
}
{
"code": "text",
"message": "text"
}
Updates a MetadataSpec with the specified id.
Represents a request to update a MetadataSpec.
The name of the metadata spec.
The type of the metadata spec.
The updated list of properties.
default response
PUT /api/rest/metadata_spec/{metadataSpecId} HTTP/1.1
Host: localhost:8080
Authorization: YOUR_API_KEY
Content-Type: */*
Accept: */*
Content-Length: 305
{
"name": null,
"type": "STRING",
"properties": [
{
"name": null,
"displayName": null,
"type": "STRING",
"required": null,
"placeholder": null,
"defaultValue": null,
"properties": [
{
"name": null,
"displayName": null,
"type": "STRING",
"required": null,
"placeholder": null,
"defaultValue": null,
"properties": [
"[Circular Reference]"
]
}
]
}
]
}
{
"code": "text",
"message": "text"
}
Deletes a MetadataSpec with the specified id.
default response
DELETE /api/rest/metadata_spec/{metadataSpecId} HTTP/1.1
Host: localhost:8080
Authorization: YOUR_API_KEY
Accept: */*
{
"code": "text",
"message": "text"
}
Gets a specific Metadata Editor Schema backed by the supplied MetadataSpec by name.
default response
GET /api/rest/metadata_spec/{metadataSpecName}/editor.json HTTP/1.1
Host: localhost:8080
Authorization: YOUR_API_KEY
Accept: */*
{
"code": "text",
"message": "text"
}
Gets a specific JSON Schema backed by the supplied MetadataSpec by name.
default response
GET /api/rest/metadata_spec/{metadataSpecName}/schema.json HTTP/1.1
Host: localhost:8080
Authorization: YOUR_API_KEY
Accept: */*
{
"code": "text",
"message": "text"
}
Gets a specific MetadataSpec by name or Id.
default response
GET /api/rest/metadata_spec/{metadataSpecNameOrId} HTTP/1.1
Host: localhost:8080
Authorization: YOUR_API_KEY
Accept: */*
{
"code": "text",
"message": "text"
}
Last updated