{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://status.st-andrews.ac.uk/schema/page.json", "title": "Page", "description": "The overall status page object for the University of St Andrews service status API.", "type": "object", "properties": { "id": { "type": "integer" }, "name": { "type": "string" }, "state": { "type": "string", "enum": ["operational", "degraded", "under_maintenance"] }, "state_text": { "type": "string" }, "url": { "type": "string", "format": "uri" }, "links": { "type": "object", "properties": { "components": { "type": "object", "properties": { "href": { "type": "string" }, "count": { "type": "integer" } } }, "notices": { "type": "object", "properties": { "href": { "type": "string" }, "count": { "type": "integer" } } }, "self": { "type": "string" } } }, "created_at": { "type": "string", "format": "date-time" }, "updated_at": { "type": "string", "format": "date-time" } }, "required": ["name", "state"] }