{ "$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": [] } } }