Airbyte · JSON Structure

Airbyte Workspace Create Request Structure

WorkspaceCreateRequest schema from Airbyte API

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

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

Properties

name organizationId notifications regionId

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-workspace-create-request-structure.json",
  "name": "WorkspaceCreateRequest",
  "description": "WorkspaceCreateRequest schema from Airbyte API",
  "type": "object",
  "properties": {
    "name": {
      "description": "Name of the workspace",
      "type": "string"
    },
    "organizationId": {
      "description": "ID of organization to add workspace to.",
      "type": "uuid"
    },
    "notifications": {
      "$ref": "#/components/schemas/NotificationsConfig"
    },
    "regionId": {
      "type": "uuid"
    }
  },
  "required": [
    "name"
  ]
}