Microsoft Azure · Schema

RepositoryAttributes

Repository attributes.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
registry string Registry name.
imageName string Image name.
createdTime string Image created time.
lastUpdateTime string Image last update time.
manifestCount integer Number of manifests.
tagCount integer Number of tags.
changeableAttributes object
View JSON Schema on GitHub

JSON Schema

microsoft-azure-repositoryattributes-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/RepositoryAttributes",
  "title": "RepositoryAttributes",
  "type": "object",
  "description": "Repository attributes.",
  "properties": {
    "registry": {
      "type": "string",
      "description": "Registry name.",
      "example": "example_value"
    },
    "imageName": {
      "type": "string",
      "description": "Image name.",
      "example": "example_value"
    },
    "createdTime": {
      "type": "string",
      "format": "date-time",
      "description": "Image created time.",
      "example": "2026-01-15T10:30:00Z"
    },
    "lastUpdateTime": {
      "type": "string",
      "format": "date-time",
      "description": "Image last update time.",
      "example": "2026-01-15T10:30:00Z"
    },
    "manifestCount": {
      "type": "integer",
      "description": "Number of manifests.",
      "example": 10
    },
    "tagCount": {
      "type": "integer",
      "description": "Number of tags.",
      "example": 10
    },
    "changeableAttributes": {
      "$ref": "#/components/schemas/RepositoryChangeableAttributes"
    }
  }
}