Airbyte · JSON Structure

Airbyte Source Patch Request Structure

SourcePatchRequest schema from Airbyte API

Type: object Properties: 5
Data IntegrationETLELTOpen SourceData PipelineConnectorsData

SourcePatchRequest is a JSON Structure definition published by Airbyte, describing 5 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

name workspaceId configuration secretId resourceAllocation

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-source-patch-request-structure.json",
  "name": "SourcePatchRequest",
  "description": "SourcePatchRequest schema from Airbyte API",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "example": "My source"
    },
    "workspaceId": {
      "type": "uuid"
    },
    "configuration": {
      "$ref": "#/components/schemas/SourceConfiguration"
    },
    "secretId": {
      "description": "Optional secretID obtained through the  OAuth redirect flow.",
      "type": "string"
    },
    "resourceAllocation": {
      "$ref": "#/components/schemas/ScopedResourceRequirements"
    }
  }
}