{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ManagedClusterSKU", "title": "ManagedClusterSKU", "type": "object", "description": "The SKU of a managed cluster.", "properties": { "name": { "type": "string", "enum": [ "Base" ], "description": "The name of the managed cluster SKU.", "example": "Base" }, "tier": { "type": "string", "enum": [ "Premium", "Standard", "Free" ], "description": "The tier of the managed cluster SKU.", "example": "Premium" } } }