Microsoft Azure · Schema

Sku

The resource model definition representing SKU.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
name string The name of the SKU. Examples include F0 (free), S0, S1, S2, etc.
tier string The pricing tier of the SKU.
View JSON Schema on GitHub

JSON Schema

azure-cognitive-services-sku-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "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."
    },
    "tier": {
      "type": "string",
      "description": "The pricing tier of the SKU."
    }
  }
}