nginx-proxy-manager-zh/backend/embed/api_docs/paths/get.json

45 lines
799 B
JSON
Raw Normal View History

{
"operationId": "health",
"summary": "Returns the API health status",
"responses": {
"200": {
"description": "200 response",
"content": {
"application/json": {
"schema": {
2023-05-31 02:34:20 -04:00
"type": "object",
"required": ["result"],
"properties": {
"result": {
"$ref": "#/components/schemas/HealthObject"
}
}
},
"examples": {
"default": {
"value": {
"result": {
"version": "3.0.0",
"commit": "9f119b6",
"healthy": true,
2023-07-20 01:19:42 -04:00
"setup": true
}
}
},
"unhealthy": {
"value": {
"result": {
"version": "3.0.0",
"commit": "9f119b6",
"healthy": false,
2023-07-20 01:19:42 -04:00
"setup": true
}
}
}
}
}
}
}
}
2023-05-31 02:34:20 -04:00
}