{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PlannerPlanCollection", "title": "PlannerPlanCollection", "type": "object", "description": "A collection of plannerPlan 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/PlannerPlan" }, "example": [] } } }