{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "SCUMCompanionDiagnosticsResult", "type": "object", "additionalProperties": false, "required": ["status"], "properties": { "status": { "type": "string", "maxLength": 16, "enum": ["online", "degraded", "offline"] }, "version": { "type": "string", "minLength": 1, "maxLength": 40 }, "lastHeartbeatAt": { "type": "string", "maxLength": 64, "format": "date-time" } } }