Microsoft Azure · Schema

TagsListResult

List of subscription tags.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

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

JSON Schema

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