{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/argus-enterprise/refs/heads/main/json-structure/argus-enterprise-health-status-structure.json", "name": "HealthStatus", "description": "HealthStatus schema from ARGUS Enterprise API", "type": "object", "properties": { "status": { "type": "string", "enum": [ "Healthy", "Degraded", "Unhealthy" ], "description": "Overall service health" }, "queueDepth": { "type": "int32", "description": "Number of events pending delivery" }, "recentErrorRate": { "type": "double", "description": "Error rate over the last hour (percentage)" }, "uptime": { "type": "string", "description": "Service uptime duration" }, "lastChecked": { "type": "datetime", "description": "Timestamp of last health check" } } }