Provides details of a single tag.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/airbyte/refs/heads/main/json-schema/airbyte-tag-response-schema.json", "title": "TagResponse", "description": "Provides details of a single tag.", "type": "object", "properties": { "tagId": { "$ref": "#/components/schemas/TagId" }, "name": { "type": "string" }, "color": { "description": "A hexadecimal color value", "type": "string" }, "workspaceId": { "$ref": "#/components/schemas/WorkspaceId" } }, "required": [ "tagId", "name", "color", "workspaceId" ] }