Events.com Data Pipeline Controller V2 API

The data-pipeline-controller-v2 API from Events.com — 11 operation(s) for data-pipeline-controller-v2.

OpenAPI Specification

eventscom-data-pipeline-controller-v2-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Saasxl-api doc Data Pipeline Controller V2 API
  version: '1.0'
servers:
- url: https://datagol-be.events.com
  description: Generated server url
tags:
- name: data-pipeline-controller-v2
paths:
  /dataPipeline/api/v2/{dataPipelineId}:
    put:
      tags:
      - data-pipeline-controller-v2
      operationId: edit_1
      parameters:
      - name: dataPipelineId
        in: path
        required: true
        schema:
          type: integer
          format: int64
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DataPipelineV2DTO'
        required: true
      responses:
        '400':
          description: Bad Request
          content:
            '*/*':
              schema:
                oneOf:
                - type: object
                - $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '403':
          description: Forbidden
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '503':
          description: Service Unavailable
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '500':
          description: Internal Server Error
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '404':
          description: Not Found
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '501':
          description: Not Implemented
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/DataPipelineResponseV2DTO'
  /dataPipeline/api/v2:
    get:
      tags:
      - data-pipeline-controller-v2
      operationId: getAll_4
      parameters:
      - name: includeJobs
        in: query
        required: false
        schema:
          type: boolean
          default: true
      responses:
        '400':
          description: Bad Request
          content:
            '*/*':
              schema:
                oneOf:
                - type: object
                - $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '403':
          description: Forbidden
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '503':
          description: Service Unavailable
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '500':
          description: Internal Server Error
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '501':
          description: Not Implemented
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DataPipelineResponseV2DTO'
    post:
      tags:
      - data-pipeline-controller-v2
      operationId: createPipeline
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DataPipelineV2DTO'
        required: true
      responses:
        '400':
          description: Bad Request
          content:
            '*/*':
              schema:
                oneOf:
                - type: object
                - $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '403':
          description: Forbidden
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '503':
          description: Service Unavailable
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '500':
          description: Internal Server Error
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '501':
          description: Not Implemented
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/DataPipelineResponseV2DTO'
  /dataPipeline/api/v2/{dataPipelineId}/getPreviousRevision:
    post:
      tags:
      - data-pipeline-controller-v2
      operationId: getPreviousRevision
      parameters:
      - name: dataPipelineId
        in: path
        required: true
        schema:
          type: integer
          format: int64
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PageRequestDTO'
        required: true
      responses:
        '400':
          description: Bad Request
          content:
            '*/*':
              schema:
                oneOf:
                - type: object
                - $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '403':
          description: Forbidden
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '503':
          description: Service Unavailable
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '500':
          description: Internal Server Error
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '501':
          description: Not Implemented
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DataPipelineRevisionDTO'
  /dataPipeline/api/v2/job:
    post:
      tags:
      - data-pipeline-controller-v2
      operationId: getPipelineJob
      parameters:
      - name: pageable
        in: query
        required: true
        schema:
          $ref: '#/components/schemas/Pageable'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DataPipelineJobRequestDTO'
        required: true
      responses:
        '400':
          description: Bad Request
          content:
            '*/*':
              schema:
                oneOf:
                - type: object
                - $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '403':
          description: Forbidden
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '503':
          description: Service Unavailable
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '500':
          description: Internal Server Error
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '501':
          description: Not Implemented
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/PaginatedDataPipelineJobsDTO'
  /dataPipeline/api/v2/getAllPaginated:
    post:
      tags:
      - data-pipeline-controller-v2
      operationId: getAllPaginated
      parameters:
      - name: includeJobs
        in: query
        required: false
        schema:
          type: boolean
          default: true
      - name: page
        in: query
        required: false
        schema:
          type: integer
          format: int32
          default: 1
      - name: size
        in: query
        required: false
        schema:
          type: integer
          format: int32
          default: 12
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DataPipelineSearchDTO'
        required: true
      responses:
        '400':
          description: Bad Request
          content:
            '*/*':
              schema:
                oneOf:
                - type: object
                - $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '403':
          description: Forbidden
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '503':
          description: Service Unavailable
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '500':
          description: Internal Server Error
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '501':
          description: Not Implemented
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/DataPipelinePaginatedResponseDTO'
  /dataPipeline/api/v2/generateQuery:
    post:
      tags:
      - data-pipeline-controller-v2
      operationId: generateQuery
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/StreamQueryGenerationRequestDTO'
        required: true
      responses:
        '400':
          description: Bad Request
          content:
            '*/*':
              schema:
                oneOf:
                - type: object
                - $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '503':
          description: Service Unavailable
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '500':
          description: Internal Server Error
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '403':
          description: Forbidden
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '501':
          description: Not Implemented
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: object
                additionalProperties:
                  type: string
  /dataPipeline/api/v2/{pipelineId}:
    get:
      tags:
      - data-pipeline-controller-v2
      operationId: getById_4
      parameters:
      - name: pipelineId
        in: path
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '400':
          description: Bad Request
          content:
            '*/*':
              schema:
                oneOf:
                - type: object
                - $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '403':
          description: Forbidden
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '503':
          description: Service Unavailable
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '500':
          description: Internal Server Error
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '404':
          description: Not Found
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '501':
          description: Not Implemented
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/DataPipelineResponseV2DTO'
  /dataPipeline/api/v2/{pipelineId}/jobs:
    get:
      tags:
      - data-pipeline-controller-v2
      operationId: getAllJobs
      parameters:
      - name: pipelineId
        in: path
        required: true
        schema:
          type: integer
          format: int64
      - name: pageable
        in: query
        required: true
        schema:
          $ref: '#/components/schemas/Pageable'
      responses:
        '400':
          description: Bad Request
          content:
            '*/*':
              schema:
                oneOf:
                - type: object
                - $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '503':
          description: Service Unavailable
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '500':
          description: Internal Server Error
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '403':
          description: Forbidden
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '501':
          description: Not Implemented
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/DataPipelineJobPage'
  /dataPipeline/api/v2/{pipelineId}/job/{jobId}:
    get:
      tags:
      - data-pipeline-controller-v2
      operationId: getDataPipelineJobById_1
      parameters:
      - name: pipelineId
        in: path
        required: true
        schema:
          type: integer
          format: int64
      - name: jobId
        in: path
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '400':
          description: Bad Request
          content:
            '*/*':
              schema:
                oneOf:
                - type: object
                - $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '403':
          description: Forbidden
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '503':
          description: Service Unavailable
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '500':
          description: Internal Server Error
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '404':
          description: Not Found
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '501':
          description: Not Implemented
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '200':
          description: OK
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/DataPipelineJobV2DTO'
  /dataPipeline/api/v2/queryEngines:
    get:
      tags:
      - data-pipeline-controller-v2
      operationId: getQueryEngines
      responses:
        '400':
          description: Bad Request
          content:
            '*/*':
              schema:
                oneOf:
                - type: object
                - $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '503':
          description: Service Unavailable
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '403':
          description: Forbidden
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '501':
          description: Not Implemented
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '500':
          description: Internal Server Error
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '200':
          description: OK
          content:
            '*/*':
              schema:
                type: array
                items:
                  type: string
                  enum:
                  - JDBC
                  - SPARK
                  - ATHENA
                  - SNOWFLAKE
                  - BIGQUERY
                  - MYSQL
                  - SQL_SERVER
                  - REDSHIFT
                  - CLOUD_BIGQUERY
  /dataPipeline/api/v2/pipelines/permission/migrate:
    get:
      tags:
      - data-pipeline-controller-v2
      operationId: migrateCustomPipelines
      responses:
        '400':
          description: Bad Request
          content:
            '*/*':
              schema:
                oneOf:
                - type: object
                - $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '503':
          description: Service Unavailable
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '500':
          description: Internal Server Error
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '403':
          description: Forbidden
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '501':
          description: Not Implemented
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/SaasxlResponseDTOObject'
        '200':
          description: OK
