mirror of
https://github.com/certbot/certbot.git
synced 2026-01-26 07:41:33 +03:00
22 lines
574 B
JSON
22 lines
574 B
JSON
{
|
|
"id": "https://letsencrypt.org/schema/01/error#",
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
"description": "Schema for an error message",
|
|
"type": "object",
|
|
"required": ["type", "error"],
|
|
"properties": {
|
|
"type" : {
|
|
"enum" : [ "error" ]
|
|
},
|
|
"error" : {
|
|
"enum" : [ "malformed", "unauthorized", "serverInternal", "nonSupported", "unknown", "badCSR" ]
|
|
},
|
|
"message" : {
|
|
"type": "string"
|
|
},
|
|
"moreInfo": {
|
|
"type": "string"
|
|
}
|
|
}
|
|
}
|