From d083d156652fa6849bce4946a9897c01edafcdec Mon Sep 17 00:00:00 2001 From: "Aaron (\"AJ\") Steers" Date: Thu, 14 Dec 2023 08:39:29 -0800 Subject: [PATCH] Docs fix: `ConfiguredAirbyteCatalog` refs (#33483) --- docs/understanding-airbyte/airbyte-protocol.md | 2 +- tools/schema_generator/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/understanding-airbyte/airbyte-protocol.md b/docs/understanding-airbyte/airbyte-protocol.md index e436b24eada..fad51767db4 100644 --- a/docs/understanding-airbyte/airbyte-protocol.md +++ b/docs/understanding-airbyte/airbyte-protocol.md @@ -171,7 +171,7 @@ For the sake of brevity, we will not re-describe `spec` and `check`. They are ex #### Input: 1. `config` - A configuration JSON object that has been validated using the `ConnectorSpecification`. -2. `catalog` - An `AirbyteCatalog`. This `catalog` should be a subset of the `catalog` returned by the `discover` command. Any `AirbyteRecordMessages`s that the destination receives that do _not_ match the structure described in the `catalog` will fail. +2. `catalog` - A [`ConfiguredAirbyteCatalog`](https://docs.airbyte.com/understanding-airbyte/beginners-guide-to-catalog#configuredairbytecatalog). This is a modified version of the `catalog` returned by the `discover` command. Any `AirbyteRecordMessages`s that the destination receives that do _not_ match the structure described in the `catalog` will fail. 3. `message stream` - \(this stream is consumed on stdin--it is not passed as an arg\). It will receive a stream of JSON-serialized `AirbyteMesssage`. #### Output: diff --git a/tools/schema_generator/README.md b/tools/schema_generator/README.md index 96a028bdb35..5d83ba7ac09 100644 --- a/tools/schema_generator/README.md +++ b/tools/schema_generator/README.md @@ -22,7 +22,7 @@ $ source .venv/bin/activate # enable the venv $ pip install -r requirements.txt ``` -To use a connectors `run` command we first need an AirbyteConfiguredCatalog: +To use a connector's `run` command we first need a `ConfiguredAirbyteCatalog`: ```bash $ ../../airbyte-integrations/connectors/ # you need to use the tool at the root folder of a connector