components:
  schemas:
    AnnotationDTO:
      type: object
      properties:
        id:
          type: integer
          format: int64
        name:
          type: string
        description:
          type: string
        type:
          type: string
          enum:
          - CLASSIFICATION
          - GLOSSARY
          - GLOSSARY_TERM
          - TERM
        parentAnnotationId:
          type: integer
          format: int64
        companyId:
          type: integer
          format: int64
        uiMetadata:
          type: object
          additionalProperties:
            type: object
    ThirdPartyFilterConfigDTO:
      type: object
      properties:
        name:
          type: string
        required:
          type: boolean
        defaultValue:
          type: string
        actualValue:
          type: string
    KeyInfoDTO:
      type: object
      properties:
        primaryKeyName:
          type: string
        primaryKeyTableName:
          type: string
        primaryKeyColumnName:
          type: string
        foreignKeyName:
          type: string
        foreignKeyTableName:
          type: string
        foreignKeyColumnName:
          type: string
        keySequence:
          type: string
        updateRule:
          type: string
        deleteRule:
          type: string
    CatalogDTO:
      type: object
      properties:
        name:
          type: string
    StreamQueryGenerationRequestDTO:
      type: object
      properties:
        user:
          $ref: '#/components/schemas/UserDTO'
        dsId:
          type: integer
          format: int64
        dataPipelineId:
          type: integer
          format: int64
        stream:
          type: string
        where:
          $ref: '#/components/schemas/WhereClause'
        columns:
          type: array
          items:
            type: string
        parameters:
          type: object
          additionalProperties:
            type: object
        nodeGroupConfigProperties:
          type: object
          additionalProperties:
            type: string
    DataPipelineStreamCursorDTO:
      type: object
      properties:
        cursorName:
          type: string
        cursorDataType:
          type: string
        cursorLastValue:
          type: string
    DataSourceSchemaDTO:
      type: object
      properties:
        id:
          type: integer
          format: int64
        dataSourceId:
          type: integer
          format: int64
        data:
          $ref: '#/components/schemas/DataSourceSchemaWrapperDTO'
        hash:
          type: string
        lastSyncedAt:
          type: string
          format: date-time
    KeyDTO:
      type: object
      properties:
        name:
          type: string
        columns:
          type: array
          items:
            $ref: '#/components/schemas/KeyInfoDTO'
    PageRequestDTO:
      type: object
      properties:
        pageNumber:
          type: integer
          format: int64
        pageSize:
          type: integer
          format: int64
        query:
          type: string
        primaryKeyColumnName:
          type: string
    LinkRecordDTO:
      type: object
      properties:
        sourceRecordId:
          type: object
        destinationRecordId:
          type: object
        linkColumnId:
          type: string
        columnId:
          type: string
        tableId:
          type: string
        companyId:
          type: integer
          format: int64
    DataPipelineRevisionDTO:
      type: object
      properties:
        pipeline:
          $ref: '#/components/schemas/DataPipelineResponseV2DTO'
        modifiedBy:
          $ref: '#/components/schemas/UserDTO'
        modifiedAt:
          type: string
          format: date-time
    PageDTO:
      type: object
      properties:
        pageNumber:
          type: integer
          format: int64
        pageSize:
          type: integer
          format: int64
        totalNumberOfRecords:
          type: integer
          format: int64
        totalNumberOfPages:
          type: integer
          format: int64
        rows:
          type: array
          items:
            $ref: '#/components/schemas/RowDataDTO'
        tableName:
          type: string
        lastCursorValues:
          type: object
          additionalProperties:
            type: object
        isLastPage:
          type: boolean
        waitTime:
          type: integer
          format: int64
        executionTime:
          type: integer
          format: int64
        operationId:
          type: string
        finalQuery:
          type: string
    DataPipelineJobProcessDTO:
      type: object
      properties:
        id:
          type: integer
          format: int64
        pipelineProcessId:
          type: integer
          format: int64
        query:
          type: string
        status:
          type: string
        rank:
          type: integer
          format: int32
        processName:
          type: string
        processType:
          type: string
          enum:
          - PRE
          - POST
    DataPipelineJobPage:
      type: object
      properties:
        pageNumber:
          type: integer
          format: int32
        pageSize:
          type: integer
          format: int32
        totalRecords:
          type: integer
          format: int32
        totalPages:
          type: integer
          format: int32
        nextFireTimes:
          type: array
          items:
            type: string
            format: date-time
        jobs:
          type: array
          items:
            $ref: '#/components/schemas/DataPipelineJobV2DTO'
    DataPipelineJobLiteDTO:
      type: object
      properties:
        pipelineInfo:
          $ref: '#/components/schemas/DataPipelineInfoDTO'
        job:
          $ref: '#/components/schemas/DataPipelineJobDTO'
        jobV2:
          $ref: '#/components/schemas/DataPipelineJobV2DTO'
    AttachmentSettingsDTO:
      type: object
      properties:
        templateKey:
          type: string
        templateFileName:
          type: string
        outputFileName:
          type: string
    DataPipelineNodeGroupConfig:
      type: object
      properties:
        id:
          type: integer
          format: int64
        numberOfExecutors:
          type: integer
          format: int32
    DataPipelineJobRequestDTO:
      type: object
      properties:
        status:
          type: string
          enum:
          - QUEUED
          - STARTED
          - FAILED
          - CANCELLED
          - COMPLETED
          - PENDING
          - RUNNING
          - INCOMPLETE
          - SUCCEEDED
          - DELETED
          - UNKNOWN
          - PRE_VALIDATION_FAILED
          - POST_VALIDATION_FAILED
        time:
          $ref: '#/components/schemas/Time'
    RuleDTO:
      type: object
      properties:
        field:
          type: string
        value:
          type: object
        operator:
          type: string
        rules:
          type: array
          items:
            $ref: '#/components/schemas/RuleDTO'
        combinator:
          type: string
        not:
          type: boolean
        valueSource:
          type: string
    JoinRequest:
      type: object
      properties:
        workspaceId:
          type: string
        name:
          type: string
        primaryTableId:
          type: string
        joinConditions:
          type: array
          items:
            $ref: '#/components/schemas/JoinConditionDTO'
    DataPipelineStreamDTO:
      type: object
      properties:
        id:
          type: integer
          format: int64
        name:
          type: string
        query:
          type: string
        outputTableName:
          type: string
        syncMode:
          type: string
          enum:
          - FULL_REFRESH
          - INCREMENTAL_APPEND
          - INCREMENTAL_APPEND_V2
          - INCREMENTAL_APPEND_MERGE
          - INCREMENTAL_APPEND_V2_MERGE
        tableId:
          type: integer
          format: int64
        cursor:
          $ref: '#/components/schemas/DataPipelineStreamCursorDTO'
        status:
          type: string
          enum:
          - ACTIVE
          - PAUSED
        processes:
          type: array
          items:
            $ref: '#/components/schemas/DataPipelineProcessDTO'
        pipeline:
          $ref: '#/components/schemas/DataPipelineLiteDTO'
        modifiedAt:
          type: string
          format: date-time
        columns:
          type: array
          items:
            type: string
        uniqueColumns:
          type: array
          items:
            type: string
        requiredParams:
          type: array
          items:
            type: string
        lastSyncedAt:
          type: string
          format: date-time
        customQueryDefined:
          type: boolean
    DataPipelineJobDTO:
      type: object
      properties:
        id:
          type: integer
          format: int64
        jobGroupId:
          type: string
        status:
          type: string
          enum:
          - QUEUED
          - STARTED
          - FAILED
          - CANCELLED
          - COMPLETED
          - PENDING
          - RUNNING
          - INCOMPLETE
          - SUCCEEDED
          - DELETED
          - UNKNOWN
          - PRE_VALIDATION_FAILED
          - POST_VALIDATION_FAILED
        startTime:
          type: string
          format: date-time
        endTime:
          type: string
          format: date-time
        startedBy:
          $ref: '#/components/schemas/UserDTO'
        cancelledBy:
          $ref: '#/components/schemas/UserDTO'
        parentId:
          type: integer
          format: int64
        totalStats:
          type: string
        failureReason:
          type: string
        streams:
          type: array
          items:
            $ref: '#/components/schemas/DataPipelineJobStreamDTO'
        processes:
          type: array
          items:
            $ref: '#/components/schemas/DataPipelineJobProcessDTO'
        sparkJobInfo:
          type: array
          items:
            $ref: '#/components/schemas/SparkJobDataDTO'
        parameters:
          type: object
          additionalProperties:
            type: object
        nodeGroupConfig:
          type: object
          additionalProperties:
            type: string
    DataPipelineJobStreamDTO:
      type: object
      properties:
        id:
          type: integer
          format: int64
        name:
          type: string
        query:
          type: string
        status:
          type: string
        dataPipelineStreamId:
          type: integer
          format: int64
    Pageable:
      type: object
      properties:
        page:
          minimum: 0
          type: integer
          format: int32
        size:
          minimum: 1
          type: integer
          format: int32
        sort:
          type: array
          items:
            type: string
    EnumOptionValue:
      type: object
      properties:
        value:
          type: object
        label:
          type: string
    DataPipelinePaginatedResponseDTO:
      type: object
      properties:
        dataPipelineResponses:
          type: array
          items:
            $ref: '#/components/schemas/DataPipelineResponseV2DTO'
        page:
          $ref: '#/components/schemas/PageDTO'
    ViewDTO:
      type: object
      properties:
        createdBy:
          $ref: '#/components/schemas/UserDTO'
        modifiedBy:
          $ref: '#/components/schemas/UserDTO'
        createDate:
          type: string
          format: date-time
        modiDate:
          type: string
          format: date-time
        id:
          type: string
        isMaster:
          type: boolean
        tableId:
          type: string
        position:
          type: number
          format: double
        name:
          type: string
        type:
          type: string
        description:
          type: string
        filterOptions:
          $ref: '#/components/schemas/FilterOptionDTO'
        groupOptions:
          type: array
          items:
            $ref: '#/components/schemas/GroupOptionDTO'
        sortOptions:
          type: array
          items:
            $ref: '#/components/schemas/SortOptionDTO'
        uiMetadata:
          type: object
          additionalProperties:
            type: object
        filterParams:
          type: object
          additionalProperties:
            type: object
        whereClause:
          type: string
        query:
          type: string
        tableName:
          type: string
    ColumnSettingsDTO:
      type: object
      properties:
        enableUserAddNotifications:
          type: boolean
        aiSettings:
          $ref: '#/components/schemas/AIGenerateSettingsDTO'
        attachmentSettings:
          $ref: '#/components/schemas/AttachmentSettingsDTO'
    DataSourceFileDTO:
      type: object
      properties:
        createdBy:
          $ref: '#/components/schemas/UserDTO'
        modifiedBy:
          $ref: '#/components/schemas/UserDTO'
        createDate:
          type: string
          format: date-time
        modiDate:
          type: string
          format: date-time
        id:
          type: integer
          format: int64
        name:
          type: string
        type:
          type: string
    

# --- truncated at 32 KB (59 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/eventscom/refs/heads/main/openapi/eventscom-data-pipeline-controller-v2-api-openapi.yml