1
0
mirror of synced 2025-12-25 02:09:19 -05:00

Docs: Fix wrong Json key in doc (schema instead of json_schema) (#12169)

The text of the doc says the key should be named `json_schema` but the examples say `schema`
According to 922bfd08a9/airbyte-protocol/models/src/main/resources/airbyte_protocol/airbyte_protocol.yaml (L129), it's `json_schema`.
This commit is contained in:
Joachim Jablon
2022-04-20 18:51:39 +02:00
committed by GitHub
parent 5164e12fc4
commit c26a923dc2

View File

@@ -99,7 +99,7 @@ read(Config, ConfiguredAirbyteCatalog, State) -> Stream<AirbyteMessage>
"streams": [
{
"name": "users",
"schema": {
"json_schema": {
"type": "object",
"required": ["name"],
"properties": {
@@ -123,7 +123,7 @@ read(Config, ConfiguredAirbyteCatalog, State) -> Stream<AirbyteMessage>
"streams": [
{
"name": "customers",
"schema": {
"json_schema": {
"type": "object",
"required": ["name"],
"properties": {
@@ -135,7 +135,7 @@ read(Config, ConfiguredAirbyteCatalog, State) -> Stream<AirbyteMessage>
},
{
"name": "products",
"schema": {
"json_schema": {
"type": "object",
"required": ["name", "features"],
"properties": {