mirror of
https://github.com/certbot/certbot.git
synced 2026-01-26 07:41:33 +03:00
19 lines
538 B
JSON
19 lines
538 B
JSON
{
|
|
"id": "https://letsencrypt.org/schema/01/revocationRequest#",
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
"description": "Schema for a revocationRequest message",
|
|
"type": "object",
|
|
"required": ["type", "certificate", "signature"],
|
|
"properties": {
|
|
"type" : {
|
|
"enum" : [ "revocationRequest" ]
|
|
},
|
|
"certificate" : {
|
|
"type" : "string"
|
|
},
|
|
"signature" : {
|
|
"$ref": "file:letsencrypt/client/schemata/signature.json"
|
|
}
|
|
}
|
|
}
|