Documentation index: llms.txt. This page is also available as markdown: append .md to this URL or send Accept: text/markdown.
CreateSchemaInput
Input object expected by the query or mutation
input CreateSchemaInput {
deletedAt: DateTime
description: String
isHidden: Boolean
databaseId: String!
externalId: String!
name: String!
}
Fields
CreateSchemaInput.deletedAt ● DateTime scalar general
If present, indicates when the schema was deleted
CreateSchemaInput.description ● String scalar general
The Catalog documentation for this schema
CreateSchemaInput.isHidden ● Boolean scalar general
Whether the schema should be hidden
CreateSchemaInput.databaseId ● String! non-null scalar general
The id of the parent database
CreateSchemaInput.externalId ● String! non-null scalar general
The technical schema identifier from the warehouse schema structure
CreateSchemaInput.name ● String! non-null scalar general
The schema name
Example
{
"deletedAt": "2025-09-20T12:00:00.000Z",
"description": "Default Postgres schema",
"isHidden": false,
"databaseId": "fffe43cb-a92f-48d9-9527-3fcc4e5f6dba",
"externalId": "public",
"name": "public"
}
Member Of
createSchemasmutation