Microsoft Planner · Schema

PlannerPlanCreate

Request body for creating a new plan

CollaborationMicrosoft-365ProductivityProject ManagementTask Management

Properties

Name Type Description
title string Title of the plan
container object The container for the plan
View JSON Schema on GitHub

JSON Schema

microsoft-planner-plannerplancreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PlannerPlanCreate",
  "title": "PlannerPlanCreate",
  "type": "object",
  "description": "Request body for creating a new plan",
  "required": [
    "title",
    "container"
  ],
  "properties": {
    "title": {
      "type": "string",
      "description": "Title of the plan",
      "example": "Example Title"
    },
    "container": {
      "type": "object",
      "description": "The container for the plan",
      "required": [
        "url"
      ],
      "properties": {
        "url": {
          "type": "string",
          "format": "uri",
          "description": "The full canonical URL of the container (e.g., https://graph.microsoft.com/v1.0/groups/{group-id})"
        }
      },
      "example": "example_value"
    }
  }
}