{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Image", "title": "Image", "type": "object", "description": "A image in a Snowflake image repository.", "properties": { "created_on": { "type": "string", "description": "Date and time when the image was uploaded to the image repository.", "readOnly": true, "example": "example_value" }, "image_name": { "type": "string", "description": "Image name.", "readOnly": true, "example": "example_value" }, "tags": { "type": "string", "description": "Image tags.", "readOnly": true, "example": "example_value" }, "digest": { "type": "string", "description": "SHA256 digest of the image.", "readOnly": true, "example": "example_value" }, "image_path": { "type": "string", "description": "Image path (database_name/schema_name/repository_name/image_name:image_tag).", "readOnly": true, "example": "example_value" } } }