Documentation index: llms.txt. This page is also available as markdown: append .md to this URL or send Accept: text/markdown.
Schema
A schema represents a collection of tables and views.
type Schema {
id: ID!
description: String
externalId: String!
isHidden: Boolean!
name: String!
slug: String!
databaseId: String!
database: Database!
createdAt: Timestamp!
deletedAt: Timestamp
updatedAt: Timestamp!
}
Fields
Schema.id ● ID! non-null scalar general
Unique Catalog identifier of the resource
Schema.description ● String scalar general
The Catalog documentation for this schema
Schema.externalId ● String! non-null scalar general
The technical schema identifier from the warehouse schema structure
Schema.isHidden ● Boolean! non-null scalar general
Whether this schema is hidden
Schema.name ● String! non-null scalar general
The name of the schema
Schema.slug ● String! non-null scalar general
Unique Catalog slug of the resource
Schema.databaseId ● String! non-null scalar general
The database ID of the schema
Schema.database ● Database! non-null object databases
The database linked to this schema
Schema.createdAt ● Timestamp! non-null scalar general
Date and time the resource was created
Schema.deletedAt ● Timestamp scalar general
Date and time the resource was deleted
Schema.updatedAt ● Timestamp! non-null scalar general
Date and time the resource was last updated
Example
{
"id": "fffe43cb-a92f-48d9-9527-3fcc4e5f6dba",
"description": "Default Postgres schema",
"externalId": "public",
"isHidden": false,
"name": "public",
"slug": "schema_public",
"databaseId": "fffe43cb-a92f-48d9-9527-3fcc4e5f6dba",
"database": {
"sourceId": "fffe43cb-a92f-48d9-9527-3fcc4e5f6dba",
"warehouse": {
"lastRefreshedAt": 1758555879800,
"origin": "EXTRACTION",
"technology": "SNOWFLAKE",
"type": "COMMUNICATION",
"createdAt": 1758555879800,
"deletedAt": 1758555879800,
"updatedAt": 1758555879800
}
}
}
Returned By
createSchemasmutationupdateSchemasmutation
Member Of
GetSchemasOutputobjectTableobject