Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions specs/ingestion/common/schemas/authentication.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ Authentication:
- name
- input
- createdAt
- updatedAt

AuthenticationCreate:
type: object
Expand Down
1 change: 1 addition & 0 deletions specs/ingestion/common/schemas/destination.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ Destination:
- name
- input
- createdAt
- updatedAt

DestinationCreate:
type: object
Expand Down
1 change: 1 addition & 0 deletions specs/ingestion/common/schemas/source.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ Source:
- type
- name
- createdAt
- updatedAt

SourceCreate:
type: object
Expand Down
2 changes: 2 additions & 0 deletions specs/ingestion/common/schemas/task.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ Task:
- destinationID
- enabled
- createdAt
- updatedAt

TaskV1:
type: object
Expand Down Expand Up @@ -86,6 +87,7 @@ TaskV1:
- trigger
- enabled
- createdAt
- updatedAt

Trigger:
description: Trigger that runs the task.
Expand Down
5 changes: 3 additions & 2 deletions specs/ingestion/common/schemas/transformation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ Transformation:
- code
- name
- createdAt
- updatedAt

Code:
type: string
Expand Down Expand Up @@ -119,9 +120,9 @@ TransformationTryResponse:
properties:
payloads:
type: array
description: The array of records returned by the transformation service.
description: The array of stringified records returned by the transformation service.
items:
type: object
type: string
error:
title: transformationError
type: object
Expand Down