Microsoft Azure · Schema

TagList

Tag list result.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
registry string Registry name.
imageName string Image name.
tags array List of tag attributes.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-taglist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TagList",
  "title": "TagList",
  "type": "object",
  "description": "Tag list result.",
  "properties": {
    "registry": {
      "type": "string",
      "description": "Registry name.",
      "example": "example_value"
    },
    "imageName": {
      "type": "string",
      "description": "Image name.",
      "example": "example_value"
    },
    "tags": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/TagAttributesBase"
      },
      "description": "List of tag attributes.",
      "example": []
    }
  }
}