TagResourceRequest schema from Amazon Marketplace API
{ "$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-tag-resource-request-schema.json", "title": "TagResourceRequest", "description": "TagResourceRequest 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 tag." } ] }, "Tags": { "allOf": [ { "$ref": "#/components/schemas/TagList" }, { "description": "Required. A list of objects specifying each key name and value. Number of objects allowed: 1-50." } ] } }, "required": [ "ResourceArn", "Tags" ] }