Skip to content

Commit

Permalink
Airbyte-protocol: add new record message type
Browse files Browse the repository at this point in the history
  • Loading branch information
aldogonzalez8 committed Nov 12, 2024
1 parent e24ee15 commit 3702f58
Showing 1 changed file with 25 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,31 @@ definitions:
- SOURCE_RETRIEVAL_ERROR
# Errors casting to appropriate type
- DESTINATION_TYPECAST_ERROR
AirbyteFileTransferRecordMessage:
type: object
additionalProperties: true
required:
- stream
- file
- emitted_at
properties:
namespace:
description: "namespace the data is associated with"
type: string
stream:
description: "stream the data is associated with"
type: string
file:
description: "transfer file data"
type: object
existingJavaType: com.fasterxml.jackson.databind.JsonNode
data:
description: "record data"
type: object
existingJavaType: com.fasterxml.jackson.databind.JsonNode
emitted_at:
description: "when the data was emitted from the source. epoch in millisecond."
type: integer
AirbyteStateMessage:
type: object
additionalProperties: true
Expand Down

0 comments on commit 3702f58

Please sign in to comment.