nginx-proxy-manager-zh/backend/embed/api_docs/components/HealthObject.json

36 lines
731 B
JSON
Raw Normal View History

{
"type": "object",
"description": "HealthObject",
"additionalProperties": false,
"required": ["version", "commit", "healthy", "setup", "error_reporting"],
"properties": {
"version": {
"type": "string",
"description": "Version",
"minLength": 1
},
"commit": {
"type": "string",
"description": "Commit hash",
"minLength": 7
},
"healthy": {
"type": "boolean",
2023-05-31 02:34:20 -04:00
"description": "Healthy?"
},
"setup": {
"type": "boolean",
2023-05-31 02:34:20 -04:00
"description": "Is the application set up?"
},
"error_reporting": {
"type": "boolean",
2023-05-31 02:34:20 -04:00
"description": "Will the application send any error reporting?"
},
"acme.sh": {
"type": "string",
"description": "Acme.sh version",
"minLength": 1
}
}
}