2022-05-11 18:47:31 -04:00
|
|
|
{
|
|
|
|
"type": "object",
|
|
|
|
"description": "HealthObject",
|
|
|
|
"additionalProperties": false,
|
2023-07-20 01:19:42 -04:00
|
|
|
"required": ["version", "commit", "healthy", "setup"],
|
2022-05-11 18:47:31 -04:00
|
|
|
"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?"
|
2022-05-11 18:47:31 -04:00
|
|
|
},
|
|
|
|
"setup": {
|
|
|
|
"type": "boolean",
|
2023-05-31 02:34:20 -04:00
|
|
|
"description": "Is the application set up?"
|
2022-05-11 18:47:31 -04:00
|
|
|
},
|
|
|
|
"acme.sh": {
|
|
|
|
"type": "string",
|
|
|
|
"description": "Acme.sh version",
|
|
|
|
"minLength": 1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|