{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/microsoft.graph.timeRange", "title": "timeRange", "required": [ "@odata.type" ], "type": "object", "properties": { "endTime": { "pattern": "^([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?$", "type": "string", "description": "End time for the time range.", "format": "time", "nullable": true }, "startTime": { "pattern": "^([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?$", "type": "string", "description": "Start time for the time range.", "format": "time", "nullable": true }, "@odata.type": { "type": "string" } } }