mirror of
https://github.com/xiaoxinpro/nginx-proxy-manager-zh.git
synced 2025-01-23 21:28:15 -05:00
32 lines
595 B
JSON
32 lines
595 B
JSON
{
|
|
"type": "object",
|
|
"description": "HealthObject",
|
|
"additionalProperties": false,
|
|
"required": ["version", "commit", "healthy", "setup"],
|
|
"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?"
|
|
},
|
|
"acme.sh": {
|
|
"type": "string",
|
|
"description": "Acme.sh version",
|
|
"minLength": 1
|
|
}
|
|
}
|
|
}
|