{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-marketplace/refs/heads/main/json-schema/amazon-marketplace-untag-resource-request-schema.json",
"title": "UntagResourceRequest",
"description": "UntagResourceRequest schema from Amazon Marketplace API",
"type": "object",
"properties": {
"ResourceArn": {
"allOf": [
{
"$ref": "#/components/schemas/ResourceARN"
},
{
"description": "Required. The Amazon Resource Name (ARN) associated with the resource you want to remove the tag from."
}
]
},
"TagKeys": {
"allOf": [
{
"$ref": "#/components/schemas/TagKeyList"
},
{
"description": "Required. A list of key names of tags to be removed. Number of strings allowed: 0-256."
}
]
}
},
"required": [
"ResourceArn",
"TagKeys"
]
}