Microsoft Azure · Schema

ProviderResourceType

Resource type managed by the resource provider.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
resourceType string The resource type.
locations array The collection of locations where this resource type can be created.
apiVersions array The API version.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-providerresourcetype-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProviderResourceType",
  "title": "ProviderResourceType",
  "type": "object",
  "description": "Resource type managed by the resource provider.",
  "properties": {
    "resourceType": {
      "type": "string",
      "description": "The resource type.",
      "example": "example_value"
    },
    "locations": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "The collection of locations where this resource type can be created.",
      "example": []
    },
    "apiVersions": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "The API version.",
      "example": []
    }
  }
}