mirror of
https://github.com/xiaoxinpro/nginx-proxy-manager-zh.git
synced 2025-01-25 22:28:13 -05:00
36 lines
731 B
JSON
36 lines
731 B
JSON
{
|
|
"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",
|
|
"description": "Healthy?"
|
|
},
|
|
"setup": {
|
|
"type": "boolean",
|
|
"description": "Is the application set up?"
|
|
},
|
|
"error_reporting": {
|
|
"type": "boolean",
|
|
"description": "Will the application send any error reporting?"
|
|
},
|
|
"acme.sh": {
|
|
"type": "string",
|
|
"description": "Acme.sh version",
|
|
"minLength": 1
|
|
}
|
|
}
|
|
}
|