{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Sku", "title": "Sku", "type": "object", "description": "The resource model definition representing SKU.", "properties": { "name": { "type": "string", "description": "The name of the SKU. Examples include F0 (free), S0, S1, S2, etc.", "example": "Example Title" }, "tier": { "type": "string", "readOnly": true, "enum": [ "Free", "Basic", "Standard", "Premium", "Enterprise" ], "description": "The pricing tier of the SKU.", "example": "Free" } }, "required": [ "name" ] }