Skip to content

Latest commit

 

History

History
69 lines (52 loc) · 2.04 KB

File metadata and controls

69 lines (52 loc) · 2.04 KB
title plannerChecklistItem resource type
description The **plannerChecklistItem** resource represents an item in the checklist of a task. The checklist on a task is represented by the checklistItems object.
ms.localizationpriority medium
author TarkanSevilmis
ms.subservice planner
doc_type resourcePageType
ms.date 07/29/2024

plannerChecklistItem resource type

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

The plannerChecklistItem resource represents an item in the checklist of a task. The checklist on a task is represented by the checklistItems object.

Properties

Property Type Description
isChecked Boolean Value is true if the item is checked and false otherwise.
lastModifiedBy identitySet Read-only. User ID by which this is last modified.
lastModifiedDateTime DateTimeOffset Read-only. Date and time at which this is last modified. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
orderHint String Used to set the relative order of items in the checklist. The format is defined as outlined here.
title String Title of the checklist item.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "isChecked": true,
  "lastModifiedBy": {"@odata.type": "microsoft.graph.identitySet"},
  "lastModifiedDateTime": "String (timestamp)",
  "orderHint": "String",
  "title": "String"
}