maintenance-status from GitHub API
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/github/refs/heads/main/json-schema/github-setup-maintenance-status-schema.json", "title": "maintenance-status", "description": "maintenance-status from GitHub API", "type": "object", "properties": { "status": { "type": "string", "example": "open" }, "scheduled_time": { "type": "string", "example": "2026-04-17T12:00:00Z" }, "connection_services": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "number": { "type": "integer" } }, "required": [ "name", "number" ] } } } }