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