-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Remove reference page from low-code docs" (#32093)
- Loading branch information
Showing
8 changed files
with
61 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 0 additions & 1 deletion
1
docs/connector-development/config-based/low-code-cdk-overview.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
50 changes: 50 additions & 0 deletions
50
docs/connector-development/config-based/understanding-the-yaml-file/reference.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
import ManifestYamlDefinitions from '@site/src/components/ManifestYamlDefinitions'; | ||
|
||
import schema from "../../../../airbyte-cdk/python/airbyte_cdk/sources/declarative/declarative_component_schema.yaml"; | ||
|
||
|
||
# YAML Reference | ||
|
||
This page lists all components, interpolation variables and interpolation macros that can be used when defining a low code YAML file. | ||
|
||
For the technical JSON schema definition that low code manifests are validated against, see [here](https://github.com/airbytehq/airbyte/blob/master/airbyte-cdk/python/airbyte_cdk/sources/declarative/declarative_component_schema.yaml). | ||
|
||
<ManifestYamlDefinitions /> | ||
|
||
export const toc = [ | ||
{ | ||
"value": "Components:", | ||
"id": "components", | ||
"level": 2 | ||
}, | ||
{ | ||
value: "DeclarativeSource", | ||
id: "/definitions/DeclarativeSource", | ||
level: 3 | ||
}, | ||
...Object.keys(schema.definitions).map((id) => ({ | ||
value: id, | ||
id: `/definitions/${id}`, | ||
level: 3 | ||
})), | ||
{ | ||
"value": "Interpolation variables:", | ||
"id": "variables", | ||
"level": 2 | ||
}, | ||
...schema.interpolation.variables.map((def) => ({ | ||
value: def.title, | ||
id: `/variables/${def.title}`, | ||
level: 3 | ||
})), | ||
{ | ||
"value": "Interpolation macros:", | ||
"id": "macros", | ||
"level": 2 | ||
}, | ||
...schema.interpolation.macros.map((def) => ({ | ||
value: def.title, | ||
id: `/macros/${def.title}`, | ||
level: 3 | ||
})) | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters