Airbyte · JSON Structure

Airbyte Tag Response Structure

Provides details of a single tag.

Type: object Properties: 4 Required: 4
Data IntegrationETLELTOpen SourceData PipelineConnectorsData

TagResponse is a JSON Structure definition published by Airbyte, describing 4 properties, of which 4 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

tagId name color workspaceId

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/airbyte/refs/heads/main/json-structure/airbyte-tag-response-structure.json",
  "name": "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"
  ]
}