Microsoft Azure · Schema

ProviderListResult

List of resource providers.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
value array An array of resource providers.
nextLink string The URL to get the next set of results.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-providerlistresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ProviderListResult",
  "title": "ProviderListResult",
  "type": "object",
  "description": "List of resource providers.",
  "properties": {
    "value": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Provider"
      },
      "description": "An array of resource providers.",
      "example": []
    },
    "nextLink": {
      "type": "string",
      "readOnly": true,
      "description": "The URL to get the next set of results.",
      "example": "example_value"
    }
  }
}