Request body for creating a new plan
{ "$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" } } }