{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PlannerPlanContainer", "title": "PlannerPlanContainer", "type": "object", "description": "Represents the container for a plannerPlan. The container is a resource that specifies authorization rules and the lifecycle of the plan.", "required": [ "url" ], "properties": { "containerId": { "type": "string", "description": "The identifier of the resource that contains the plan", "readOnly": true, "example": "500123" }, "type": { "type": "string", "description": "The type of the container", "enum": [ "group", "unknownFutureValue", "roster" ], "readOnly": true, "example": "group" }, "url": { "type": "string", "format": "uri", "description": "The full canonical URL of the container", "example": "https://www.example.com" } } }