| 123456789101112131415161718192021222324252627282930 |
- {
- "operationId": "health",
- "summary": "Returns the API health status",
- "tags": ["public"],
- "responses": {
- "200": {
- "description": "200 response",
- "content": {
- "application/json": {
- "examples": {
- "default": {
- "value": {
- "status": "OK",
- "setup": true,
- "version": {
- "major": 2,
- "minor": 1,
- "revision": 0
- }
- }
- }
- },
- "schema": {
- "$ref": "../components/health-object.json"
- }
- }
- }
- }
- }
- }
|