プラン、Listitem リソースの種類plannerChecklistItem resource type
名前空間: microsoft.graphNamespace: microsoft.graph
Planは、タスクのチェックリストの項目を表します。The plannerChecklistItem resource represents an item in the checklist of a task. タスクのチェックリストは、 checklistItems オブジェクトによって表されます。The checklist on a task is represented by the checklistItems object.
プロパティProperties
プロパティProperty | 種類Type | 説明Description |
---|---|---|
isCheckedisChecked | ブール型Boolean | 値は true 、アイテムがチェックされているかどうかを示し false ます。Value is true if the item is checked and false otherwise. |
lastModifiedBylastModifiedBy | identitySetidentitySet | 読み取り専用です。Read-only. これを最後に変更するユーザー ID。User ID by which this is last modified. |
lastModifiedDateTimelastModifiedDateTime | DateTimeOffsetDateTimeOffset | 読み取り専用。Read-only. この時刻が最後に変更された日時。Date and time at which this is last modified. Timestamp 型は、ISO 8601 形式を使用して日付と時刻の情報を表し、常に UTC 時間です。The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. たとえば、2014 年 1 月 1 日午前 0 時 (UTC) は、次のようになります。'2014-01-01T00:00:00Z' For example, midnight UTC on Jan 1, 2014 would look like this: '2014-01-01T00:00:00Z' |
orderHintorderHint | StringString | チェックリストの項目の相対的な順序を設定するために使用します。Used to set the relative order of items in the checklist. この形式は、 ここで説明するように定義されています。The format is defined as outlined here. |
titletitle | StringString | チェックリストアイテムのタイトルTitle of the checklist item |
JSON 表記JSON representation
以下は、リソースの JSON 表記です。Here is a JSON representation of the resource.
{
"isChecked": true,
"lastModifiedBy": {"@odata.type": "microsoft.graph.identitySet"},
"lastModifiedDateTime": "String (timestamp)",
"orderHint": "String",
"title": "String"
}