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