Microsoft Azure · Schema

TagValue

Tag information.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
id string The tag value ID.
tagValue string The tag value.
count object
View JSON Schema on GitHub

JSON Schema

microsoft-azure-tagvalue-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TagValue",
  "title": "TagValue",
  "type": "object",
  "description": "Tag information.",
  "properties": {
    "id": {
      "type": "string",
      "readOnly": true,
      "description": "The tag value ID.",
      "example": "abc123"
    },
    "tagValue": {
      "type": "string",
      "description": "The tag value.",
      "example": "example_value"
    },
    "count": {
      "$ref": "#/components/schemas/TagCount"
    }
  }
}