Column Metadata
Add column descriptions to a table registered as a Rasgo Dataset
Last updated
"Sent {n} column descriptions to Table {fqtn}. View these changes in the Rasgo WebApp: app.rasgoml.com/datasets/{dataset}"curl -X 'POST' \
'http://localhost/public/column-metadata' \
-H 'accept: application/json' \
-H 'Content-Type: application/json' \
-d '{
"fqtn": "DATABASE.SCHEMA.TABLE",
"columnDescriptions": {
"COLUMN_A": "description",
"COLUMN_B": "also description",
"column_c": "third description"
}
}'