curl --request PATCH \
--url https://api.example.com/api/metastore/catalogs/{catalog_name}/schemas/{schema_name}/tables/{table_name} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"operations": [
{
"operation": "add_column",
"column_to_delete": "<string>",
"column_to_add": "<string>",
"column_type": "<string>",
"nullable": true,
"comment": "<string>",
"old_column_name": "<string>",
"new_column_name": "<string>",
"column_name": "<string>",
"new_column_type": "<string>",
"new_table_name": "<string>"
}
]
}
'