Skip to main content

Documentation index: llms.txt. This page is also available as markdown: append .md to this URL or send Accept: text/markdown.

CreateTableInput

Input object expected by the query or mutation

input CreateTableInput {
externalDescription: String
lastRefreshedAt: DateTime
numberOfQueries: Int
popularity: Int
tableSize: Int
tableType: TableType
url: String
externalId: String!
name: String!
schemaId: String!
}

Fields

CreateTableInput.externalDescription ● String scalar general

The documentation from the source for this table

CreateTableInput.lastRefreshedAt ● DateTime scalar general

The last known datetime of refresh for this table

CreateTableInput.numberOfQueries ● Int scalar general

The number of queries on which popularity is based

CreateTableInput.popularity ● Int scalar general

The table popularity rated out of 1000000

CreateTableInput.tableSize ● Int scalar general

The size of the table (in megabytes)

CreateTableInput.tableType ● TableType enum tables

The type of this table

CreateTableInput.url ● String scalar general

The external url to the table

CreateTableInput.externalId ● String! non-null scalar general

The technical table identifier from the warehouse table structure

CreateTableInput.name ● String! non-null scalar general

The table name

CreateTableInput.schemaId ● String! non-null scalar general

The schema ID to link with the table that belongs to. Required at table creation. Cannot be modified later

Example

{
"externalDescription": "Contains customer information",
"lastRefreshedAt": "2025-09-20T12:00:00.000Z",
"numberOfQueries": 100,
"popularity": 50,
"tableSize": 100,
"tableType": "TABLE",
"url": "https://app.snowflake.com/",
"externalId": "customers",
"name": "customers",
"schemaId": "fffe43cb-a92f-48d9-9527-3fcc4e5f6dba"
}

Member Of