{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/microsoft.graph.timeCardBreak", "title": "timeCardBreak", "required": [ "@odata.type" ], "type": "object", "properties": { "breakId": { "type": "string", "description": "ID of the timeCardBreak.", "nullable": true }, "end": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.timeCardEvent" }, { "type": "object", "nullable": true } ], "description": "The start event of the timeCardBreak." }, "notes": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.itemBody" }, { "type": "object", "nullable": true } ], "description": "Notes about the timeCardBreak." }, "start": { "$ref": "#/components/schemas/microsoft.graph.timeCardEvent" }, "@odata.type": { "type": "string" } } }