mirror of
https://github.com/jc21/nginx-proxy-manager.git
synced 2024-08-30 18:22:48 +00:00
42 lines
863 B
JSON
42 lines
863 B
JSON
|
{
|
||
|
"type": "object",
|
||
|
"description": "HealthObject",
|
||
|
"additionalProperties": false,
|
||
|
"required": ["version", "commit", "healthy", "setup", "error_reporting"],
|
||
|
"properties": {
|
||
|
"version": {
|
||
|
"type": "string",
|
||
|
"description": "Version",
|
||
|
"example": "3.0.0",
|
||
|
"minLength": 1
|
||
|
},
|
||
|
"commit": {
|
||
|
"type": "string",
|
||
|
"description": "Commit hash",
|
||
|
"example": "946b88f",
|
||
|
"minLength": 7
|
||
|
},
|
||
|
"healthy": {
|
||
|
"type": "boolean",
|
||
|
"description": "Healthy?",
|
||
|
"example": true
|
||
|
},
|
||
|
"setup": {
|
||
|
"type": "boolean",
|
||
|
"description": "Is the application set up?",
|
||
|
"example": true
|
||
|
},
|
||
|
"error_reporting": {
|
||
|
"type": "boolean",
|
||
|
"description": "Will the application send any error reporting?",
|
||
|
"example": true
|
||
|
},
|
||
|
"acme.sh": {
|
||
|
"type": "string",
|
||
|
"description": "Acme.sh version",
|
||
|
"example": "v3.0.0",
|
||
|
"minLength": 1
|
||
|
}
|
||
|
}
|
||
|
}
|