Information about a tag.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-direct-connect/refs/heads/main/json-schema/amazon-direct-connect-tag-schema.json", "title": "Tag", "description": "Information about a tag.", "type": "object", "properties": { "key": { "allOf": [ { "$ref": "#/components/schemas/TagKey" }, { "description": "The key." } ] }, "value": { "allOf": [ { "$ref": "#/components/schemas/TagValue" }, { "description": "The value." } ] } }, "required": [ "key" ] }