cURL
curl --request POST \ --url https://api.example.com/api/metastore/catalogs/{catalog}/schemas \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "schema_name": "<string>", "properties": {} } '
{ "catalog": "<string>", "schema": "<string>", "status": "CREATED" }
Create a new schema in the specified catalog.
The access token received from the authorization server in the OAuth 2.0 flow.
Name of the schema. Must be unique within the catalog.
Optional schema-level properties such as description or tags.
Data retrieved successfully.
Catalog in which the schema was created.
Name of the schema that was created.
Final status of the create schema operation.
Was this page helpful?