{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/microsoft.graph.scheduleItem", "title": "scheduleItem", "required": [ "@odata.type" ], "type": "object", "properties": { "end": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" }, { "type": "object", "nullable": true } ], "description": "The date, time, and time zone that the corresponding event ends." }, "isPrivate": { "type": "boolean", "description": "The sensitivity of the corresponding event. True if the event is marked private, false otherwise. Optional.", "nullable": true }, "location": { "type": "string", "description": "The location where the corresponding event is held or attended from. Optional.", "nullable": true }, "start": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone" }, { "type": "object", "nullable": true } ], "description": "The date, time, and time zone that the corresponding event starts." }, "status": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.freeBusyStatus" }, { "type": "object", "nullable": true } ], "description": "The availability status of the user or resource during the corresponding event. The possible values are: free, tentative, busy, oof, workingElsewhere, unknown." }, "subject": { "type": "string", "description": "The corresponding event's subject line. Optional.", "nullable": true }, "@odata.type": { "type": "string" } } }