GET /v1/databaseSchemas/{id}
Retrieve a Database Schema
Get a database schema by ID or fully qualified name
GET
GET /v1/databaseSchemas/{id}
Documentation Index
Fetch the complete documentation index at: https://openmetadata-codex-audit-docs-codebase-alignment.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Retrieve a Database Schema
Get a single database schema by its unique ID or fully qualified name.Get by ID
UUID of the database schema to retrieve.
Comma-separated list of fields to include:
owners, tables, usageSummary, tags, certification, extension, domains, sourceHash, followers.Include
all, deleted, or non-deleted entities.Get by Fully Qualified Name
UseGET /v1/databaseSchemas/name/{fqn} to retrieve by fully qualified name.
Fully qualified name of the schema (e.g.,
Glue.default.information_schema).Comma-separated list of fields to include:
owners, tables, usageSummary, tags, certification, extension, domains, sourceHash, followers.Include
all, deleted, or non-deleted entities.GET /v1/databaseSchemas/{id}
Returns
Returns a database schema object with all requested fields populated.Response
Unique identifier for the schema (UUID format).
Schema name.
Fully qualified name in format
service.database.schema.Human-readable display name.
Description of the schema in Markdown format.
Reference to the parent database.
Reference to the parent database service.
Type of database service (e.g., Snowflake, BigQuery, PostgreSQL).
Version number for the entity.
List of owners. Only included when
fields contains owners.Classification tags. Only included when
fields contains tags.Domain assignments. Only included when
fields contains domains.Error Handling
| Code | Error Type | Description |
|---|---|---|
401 | UNAUTHORIZED | Invalid or missing authentication token |
403 | FORBIDDEN | User lacks permission to view this schema |
404 | NOT_FOUND | Schema with given ID or FQN does not exist |