{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/HealthCheck", "title": "HealthCheck", "type": "object", "properties": { "status": { "type": "string", "enum": [ "UP", "DOWN" ], "example": "UP" }, "checks": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "status": { "type": "string", "enum": [ "UP", "DOWN" ] }, "data": { "type": "object", "additionalProperties": true } } }, "example": [] } } }