A set of key/value pairs that are used to manage the resource.
{ "$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-schema.json", "title": "Tag", "description": "A set of key/value pairs that are used to manage the resource.", "type": "object", "properties": { "Key": { "allOf": [ { "$ref": "#/components/schemas/TagKey" }, { "description": "The tag's key." } ] }, "Value": { "allOf": [ { "$ref": "#/components/schemas/TagValue" }, { "description": "The tag's value." } ] } }, "required": [ "Key", "Value" ] }