From bd7baa4300c004968d6b3601259c24fdccb4bc4f Mon Sep 17 00:00:00 2001 From: Ping-Lin Chang Date: Sun, 17 Jul 2022 23:25:49 +0100 Subject: [PATCH] fix: remove airbyte namespace --- pkg/datamodel/airbyte.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkg/datamodel/airbyte.go b/pkg/datamodel/airbyte.go index 9b850ca..cce0a18 100644 --- a/pkg/datamodel/airbyte.go +++ b/pkg/datamodel/airbyte.go @@ -29,7 +29,6 @@ type AirbyteRecordMessage struct { Stream string `json:"stream"` Data json.RawMessage `json:"data"` EmittedAt int64 `json:"emitted_at"` - Namespace string `json:"namespace"` } // AirbyteCatalog defines the AirbyteCatalog protocol as in: @@ -47,7 +46,6 @@ type AirbyteStream struct { SourceDefinedCursor bool `json:"source_defined_cursor"` DefaultCursorField []string `json:"default_cursor_field"` SourceDefinedPrimaryKey [][]string `json:"source_defined_primary_key"` - Namespace string `json:"namespace"` } // ConfiguredAirbyteCatalog defines the ConfiguredAirbyteCatalog protocol as in: