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