get https://{hostname}/alerts/v2/json-schema/alert-template-header
Template headers are the summaries that appear in template listings. This operation gets the JSON schema that describes their contents.
Responses
Template headers are the summaries that appear in template listings. This operation gets the JSON schema that describes their contents.
xxxxxxxxxx
curl --request GET \
--url https://hostname/alerts/v2/json-schema/alert-template-header \
--header 'accept: application/schema+json'
xxxxxxxxxx
51}
{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Brief Summary of Alert template.",
"properties": {
"links": {
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Link relations to schemas and rest endpoints",
"items": {
"href": {
"description": "link to resource of type described by rel",
"type": "string"
},
"rel": {
"description": "Describes type of link",
"type": "string"
}
},
"minItems": 2,
"required": [
"rel",
"href"
],
"title": "Json link relations",
"type": "array",
"uniqueItems": true