{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/BlackoutDashboard", "title": "BlackoutDashboard", "type": "object", "description": "Summary statistics for blackouts.", "properties": { "totalBlackouts": { "type": "integer", "description": "Total number of blackouts.", "example": 10 }, "activeBlackouts": { "type": "integer", "description": "Number of currently active blackouts.", "example": 10 }, "scheduledBlackouts": { "type": "integer", "description": "Number of scheduled future blackouts.", "example": 10 }, "endedBlackouts": { "type": "integer", "description": "Number of ended blackouts.", "example": 10 }, "targetsInBlackout": { "type": "integer", "description": "Total number of targets currently in blackout.", "example": 10 } } }