Create a new metadata descriptor
It serves to describe extra fields listed in the data attribute of entities.
POST
/data/projects/{project_id}/metadata-descriptors
curl \
--request POST 'http://api.example.com/data/projects/a24a6ea4-ce75-4665-a070-57453082c25/metadata-descriptors' \
--header "Authorization: $API_KEY" \
--header "Content-Type: application/x-www-form-urlencoded" \
--data 'entity_type=Asset&name=string&data_type=string&for_client=True&choices=option1&choices=option2&departments=department1&departments=department2'
Response examples (201)
{
"id": "string",
"name": "string",
"data_type": "string"
}