Microsoft Planner · Schema

PlannerBucketCollection

A collection of plannerBucket resources

CollaborationMicrosoft 365ProductivityProject ManagementTask Management

Properties

Name Type Description
@odata.context string
@odata.count integer
value array
View JSON Schema on GitHub

JSON Schema

microsoft-planner-plannerbucketcollection-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PlannerBucketCollection",
  "title": "PlannerBucketCollection",
  "type": "object",
  "description": "A collection of plannerBucket resources",
  "properties": {
    "@odata.context": {
      "type": "string",
      "readOnly": true,
      "example": "example_value"
    },
    "@odata.count": {
      "type": "integer",
      "readOnly": true,
      "example": 10
    },
    "value": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/PlannerBucket"
      },
      "example": []
    }
  }
}