Metadata
Metadata is additional information that can be provided for a audio, enabling classification, organization, and search based on various properties.
To edit the metadata for a AOD, make a PUT request to the following API with specific AOD id
provided:
Configure the metadata
request body with the following options:
Field | Type | Description | Limitations |
---|---|---|---|
short_description | string | A brief summary of the video (not exceeding 100 characters) | Max 100 characters (including spaces and symbols) |
long_description | string | A more detailed description of the video | Max 200 characters (including spaces and symbols) |
labels | array | Supplementary metadata objects for categorization | Max 20 labels, 20 characters per label |
Here is an example of a request body:
{
"metadata":{
"short_description":"Updated short description",
"long_description":"Updated long description",
"labels":[
{
"name":"Updated label 1"
},
{
"name":"Updated label 2"
}
]
}
}