{ "$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-list-result-schema.json", "title": "RegistryListResult", "description": "The result of a request to list container registries.", "type": "object", "properties": { "nextLink": { "description": "The URI that can be used to request the next list of container registries.", "type": "string" }, "value": { "description": "The list of container registries. Since this list may be incomplete, the nextLink field should be used to request the next list of container registries.", "items": { "$ref": "#/definitions/Registry" }, "type": "array" } } }