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