Airbyte · Schema

WorkspaceUpdateRequest

WorkspaceUpdateRequest schema from Airbyte API

Data IntegrationETLELTOpen-SourceData PipelineConnectorsData

Properties

Name Type Description
name string Name of the workspace
notifications object
regionId string
View JSON Schema on GitHub

JSON Schema

airbyte-workspace-update-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-workspace-update-request-schema.json",
  "title": "WorkspaceUpdateRequest",
  "description": "WorkspaceUpdateRequest schema from Airbyte API",
  "type": "object",
  "properties": {
    "name": {
      "description": "Name of the workspace",
      "type": "string"
    },
    "notifications": {
      "$ref": "#/components/schemas/NotificationsConfig"
    },
    "regionId": {
      "type": "string",
      "format": "uuid"
    }
  }
}