Unstructured sources API

The sources API from Unstructured — 3 operation(s) for sources.

OpenAPI Specification

unstructured-sources-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Unstructured Partition channels sources API
  version: 1.5.58
servers:
- url: https://api.unstructuredapp.io
  description: Serverless SaaS API
  x-speakeasy-server-id: saas-api
- url: http://localhost:8000
  description: Development server
  x-speakeasy-server-id: development
security:
- ApiKeyAuth: []
- {}
tags:
- name: sources
paths:
  /api/v1/sources/:
    get:
      tags:
      - sources
      summary: List available source connectors
      description: Retrieve a list of available source connectors.
      operationId: list_sources
      parameters:
      - name: source_type
        in: query
        required: false
        schema:
          anyOf:
          - $ref: '#/components/schemas/SourceConnectorType'
          - type: 'null'
          title: Source Type
      - name: unstructured-api-key
        in: header
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: Unstructured-Api-Key
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SourceConnectorInformation'
                title: Response List Sources
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    post:
      tags:
      - sources
      summary: Create source connector
      description: Create a new source connector using the provided configuration and name.
      operationId: create_source
      parameters:
      - name: unstructured-api-key
        in: header
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: Unstructured-Api-Key
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateSourceConnector'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SourceConnectorInformation'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/v1/sources/{source_id}:
    get:
      tags:
      - sources
      summary: Get source connector
      description: Retrieve detailed information for a specific source connector by its ID.
      operationId: get_source
      parameters:
      - name: source_id
        in: path
        required: true
        schema:
          anyOf:
          - type: string
            format: uuid
          - type: string
          title: Source Id
      - name: unstructured-api-key
        in: header
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: Unstructured-Api-Key
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SourceConnectorInformation'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    delete:
      tags:
      - sources
      summary: Delete source connector
      description: Delete a specific source connector identified by its ID.
      operationId: delete_source
      parameters:
      - name: source_id
        in: path
        required: true
        schema:
          anyOf:
          - type: string
            format: uuid
          - type: string
          title: Source Id
      - name: unstructured-api-key
        in: header
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: Unstructured-Api-Key
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    put:
      tags:
      - sources
      summary: Update source connector
      description: Update the configuration of an existing source connector.
      operationId: update_source
      parameters:
      - name: source_id
        in: path
        required: true
        schema:
          anyOf:
          - type: string
            format: uuid
          - type: string
          title: Source Id
      - name: unstructured-api-key
        in: header
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: Unstructured-Api-Key
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateSourceConnector'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SourceConnectorInformation'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /api/v1/sources/{source_id}/connection-check:
    post:
      tags:
      - sources
      summary: Create source connection check
      description: Initiates a connection check for the specified source connector.
      operationId: create_connection_check_sources
      parameters:
      - name: source_id
        in: path
        required: true
        schema:
          anyOf:
          - type: string
            format: uuid
          - type: string
          title: Source Id
      - name: unstructured-api-key
        in: header
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: Unstructured-Api-Key
      responses:
        '202':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DagNodeConnectionCheck'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      x-speakeasy-name-override: create_connection_check_sources
    get:
      tags:
      - sources
      summary: Get the latest source connector connection check
      description: Retrieves the most recent connection check for the specified source connector.
      operationId: get_connection_check_sources
      parameters:
      - name: source_id
        in: path
        required: true
        schema:
          anyOf:
          - type: string
            format: uuid
          - type: string
          title: Source Id
      - name: unstructured-api-key
        in: header
        required: false
        schema:
          anyOf:
          - type: string
          - type: 'null'
          title: Unstructured-Api-Key
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DagNodeConnectionCheck'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      x-speakeasy-name-override: get_connection_check_sources
components:
  schemas:
    ConnectionCheckStatus:
      type: string
      enum:
      - SCHEDULED
      - SUCCESS
      - FAILURE
      title: ConnectionCheckStatus
    CreateSourceConnector:
      properties:
        name:
          type: string
          title: Name
        type:
          anyOf:
          - $ref: '#/components/schemas/SourceConnectorType'
          - type: string
          title: Type
        config:
          anyOf:
          - $ref: '#/components/schemas/BoxSourceConnectorConfigInput'
          - $ref: '#/components/schemas/ConfluenceSourceConnectorConfigInput'
          - $ref: '#/components/schemas/CouchbaseSourceConnectorConfigInput'
          - $ref: '#/components/schemas/DatabricksVolumesConnectorConfigInput'
          - $ref: '#/components/schemas/DropboxSourceConnectorConfigInput'
          - $ref: '#/components/schemas/ElasticsearchConnectorConfigInput'
          - $ref: '#/components/schemas/GCSSourceConnectorConfigInput'
          - $ref: '#/components/schemas/GoogleDriveSourceConnectorConfigInput'
          - $ref: '#/components/schemas/KafkaCloudSourceConnectorConfigInput'
          - $ref: '#/components/schemas/MongoDBConnectorConfigInput'
          - $ref: '#/components/schemas/OneDriveSourceConnectorConfigInput'
          - $ref: '#/components/schemas/OutlookSourceConnectorConfigInput'
          - $ref: '#/components/schemas/PostgresSourceConnectorConfigInput'
          - $ref: '#/components/schemas/SalesforceSourceConnectorConfigInput'
          - $ref: '#/components/schemas/SharePointSourceConnectorConfigInput'
          - $ref: '#/components/schemas/SlackSourceConnectorConfigInput'
          - $ref: '#/components/schemas/SnowflakeSourceConnectorConfigInput'
          - $ref: '#/components/schemas/TeradataSourceConnectorConfigInput'
          - $ref: '#/components/schemas/JiraSourceConnectorConfigInput'
          - $ref: '#/components/schemas/ZendeskSourceConnectorConfigInput'
          - $ref: '#/components/schemas/S3SourceConnectorConfigInput'
          - $ref: '#/components/schemas/AzureSourceConnectorConfigInput'
          - additionalProperties: true
            type: object
          title: Config
        key:
          anyOf:
          - type: string
            maxLength: 63
            minLength: 1
            pattern: ^[a-z0-9](-?[a-z0-9])*$
          - type: 'null'
          title: Key
          description: Stable identifier for the source connector, used for cross-environment export. If omitted, derived from `name` with a 6-hex-digit suffix. Immutable once set. 1-63 characters, lowercase alphanumeric and hyphens, no consecutive/leading/trailing hyphens.
          examples:
          - s3-invoices-source
      type: object
      required:
      - name
      - type
      - config
      title: CreateSourceConnector
    AzureSourceConnectorConfigInput:
      properties:
        remote_url:
          type: string
          pattern: ^(az:\/\/|abfs:\/\/)
          title: Remote Url
        account_name:
          anyOf:
          - type: string
          - type: 'null'
          title: Account Name
        account_key:
          anyOf:
          - type: string
          - type: 'null'
          title: Account Key
        connection_string:
          anyOf:
          - type: string
          - type: 'null'
          title: Connection String
        sas_token:
          anyOf:
          - type: string
          - type: 'null'
          title: Sas Token
        recursive:
          type: boolean
          title: Recursive
          default: true
      additionalProperties: true
      type: object
      required:
      - remote_url
      title: AzureSourceConnectorConfigInput
    GCSSourceConnectorConfigInput:
      properties:
        remote_url:
          type: string
          pattern: ^(gs|gcs):\/\/
          title: Remote Url
        service_account_key:
          anyOf:
          - $ref: '#/components/schemas/SecretReference'
          - type: string
          - type: 'null'
          title: Service Account Key
        recursive:
          type: boolean
          title: Recursive
          default: true
        oauth_token:
          anyOf:
          - type: string
          - type: 'null'
          title: Oauth Token
        refresh_token:
          anyOf:
          - type: string
          - type: 'null'
          title: Refresh Token
        oauth_client_id:
          anyOf:
          - type: string
          - type: 'null'
          title: Oauth Client Id
        oauth_client_secret:
          anyOf:
          - type: string
          - type: 'null'
          title: Oauth Client Secret
      additionalProperties: true
      type: object
      required:
      - remote_url
      title: GCSSourceConnectorConfigInput
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
            - type: string
            - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
      - loc
      - msg
      - type
      title: ValidationError
    SecretReference:
      properties:
        id:
          type: string
          title: Id
        type:
          $ref: '#/components/schemas/EncryptionType'
          default: rsa
      type: object
      required:
      - id
      title: SecretReference
    ElasticsearchConnectorConfigInput:
      properties:
        hosts:
          items:
            type: string
          type: array
          title: Hosts
        index_name:
          type: string
          title: Index Name
        es_api_key:
          type: string
          title: Es Api Key
      additionalProperties: true
      type: object
      required:
      - hosts
      - index_name
      - es_api_key
      title: ElasticsearchConnectorConfigInput
    BoxSourceConnectorConfigInput:
      properties:
        box_app_config:
          anyOf:
          - type: string
          - type: 'null'
          title: Box App Config
        access_token:
          anyOf:
          - type: string
          - type: 'null'
          title: Access Token
        refresh_token:
          anyOf:
          - type: string
          - type: 'null'
          title: Refresh Token
        remote_url:
          type: string
          pattern: ^box:\/\/
          title: Remote Url
        recursive:
          type: boolean
          title: Recursive
          default: true
      additionalProperties: true
      type: object
      required:
      - remote_url
      title: BoxSourceConnectorConfigInput
    SharePointSourceConnectorConfig:
      properties:
        site:
          type: string
          title: Site
        tenant:
          type: string
          title: Tenant
        authority_url:
          type: string
          title: Authority Url
          default: https://login.microsoftonline.com
        user_pname:
          anyOf:
          - type: string
          - type: 'null'
          title: User Pname
        client_id:
          anyOf:
          - type: string
          - type: 'null'
          title: Client Id
        client_cred:
          anyOf:
          - type: string
          - type: 'null'
          title: Client Cred
        oauth_token:
          anyOf:
          - type: string
          - type: 'null'
          title: Oauth Token
        refresh_token:
          anyOf:
          - type: string
          - type: 'null'
          title: Refresh Token
        recursive:
          type: boolean
          title: Recursive
        path:
          anyOf:
          - type: string
          - type: 'null'
          title: Path
      additionalProperties: true
      type: object
      required:
      - site
      - tenant
      - recursive
      title: SharePointSourceConnectorConfig
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    EncryptionType:
      type: string
      enum:
      - rsa
      - rsa_aes
      - runtime_config
      title: EncryptionType
    PostgresSourceConnectorConfig:
      properties:
        host:
          type: string
          title: Host
        database:
          type: string
          title: Database
        port:
          type: integer
          title: Port
        username:
          type: string
          title: Username
        password:
          type: string
          title: Password
        table_name:
          type: string
          title: Table Name
        batch_size:
          type: integer
          title: Batch Size
        id_column:
          type: string
          title: Id Column
        fields:
          anyOf:
          - items:
              type: string
            type: array
          - type: 'null'
          title: Fields
      additionalProperties: true
      type: object
      required:
      - host
      - database
      - port
      - username
      - password
      - table_name
      - batch_size
      - id_column
      title: PostgresSourceConnectorConfig
    OneDriveSourceConnectorConfig:
      properties:
        client_id:
          anyOf:
          - type: string
          - type: 'null'
          title: Client Id
        user_pname:
          type: string
          title: User Pname
        tenant:
          type: string
          title: Tenant
        authority_url:
          type: string
          title: Authority Url
          default: https://login.microsoftonline.com
        client_cred:
          anyOf:
          - type: string
          - type: 'null'
          title: Client Cred
        oauth_token:
          anyOf:
          - type: string
          - type: 'null'
          title: Oauth Token
        refresh_token:
          anyOf:
          - type: string
          - type: 'null'
          title: Refresh Token
        recursive:
          type: boolean
          title: Recursive
        path:
          type: string
          title: Path
      additionalProperties: true
      type: object
      required:
      - user_pname
      - tenant
      - recursive
      - path
      title: OneDriveSourceConnectorConfig
    JiraSourceConnectorConfigInput:
      properties:
        url:
          type: string
          title: Url
        username:
          anyOf:
          - type: string
          - type: 'null'
          title: Username
        cloud_id:
          anyOf:
          - type: string
          - type: 'null'
          title: Cloud Id
        password:
          anyOf:
          - type: string
          - type: 'null'
          title: Password
        token:
          anyOf:
          - type: string
          - type: 'null'
          title: Token
        oauth_token:
          anyOf:
          - type: string
          - type: 'null'
          title: Oauth Token
        refresh_token:
          anyOf:
          - type: string
          - type: 'null'
          title: Refresh Token
        cloud:
          anyOf:
          - type: boolean
          - type: 'null'
          title: Cloud
          default: false
        projects:
          anyOf:
          - items:
              type: string
            type: array
          - type: 'null'
          title: Projects
        boards:
          anyOf:
          - items:
              type: string
            type: array
          - type: 'null'
          title: Boards
        issues:
          anyOf:
          - items:
              type: string
            type: array
          - type: 'null'
          title: Issues
        status_filters:
          anyOf:
          - items:
              type: string
            type: array
          - type: 'null'
          title: Status Filters
        download_attachments:
          anyOf:
          - type: boolean
          - type: 'null'
          title: Download Attachments
          default: false
      additionalProperties: true
      type: object
      required:
      - url
      title: JiraSourceConnectorConfigInput
    S3SourceConnectorConfigInput:
      properties:
        remote_url:
          type: string
          pattern: ^s3:\/\/
          title: Remote Url
        anonymous:
          type: boolean
          title: Anonymous
          default: false
        ambient_credentials:
          type: boolean
          title: Ambient Credentials
          default: false
        key:
          anyOf:
          - type: string
          - type: 'null'
          title: Key
        secret:
          anyOf:
          - type: string
          - type: 'null'
          title: Secret
        token:
          anyOf:
          - type: string
          - type: 'null'
          title: Token
        endpoint_url:
          anyOf:
          - type: string
          - type: 'null'
          title: Endpoint Url
        role_arn:
          anyOf:
          - type: string
          - type: 'null'
          title: Role Arn
        external_id:
          anyOf:
          - type: string
          - type: 'null'
          title: External Id
        recursive:
          type: boolean
          title: Recursive
          default: true
      additionalProperties: true
      type: object
      required:
      - remote_url
      title: S3SourceConnectorConfigInput
    SourceConnectorInformation:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        name:
          type: string
          title: Name
        type:
          anyOf:
          - $ref: '#/components/schemas/SourceConnectorType'
          - type: string
          title: Type
        config:
          anyOf:
          - $ref: '#/components/schemas/BoxSourceConnectorConfig'
          - $ref: '#/components/schemas/ConfluenceSourceConnectorConfig'
          - $ref: '#/components/schemas/CouchbaseSourceConnectorConfig'
          - $ref: '#/components/schemas/DatabricksVolumesConnectorConfig'
          - $ref: '#/components/schemas/DropboxSourceConnectorConfig'
          - $ref: '#/components/schemas/ElasticsearchConnectorConfig'
          - $ref: '#/components/schemas/GCSSourceConnectorConfig'
          - $ref: '#/components/schemas/GoogleDriveSourceConnectorConfig'
          - $ref: '#/components/schemas/KafkaCloudSourceConnectorConfig'
          - $ref: '#/components/schemas/MongoDBConnectorConfig'
          - $ref: '#/components/schemas/OneDriveSourceConnectorConfig'
          - $ref: '#/components/schemas/OutlookSourceConnectorConfig'
          - $ref: '#/components/schemas/PostgresSourceConnectorConfig'
          - $ref: '#/components/schemas/SalesforceSourceConnectorConfig'
          - $ref: '#/components/schemas/SharePointSourceConnectorConfig'
          - $ref: '#/components/schemas/SlackSourceConnectorConfig'
          - $ref: '#/components/schemas/SnowflakeSourceConnectorConfig'
          - $ref: '#/components/schemas/TeradataSourceConnectorConfig'
          - $ref: '#/components/schemas/JiraSourceConnectorConfig'
          - $ref: '#/components/schemas/ZendeskSourceConnectorConfig'
          - $ref: '#/components/schemas/S3SourceConnectorConfig'
          - $ref: '#/components/schemas/AzureSourceConnectorConfig'
          - additionalProperties: true
            type: object
          title: Config
        created_at:
          type: string
          format: date-time
          title: Created At
        updated_at:
          anyOf:
          - type: string
            format: date-time
          - type: 'null'
          title: Updated At
        key:
          anyOf:
          - type: string
          - type: 'null'
          title: Key
      type: object
      required:
      - id
      - name
      - type
      - config
      - created_at
      title: SourceConnectorInformation
    BoxSourceConnectorConfig:
      properties:
        box_app_config:
          anyOf:
          - type: string
          - type: 'null'
          title: Box App Config
        access_token:
          anyOf:
          - type: string
          - type: 'null'
          title: Access Token
        refresh_token:
          anyOf:
          - type: string
          - type: 'null'
          title: Refresh Token
        recursive:
          type: boolean
          title: Recursive
      additionalProperties: true
      type: object
      required:
      - recursive
      title: BoxSourceConnectorConfig
    ConfluenceSourceConnectorConfigInput:
      properties:
        url:
          type: string
          title: Url
        username:
          anyOf:
          - type: string
          - type: 'null'
          title: Username
        cloud_id:
          anyOf:
          - type: string
          - type: 'null'
          title: Cloud Id
        password:
          anyOf:
          - type: string
          - type: 'null'
          title: Password
        api_token:
          anyOf:
          - type: string
          - type: 'null'
          title: Api Token
        token:
          anyOf:
          - type: string
          - type: 'null'
          title: Token
        oauth_token:
          anyOf:
          - type: string
          - type: 'null'
          title: Oauth Token
        refresh_token:
          anyOf:
          - type: string
          - type: 'null'
          title: Refresh Token
        cloud:
          type: boolean
          title: Cloud
          default: false
        extract_images:
          type: boolean
          title: Extract Images
          default: false
        extract_files:
          type: boolean
          title: Extract Files
          default: false
        max_num_of_spaces:
          type: integer
          minimum: 1.0
          title: Max Num Of Spaces
          default: 500
        max_num_of_docs_from_each_space:
          type: integer
          minimum: 1.0
          title: Max Num Of Docs From Each Space
          default: 150
        spaces:
          anyOf:
          - items:
              type: string
            type: array
          - type: 'null'
          title: Spaces
      additionalProperties: true
      type: object
      required:
      - url
      title: ConfluenceSourceConnectorConfigInput
    SnowflakeSourceConnectorConfigInput:
      properties:
        account:
          type: string
          title: Account
        role:
          type: string
          title: Role
        user:
          type: string
          title: User
        password:
          type: string
          title: Password
        host:
          type: string
          title: Host
        port:
          type: integer
          minimum: 1.0
          title: Port
          default: 443
        database:
          type: string
          title: Database
        schema:
          type: string
          title: Schema
        table_name:
          type: string
          title: Table Name
        batch_size:
          type: integer
          minimum: 1.0
          title: Batch Size
          default: 100
        id_column:
          type: string
          title: Id Column
        fields:
          anyOf:
          - items:
              type: string
            type: array
          - type: 'null'
          title: Fields
      additionalProperties: true
      type: object
      required:
      - account
      - role
      - user
      - password
      - host
      - database
      - schema
      - table_name
      - id_column
      title: SnowflakeSourceConnectorConfigInput
    UpdateSourceConnector:
      properties:
        config:
          anyOf:
          - $ref: '#/components/schemas/BoxSourceConnectorConfigInput'
          - $ref: '#/components/schemas/ConfluenceSourceConnectorConfigInput'
          - $ref: '#/components/schemas/CouchbaseSourceConnectorConfigInput'
          - $ref: '#/components/schemas/DatabricksVolumesConnectorConfigInput'
          - $ref: '#/components/schemas/DropboxSourceConnectorConfigInput'
          - $ref: '#/components/schemas/ElasticsearchConnectorConfigInput'
          - $ref: '#/components/schemas/GCSSourceConnectorConfigInput'
          - $ref: '#/components/schemas/GoogleDriveSourceConnectorConfigInput'
          - $ref: '#/components/schemas/KafkaCloudSourceConnectorConfigInput'
          - $ref: '#/components/schemas/MongoDBConnectorConfigInput'
          - $ref: '#/components/schemas/OneDriveSourceConnectorConfigInput'
          - $ref: '#/components/schemas/OutlookSourceConnectorConfigInput'
          - $ref: '#/components/schemas/PostgresSourceConnectorConfigInput'
          - $ref: '#/components/schemas/SalesforceSourceConnectorConfigInput'
          - $ref: '#/components/schemas/SharePointSourceConnectorConfigInput'
          - $ref: '#/components/schemas/SlackSourceConnectorConfigInput'
          - $ref: '#/components/schemas/SnowflakeSourceConnectorConfigInput'
          - $ref: '#/components/schemas/TeradataSourceConnectorConfigInput'
          - $ref: '#/components/schemas/JiraSourceConnectorConfigInput'
          - $ref: '#/components/schemas/ZendeskSourceConnectorConfigInput'
          - $ref: '#/components/schemas/S3SourceConnectorConfigInput'
          - $ref: '#/components/schemas/AzureSourceConnectorConfigInput'
          - additionalProperties: true
            type: object
          title: Config
      type: object
      required:
      - config
      title: UpdateSourceConnector
    TeradataSourceConnectorConfig:
      properties:
        host:
          type: string
          title: Host
        user:
          type: string
          title: User
        password:
          type: string
          title: Password
        database:
          anyOf:
          - type: string
          - type: 'null'
          title: Database
        dbs_port:
          type: integer
          minimum: 1.0
          title: Dbs Port
          default: 1025
        id_column:
          type: string
          title: Id Column
          default: id
        table_name:
          type: string
          title: Table Name
        batch_size:
          type: integer
          minimum: 1.0
          title: Batch Size
          default: 100
        fields:
          anyOf:
          - items:
              type: string
            type: array
          - type: 'null'
          title: Fields
      additionalProperties: true
      type: object
      required:
      - host
      - user
      - password
      - table_name
      title: TeradataSourceConnectorConfig
    CouchbaseSourceConnectorConfig:
      properties:
        bucket:
          type: string
          title: Bucket
        connection_string:
          type: string
          title: Connection String
        scope:
          anyOf:
          - type: string
          - type: 'null'
          title: Scope
        collection:
          anyOf:
          - type: string
          - type: 'null'
          title: Collection
        batch_size:
          type: integer
          title: Batch Size
        username:
          type: string
          title: Username
        password:
          type: string
          title: Password
        collection_id:
          type: string
          title: Collection Id
      additionalProperties: true
      type: object
      required:
      - bucket
      - connection_string
      - batch_size
      - username
      - password
      - collection_id
      title: CouchbaseSourceConnectorConfig
    SourceConnectorType:
      type: string
      enum:
      - box
      - confluence
      - couchbase
      - databricks_volumes
      - dropbox
      - elasticsearch
      - gcs
      - google_drive
      - kafka-cloud
      - mongodb
      - onedrive
      - outlook
      - postgres
      - salesforce
      - sharepoint
      - slack
      - snowflake
      - teradata
      - jira
      - zendesk
      - s3
      - azure
      title: SourceConnectorType
    DatabricksVolumesConnectorConfig:
      properties:
        host:
          type: string
          title: Host
        catalog:
          type: string
          title: Catalog
        schema:
          type: string
          title: Schema
          default: default
        volume:
          type: string
          title: Volume
        volume_path:
          type: string
          title: Volume Path
        client_secret:
          type: string
          title: Client Secret
        client_id:
          type: string
          title: Client Id
      additionalProperties: true
      type: object
      required:
      - host
      - catalog
      - volume
      - volume_path
      - client_secret
      - client_id
      title: DatabricksVolumesConnectorConfig
    DagNodeConnectionCheck:
      properties:
        id:
 

# --- truncated at 32 KB (59 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/unstructured/refs/heads/main/openapi/unstructured-sources-api-openapi.yml