Snowflake · Schema

IcebergTableClone

Clone iceberg table

Data LakesData SharingData WarehousingDatabaseSQL

Properties

Name Type Description
name string Specifies the name for the table, must be unique for the schema in which the table is created
point_of_time object
View JSON Schema on GitHub

JSON Schema

snowflake-icebergtableclone-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/IcebergTableClone",
  "title": "IcebergTableClone",
  "type": "object",
  "description": "Clone iceberg table",
  "properties": {
    "name": {
      "type": "string",
      "description": "Specifies the name for the table, must be unique for the schema in which the table is created",
      "example": "Example Title"
    },
    "point_of_time": {
      "$ref": "common.yaml#/components/schemas/PointOfTime"
    }
  },
  "required": [
    "name"
  ]
}