Microsoft Azure · Schema

SubscriptionListResult

Subscription list operation response.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

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

JSON Schema

microsoft-azure-subscriptionlistresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SubscriptionListResult",
  "title": "SubscriptionListResult",
  "type": "object",
  "description": "Subscription list operation response.",
  "properties": {
    "value": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Subscription"
      },
      "description": "An array of subscriptions.",
      "example": []
    },
    "nextLink": {
      "type": "string",
      "description": "The URL to get the next set of results.",
      "example": "example_value"
    }
  },
  "required": [
    "value"
  ]
}