mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-08-27 19:20:04 +00:00
41 lines
755 B
JSON
41 lines
755 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
|
|
}
|
|
}
|
|
} |