{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-mediaconvert/refs/heads/main/json-schema/mediaconvert-api-tag-resource-request-schema.json",
"title": "TagResourceRequest",
"description": "TagResourceRequest schema from Amazon MediaConvert API",
"type": "object",
"properties": {
"Arn": {
"allOf": [
{
"$ref": "#/components/schemas/__string"
},
{
"xml": {
"name": "arn"
},
"description": "The Amazon Resource Name (ARN) of the resource that you want to tag. To get the ARN, send a GET request with the resource name."
}
]
},
"Tags": {
"allOf": [
{
"$ref": "#/components/schemas/__mapOf__string"
},
{
"xml": {
"name": "tags"
},
"description": "The tags that you want to add to the resource. You can tag resources with a key-value pair or with only a key."
}
]
}
},
"required": [
"Arn",
"Tags"
]
}