Microsoft Planner · Schema

PlannerTaskDetails

Represents the additional information about a task, including description, checklist items, and external references.

CollaborationMicrosoft 365ProductivityProject ManagementTask Management

Properties

Name Type Description
@odata.etag string The ETag of the resource
id string The unique identifier for the task details
description string Description of the task
previewType string The type of preview shown on the task
View JSON Schema on GitHub

JSON Schema

microsoft-planner-planner-task-details-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "PlannerTaskDetails",
  "type": "object",
  "description": "Represents the additional information about a task, including description, checklist items, and external references.",
  "properties": {
    "@odata.etag": {
      "type": "string",
      "description": "The ETag of the resource"
    },
    "id": {
      "type": "string",
      "description": "The unique identifier for the task details"
    },
    "description": {
      "type": "string",
      "description": "Description of the task"
    },
    "previewType": {
      "type": "string",
      "description": "The type of preview shown on the task"
    }
  }
}