Snowflake · Schema
Image
A image in a Snowflake image repository.
Data LakesData SharingData WarehousingDatabaseSQL
Properties
| Name | Type | Description |
|---|---|---|
| created_on | string | Date and time when the image was uploaded to the image repository. |
| image_name | string | Image name. |
| tags | string | Image tags. |
| digest | string | SHA256 digest of the image. |
| image_path | string | Image path (database_name/schema_name/repository_name/image_name:image_tag). |
JSON Schema
{
"$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"
}
}
}