curl --request POST \
--url https://api.example.com/api/metastore/catalogs/{catalog_name}/schemas/{schema_name}/tables \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"table_name": "<string>",
"columns": [
{
"name": "<string>",
"type": "<string>",
"nullable": true
}
],
"properties": {}
}
'