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

24 lines
524 B
JSON

{
"$id": "openpgp-signature.schema.json",
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "openpgp-signature",
"type": "object",
"required": [ ],
"properties": {
"signature": {
"type": "string",
"description": "ASCII-armored PGP signature"
},
"sourceref": {
"$ref": "ref.schema.json"
},
"keyringref": {
"$ref": "ref.schema.json"
},
"signatureref": {
"$ref": "ref.schema.json",
"description": "file content signature uri"
}
}
}