plannerChecklistItems resource type

Namespace: microsoft.graph

Represents the collection of checklist items on a task. This complex type is an open type that's part of the task details object. The value in the property-value pair is the checklistItem object.

Properties

Properties of an open type can be defined by the client. In this case, the client should provide GUIDs as properties and their values must be checklistItem objects. To remove an item in the checklist, set the value of the property to null.

JSON representation

The following JSON representation shows the resource type.

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