Microsoft Azure · Schema

TagDetails

Tag details.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
id string The tag name ID.
tagName string The tag name.
count object
values array The list of tag values.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-tagdetails-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TagDetails",
  "title": "TagDetails",
  "type": "object",
  "description": "Tag details.",
  "properties": {
    "id": {
      "type": "string",
      "readOnly": true,
      "description": "The tag name ID.",
      "example": "abc123"
    },
    "tagName": {
      "type": "string",
      "description": "The tag name.",
      "example": "example_value"
    },
    "count": {
      "$ref": "#/components/schemas/TagCount"
    },
    "values": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/TagValue"
      },
      "description": "The list of tag values.",
      "example": []
    }
  }
}