jx/internal/resource/schemas/certificate-declaration.schema.json

18 lines
415 B
JSON
Raw Normal View History

2024-09-27 15:21:32 +00:00
{
"$id": "certificate-declaration.schema.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "certificate-declaration",
"type": "object",
"required": [ "type", "attributes" ],
"properties": {
"type": {
"type": "string",
"description": "Resource type name.",
"enum": [ "certificate" ]
},
"attributes": {
"$ref": "certificate.schema.json"
}
}
}