designate/designate/resources/schemas/v2/tsigkeys.json

39 lines
925 B
JSON

{
"$schema": "http://json-schema.org/draft-04/hyper-schema",
"id": "tsigkey",
"title": "tsigkey",
"description": "TSIG Key",
"additionalProperties": false,
"required": ["tsigkeys"],
"properties": {
"tsigkeys": {
"type": "array",
"description": "TSIG Key",
"items": {"$ref": "tsigkey#/properties/tsigkey"}
},
"links": {
"type": "object",
"additionalProperties": false,
"properties": {
"self": {
"type": "string",
"format": "url"
},
"next": {
"type": ["string", "null"],
"format": "url"
},
"previous": {
"type": ["string", "null"],
"format": "url"
}
}
}
}
}