{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ManifestAttributesBase", "title": "ManifestAttributesBase", "type": "object", "description": "Manifest attribute details.", "properties": { "digest": { "type": "string", "description": "Manifest digest.", "example": "example_value" }, "imageSize": { "type": "integer", "format": "int64", "description": "Image size.", "example": 10 }, "createdTime": { "type": "string", "format": "date-time", "example": "2026-01-15T10:30:00Z" }, "lastUpdateTime": { "type": "string", "format": "date-time", "example": "2026-01-15T10:30:00Z" }, "architecture": { "type": "string", "description": "CPU architecture.", "example": "example_value" }, "os": { "type": "string", "description": "Operating system.", "example": "example_value" }, "mediaType": { "type": "string", "description": "Media type.", "example": "example_value" }, "configMediaType": { "type": "string", "description": "Config media type.", "example": "example_value" }, "tags": { "type": "array", "items": { "type": "string" }, "description": "List of tags.", "example": [] }, "changeableAttributes": { "$ref": "#/components/schemas/RepositoryChangeableAttributes" } } }