Tag key-value pair for use in requests.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/TagInput", "title": "TagInput", "type": "object", "properties": { "key": { "type": "string", "description": "Tag key" }, "value": { "type": "string", "description": "Tag value" } }, "required": [ "key", "value" ], "description": "Tag key-value pair for use in requests." }