Metadata taxonomies
Create metadata taxonomy
Creates a new metadata taxonomy that can be used in metadata templates.
post/metadata_taxonomies
Request body
Example request
{
"key": "geography",
"displayName": "Geography",
"namespace": "enterprise_123456"
}Response
The schema representing the metadata taxonomy created.
Example response
{
"id": "822227e0-47a5-921b-88a8-494760b2e6d2",
"key": "geography",
"displayName": "Geography",
"namespace": "enterprise_123456",
"levels": [
{
"displayName": "Continent",
"description": "Continent",
"level": 1
}
]
}