{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/TagResourceRequest", "title": "TagResourceRequest", "type": "object", "required": [ "ResourceARN", "Tags" ], "properties": { "ResourceARN": { "allOf": [ { "$ref": "#/components/schemas/KinesisAnalyticsARN" }, { "description": "The ARN of the application to assign the tags." } ] }, "Tags": { "allOf": [ { "$ref": "#/components/schemas/Tags" }, { "description": "The key-value tags to assign to the application." } ] } } }