{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "AIStatusDashboard Incident", "type": "object", "required": [ "incident_id", "provider_id", "title", "status", "severity", "started_at", "updated_at" ], "properties": { "incident_id": { "type": "string" }, "provider_id": { "type": "string" }, "title": { "type": "string" }, "status": { "type": "string" }, "severity": { "type": "string" }, "started_at": { "type": "string", "format": "date-time" }, "updated_at": { "type": "string", "format": "date-time" }, "resolved_at": { "type": ["string", "null"], "format": "date-time" }, "impacted_regions": { "type": "array", "items": { "type": "string" } }, "impacted_models": { "type": "array", "items": { "type": "string" } }, "raw_url": { "type": ["string", "null"], "format": "uri" }, "source_id": { "type": "string" }, "service_id": { "type": ["string", "null"] }, "service_name": { "type": ["string", "null"] }, "updates": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "string" }, "status": { "type": "string" }, "body": { "type": "string" }, "createdAt": { "type": "string", "format": "date-time" } } } } } }