{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://api.ilert.com/schemas/ServiceUptimeOnly", "title": "ServiceUptimeOnly", "type": "object", "properties": { "id": { "type": "number" }, "name": { "type": "string" }, "status": { "$ref": "#/components/schemas/ServiceStatus" }, "description": { "type": "string" }, "oneOpenIncidentOnly": { "type": "boolean" }, "showUptimeHistory": { "type": "boolean" }, "teams": { "type": "array", "items": { "$ref": "#/components/schemas/TeamRel" } }, "uptime": { "$ref": "#/components/schemas/ServiceUptime" } } }