TagResourceRequest schema
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-fleetwise/refs/heads/main/json-schema/iot-fleetwise-tag-resource-request-schema.json", "title": "TagResourceRequest", "description": "TagResourceRequest schema", "type": "object", "properties": { "ResourceARN": { "allOf": [ { "$ref": "#/components/schemas/AmazonResourceName" }, { "description": "The ARN of the resource." } ] }, "Tags": { "allOf": [ { "$ref": "#/components/schemas/TagList" }, { "description": "The new or modified tags for the resource." } ] } }, "required": [ "ResourceARN", "Tags" ] }