24 lines
524 B
JSON
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"
|
|
}
|
|
}
|
|
}
|