{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/microsoft.graph.plannerTaskDetails", "title": "microsoft.graph.plannerTaskDetails", "allOf": [ { "$ref": "#/components/schemas/microsoft.graph.entity" }, { "title": "plannerTaskDetails", "required": [ "@odata.type" ], "type": "object", "properties": { "checklist": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.plannerChecklistItems" }, { "type": "object", "nullable": true } ], "description": "The collection of checklist items on the task." }, "description": { "type": "string", "description": "Description of the task.", "nullable": true }, "previewType": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.plannerPreviewType" }, { "type": "object", "nullable": true } ], "description": "This sets the type of preview that shows up on the task. The possible values are: automatic, noPreview, checklist, description, reference. When set to automatic the displayed preview is chosen by the app viewing the task." }, "references": { "anyOf": [ { "$ref": "#/components/schemas/microsoft.graph.plannerExternalReferences" }, { "type": "object", "nullable": true } ], "description": "The collection of references on the task." }, "@odata.type": { "type": "string" } } } ], "x-ms-discriminator-value": "#microsoft.graph.plannerTaskDetails" }