Skip to content

Commit 3318e14

Browse files
docs: fix broken markup in Python CDK Basic Concepts page (#55699)
Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Co-authored-by: [email protected] <[email protected]>
1 parent 5de4d25 commit 3318e14

File tree

1 file changed

+6
-17
lines changed

1 file changed

+6
-17
lines changed

docs/connector-development/cdk-python/basic-concepts.md

+6-17
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,12 @@
44

55
As a quick recap, the Airbyte Specification requires an Airbyte Source to support 4 distinct operations:
66

7-
1. `Spec` - The required configuration in order to interact with the underlying technical system e.g. database
8-
9-
information, authentication information etc.
10-
11-
2. `Check` - Validate that the provided configuration is valid with sufficient permissions for one to perform all
12-
13-
required operations on the Source.
14-
15-
3. `Discover` - Discover the Source's schema. This let users select what a subset of the data to sync. Useful
16-
17-
if users require only a subset of the data.
18-
19-
4. `Read` - Perform the actual syncing process. Data is read from the Source, parsed into `AirbyteRecordMessage`s
20-
21-
and sent to the Airbyte Destination. Depending on how the Source is implemented, this sync can be incremental
22-
23-
or a full-refresh.
7+
| Operation | Description |
8+
| --- | --- |
9+
| `Spec` | The required configuration in order to interact with the underlying technical system e.g. database information, authentication information etc. |
10+
| `Check` | Validate that the provided configuration is valid with sufficient permissions for one to perform all required operations on the Source. |
11+
| `Discover` | Discover the Source's schema. This let users select what a subset of the data to sync. Useful if users require only a subset of the data. |
12+
| `Read` | Perform the actual syncing process. Data is read from the Source, parsed into `AirbyteRecordMessage`s and sent to the Airbyte Destination. Depending on how the Source is implemented, this sync can be incremental or a full-refresh. |
2413

2514
A core concept discussed here is the **Source**.
2615

0 commit comments

Comments
 (0)