{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-comprehend/refs/heads/main/json-schema/openapi.yml-tag-resource-request-schema.json",
"title": "TagResourceRequest",
"description": "TagResourceRequest schema",
"type": "object",
"properties": {
"ResourceArn": {
"allOf": [
{
"$ref": "#/components/schemas/ComprehendArn"
},
{
"description": "The Amazon Resource Name (ARN) of the given Amazon Comprehend resource to which you want to associate the tags. "
}
]
},
"Tags": {
"allOf": [
{
"$ref": "#/components/schemas/TagList"
},
{
"description": "Tags being associated with a specific Amazon Comprehend resource. There can be a maximum of 50 tags (both existing and pending) associated with a specific resource. "
}
]
}
},
"required": [
"ResourceArn",
"Tags"
]
}