{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/microsoft.graph.todoTaskList", "title": "microsoft.graph.todoTaskList", "allOf": [ { "$ref": "#/components/schemas/microsoft.graph.entity" }, { "title": "todoTaskList", "required": [ "@odata.type" ], "type": "object", "properties": { "displayName": { "type": "string", "description": "The name of the task list.", "nullable": true }, "isOwner": { "type": "boolean", "description": "True if the user is owner of the given task list." }, "isShared": { "type": "boolean", "description": "True if the task list is shared with other users" }, "wellknownListName": { "$ref": "#/components/schemas/microsoft.graph.wellknownListName" }, "extensions": { "type": "array", "items": { "$ref": "#/components/schemas/microsoft.graph.extension" }, "description": "The collection of open extensions defined for the task list. Nullable.", "x-ms-navigationProperty": true }, "tasks": { "type": "array", "items": { "$ref": "#/components/schemas/microsoft.graph.todoTask" }, "description": "The tasks in this task list. Read-only. Nullable.", "x-ms-navigationProperty": true }, "@odata.type": { "type": "string" } } } ], "x-ms-discriminator-value": "#microsoft.graph.todoTaskList" }