cURL
curl --request GET \ --url https://api.example.com/api/metastore/catalogs/{catalog_name}/schemas/details \ --header 'Authorization: Bearer <token>'
{ "schemas": [ { "schema_name": "<string>", "total_tables_and_views": 123, "total_tables": 123, "total_views": 123 } ], "total_schemas": 123 }
Get detailed information for all schemas inside a catalog.
The access token received from the authorization server in the OAuth 2.0 flow.
Name of the catalog to retrieve schemas details for.
Schema details retrieved successfully.
List of schema details
Show child attributes
Total number of schemas
Was this page helpful?