Airbyte · Schema

SourcePatchRequest

Data IntegrationETLELTOpen SourceData PipelineConnectorsData

Properties

Name Type Description
name string
workspaceId string
configuration object
secretId string Optional secretID obtained through the OAuth redirect flow.
resourceAllocation object
View JSON Schema on GitHub

JSON Schema

airbyte-sourcepatchrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SourcePatchRequest",
  "title": "SourcePatchRequest",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "example": "My source"
    },
    "workspaceId": {
      "format": "uuid",
      "type": "string"
    },
    "configuration": {
      "$ref": "#/components/schemas/SourceConfiguration"
    },
    "secretId": {
      "description": "Optional secretID obtained through the  OAuth redirect flow.",
      "type": "string"
    },
    "resourceAllocation": {
      "$ref": "#/components/schemas/ScopedResourceRequirements"
    }
  },
  "x-implements": "io.airbyte.api.common.ConfigurableActor",
  "x-speakeasy-entity": "Source",
  "x-speakeasy-param-suppress-computed-diff": true,
  "x-speakeasy-component": true
}