Airbyte · Schema

Root Type for WorkspaceResponse

Provides details of a single workspace.

Data IntegrationETLELTOpen SourceData PipelineConnectorsData

Properties

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

JSON Schema

airbyte-workspaceresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WorkspaceResponse",
  "title": "Root Type for WorkspaceResponse",
  "description": "Provides details of a single workspace.",
  "type": "object",
  "required": [
    "workspaceId",
    "name",
    "dataResidency",
    "notifications"
  ],
  "properties": {
    "workspaceId": {
      "format": "UUID",
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "dataResidency": {
      "type": "string"
    },
    "notifications": {
      "$ref": "#/components/schemas/NotificationsConfig"
    }
  },
  "x-speakeasy-entity": "Workspace",
  "x-speakeasy-param-suppress-computed-diff": true,
  "x-speakeasy-component": true
}