Airbyte · Schema

TagCreateRequest

TagCreateRequest schema from Airbyte API

Data IntegrationETLELTOpen SourceData PipelineConnectorsData

Properties

Name Type Description
name string
color string
workspaceId object
View JSON Schema on GitHub

JSON Schema

airbyte-tag-create-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/airbyte/refs/heads/main/json-schema/airbyte-tag-create-request-schema.json",
  "title": "TagCreateRequest",
  "description": "TagCreateRequest schema from Airbyte API",
  "type": "object",
  "properties": {
    "name": {
      "type": "string"
    },
    "color": {
      "type": "string"
    },
    "workspaceId": {
      "$ref": "#/components/schemas/WorkspaceId"
    }
  },
  "required": [
    "name",
    "color",
    "workspaceId"
  ]
}