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