{ "$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" ] }