Skip to content

Latest commit

 

History

History
65 lines (53 loc) · 2.09 KB

File metadata and controls

65 lines (53 loc) · 2.09 KB
title scheduleItem resource type
description An item that describes the availability of a user corresponding to an actual event on the user's default calendar. This item applies to a resource (room or equipment) as well.
ms.localizationpriority medium
author iamgirishck
ms.subservice outlook
doc_type resourcePageType
ms.date 07/22/2024

scheduleItem resource type

Namespace: microsoft.graph

An item that describes the availability of a user corresponding to an actual event on the user's default calendar. This item applies to a resource (room or equipment) as well.

Properties

Property Type Description
end dateTimeTimeZone The date, time, and time zone that the corresponding event ends.
isPrivate Boolean The sensitivity of the corresponding event. True if the event is marked private, false otherwise. Optional.
location String The location where the corresponding event is held or attended from. Optional.
start dateTimeTimeZone The date, time, and time zone that the corresponding event starts.
status freeBusyStatus The availability status of the user or resource during the corresponding event. The possible values are: free, tentative, busy, oof, workingElsewhere, unknown.
subject String The corresponding event's subject line. Optional.

JSON representation

The following JSON representation shows the resource type.

{
  "end": {"@odata.type": "microsoft.graph.dateTimeTimeZone"},
  "isPrivate": true,
  "location": "String",
  "start": {"@odata.type": "microsoft.graph.dateTimeTimeZone"},
  "status": "String",
  "subject": "String"
}