Skip to content

Commit

Permalink
Docs fix: ConfiguredAirbyteCatalog refs (airbytehq#33483)
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronsteers authored Dec 14, 2023
1 parent 479502c commit d083d15
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/understanding-airbyte/airbyte-protocol.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion tools/schema_generator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/<your-connector> # you need to use the tool at the root folder of a connector
Expand Down

0 comments on commit d083d15

Please sign in to comment.