{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://status.st-andrews.ac.uk/schema/component.json", "title": "Component", "description": "A system component on the University of St Andrews service status page.", "type": "object", "properties": { "id": { "type": "integer" }, "state": { "type": "string", "enum": ["operational", "degraded", "under_maintenance"] }, "name": { "type": "string" }, "description": { "type": "string" }, "parent_id": { "type": ["integer", "null"] }, "position": { "type": "integer" }, "links": { "type": "object", "properties": { "children": { "type": "object", "properties": { "href": { "type": "string" }, "count": { "type": "integer" } } } } }, "created_at": { "type": "string", "format": "date-time" }, "updated_at": { "type": "string", "format": "date-time" } }, "required": ["id", "state", "name"] }