{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/microsoft.graph.timeCardEntry", "title": "timeCardEntry", "required": [ "@odata.type" ], "type": "object", "properties": { "breaks": { "type": "array", "items": { "$ref": "#/components/schemas/microsoft.graph.timeCardBreak" }, "description": "The clock-in event of the timeCard." }, "clockInEvent": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.timeCardEvent" }, { "type": "object", "nullable": true } ], "description": "The clock-out event of the timeCard." }, "clockOutEvent": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.timeCardEvent" }, { "type": "object", "nullable": true } ], "description": "The list of breaks associated with the timeCard." }, "@odata.type": { "type": "string" } } }