Tag list result.
{ "$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": [] } } }