Microsoft Planner · Schema

PlannerTaskDetailsUpdate

Request body for updating task details

CollaborationMicrosoft-365ProductivityProject ManagementTask Management

Properties

Name Type Description
description string
checklist object
references object
previewType string
View JSON Schema on GitHub

JSON Schema

microsoft-planner-plannertaskdetailsupdate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PlannerTaskDetailsUpdate",
  "title": "PlannerTaskDetailsUpdate",
  "type": "object",
  "description": "Request body for updating task details",
  "properties": {
    "description": {
      "type": "string",
      "example": "A sample description."
    },
    "checklist": {
      "$ref": "#/components/schemas/PlannerChecklistItems"
    },
    "references": {
      "$ref": "#/components/schemas/PlannerExternalReferences"
    },
    "previewType": {
      "type": "string",
      "enum": [
        "automatic",
        "noPreview",
        "checklist",
        "description",
        "reference"
      ],
      "example": "automatic"
    }
  }
}