jx/internal/resource/schemas/openpgp-signature-declaration.schema.json
2025-08-25 03:12:08 +00:00

22 lines
521 B
JSON

{
"$id": "openpgp-signature-declaration.schema.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "openpgp-signature-declaration",
"type": "object",
"required": [ "type", "attributes" ],
"properties": {
"type": {
"type": "string",
"description": "Resource type name.",
"enum": [ "openpgp-signature" ]
},
"config": {
"type": "string",
"description": "Config name"
},
"attributes": {
"$ref": "openpgp-signature.schema.json"
}
}
}