Skip to main content
GET
GET /v1/databaseSchemas/{id}

Retrieve a Database Schema

Get a single database schema by its unique ID or fully qualified name.

Get by ID

string
required
UUID of the database schema to retrieve.
string
Comma-separated list of fields to include: owners, tables, usageSummary, tags, certification, extension, domains, sourceHash, followers.
string
default:"non-deleted"
Include all, deleted, or non-deleted entities.

Get by Fully Qualified Name

Use GET /v1/databaseSchemas/name/{fqn} to retrieve by fully qualified name.
string
required
Fully qualified name of the schema (e.g., Glue.default.information_schema).
string
Comma-separated list of fields to include: owners, tables, usageSummary, tags, certification, extension, domains, sourceHash, followers.
string
default:"non-deleted"
Include all, deleted, or non-deleted entities.
GET /v1/databaseSchemas/{id}

Returns

Returns a database schema object with all requested fields populated.

Response

string
Unique identifier for the schema (UUID format).
string
Schema name.
string
Fully qualified name in format service.database.schema.
string
Human-readable display name.
string
Description of the schema in Markdown format.
object
Reference to the parent database.
object
Reference to the parent database service.
string
Type of database service (e.g., Snowflake, BigQuery, PostgreSQL).
number
Version number for the entity.
array
List of owners. Only included when fields contains owners.
array
Classification tags. Only included when fields contains tags.
array
Domain assignments. Only included when fields contains domains.

Error Handling