jx/internal/resource/schemas/openpgp-keyring-declaration.schema.json

22 lines
502 B
JSON
Raw Normal View History

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