Airbyte · JSON Structure

Airbyte Workspace Response Structure

Provides details of a single workspace.

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

WorkspaceResponse 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

workspaceId name dataResidency notifications

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-response-structure.json",
  "name": "WorkspaceResponse",
  "description": "Provides details of a single workspace.",
  "type": "object",
  "properties": {
    "workspaceId": {
      "format": "UUID",
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "dataResidency": {
      "type": "string"
    },
    "notifications": {
      "$ref": "#/components/schemas/NotificationsConfig"
    }
  },
  "required": [
    "workspaceId",
    "name",
    "dataResidency",
    "notifications"
  ]
}