Registry

An object that represents a container registry.

AzureContainer ImagesContainersDockerRegistry

Properties

Name Type Description
identity object The identity of the container registry.
properties object The properties of the container registry.
sku object The SKU of the container registry.
View JSON Schema on GitHub

JSON Schema

azure-container-registry-registry-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/azure-container-registry/refs/heads/main/json-schema/azure-container-registry-registry-schema.json",
  "title": "Registry",
  "description": "An object that represents a container registry.",
  "type": "object",
  "properties": {
    "identity": {
      "$ref": "#/definitions/IdentityProperties",
      "description": "The identity of the container registry."
    },
    "properties": {
      "$ref": "#/definitions/RegistryProperties",
      "description": "The properties of the container registry.",
      "x-ms-client-flatten": true
    },
    "sku": {
      "$ref": "#/definitions/Sku",
      "description": "The SKU of the container registry."
    }
  },
  "required": [
    "sku"
  ]
}