Microsoft Planner · Schema

PlannerBucketUpdate

Request body for updating a bucket

CollaborationMicrosoft-365ProductivityProject ManagementTask Management

Properties

Name Type Description
name string Updated name of the bucket
orderHint string Updated order hint for the bucket
View JSON Schema on GitHub

JSON Schema

microsoft-planner-plannerbucketupdate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PlannerBucketUpdate",
  "title": "PlannerBucketUpdate",
  "type": "object",
  "description": "Request body for updating a bucket",
  "properties": {
    "name": {
      "type": "string",
      "description": "Updated name of the bucket",
      "example": "Example Title"
    },
    "orderHint": {
      "type": "string",
      "description": "Updated order hint for the bucket",
      "example": "example_value"
    }
  }
}