Snowflake · Schema

DynamicTableColumn

A column in the dynamic table

Data LakesData SharingData WarehousingDatabaseSQL

Properties

Name Type Description
name string Column name
datatype string The data type for the column
comment string Specifies a comment for the column
View JSON Schema on GitHub

JSON Schema

snowflake-dynamictablecolumn-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DynamicTableColumn",
  "title": "DynamicTableColumn",
  "type": "object",
  "description": "A column in the dynamic table",
  "properties": {
    "name": {
      "type": "string",
      "description": "Column name",
      "example": "Example Title"
    },
    "datatype": {
      "type": "string",
      "description": "The data type for the column",
      "example": "example_value"
    },
    "comment": {
      "type": "string",
      "description": "Specifies a comment for the column",
      "example": "example_value"
    }
  },
  "required": [
    "name"
  ]
}