Snowflake · Schema

ForeignKey

Foreign keys link data in one table to the data in another table.

Data LakesData SharingData WarehousingDatabaseSQL

Properties

Name Type Description
referenced_table_name string
referenced_column_names array
View JSON Schema on GitHub

JSON Schema

iceberg-table-foreign-key-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ForeignKey",
  "type": "object",
  "description": "Foreign keys link data in one table to the data in another table.",
  "properties": {
    "referenced_table_name": {
      "type": "string"
    },
    "referenced_column_names": {
      "type": "array"
    }
  }
}