Tags schema
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-events/refs/heads/main/json-schema/iot-events-tags-schema.json", "title": "Tags", "description": "Tags 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": "Metadata that can be used to manage the resource." } }