mirror of
https://github.com/jc21/nginx-proxy-manager.git
synced 2024-08-30 18:22:48 +00:00
18 lines
301 B
JSON
18 lines
301 B
JSON
{
|
|
"type": "object",
|
|
"description": "ErrorObject",
|
|
"additionalProperties": false,
|
|
"required": ["code", "message"],
|
|
"properties": {
|
|
"code": {
|
|
"type": "integer",
|
|
"description": "Error code",
|
|
"minimum": 0
|
|
},
|
|
"message": {
|
|
"type": "string",
|
|
"description": "Error message"
|
|
}
|
|
}
|
|
}
|