jx/internal/resource/schemas/certificate-declaration.schema.json
Matthew Rich 37333fc120
Some checks failed
Lint / golangci-lint (push) Successful in 10m23s
Declarative Tests / test (push) Failing after 27s
Declarative Tests / build-fedora (push) Failing after 2m32s
Declarative Tests / build-ubuntu-focal (push) Successful in 1m50s
add missing certificate schemas
2024-09-27 08:21:32 -07:00

18 lines
415 B
JSON

{
"$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"
}
}
}