From c8160d1683b38d4cf6d2677e61cb42e1da25058f Mon Sep 17 00:00:00 2001 From: Joachim Jablon Date: Wed, 20 Apr 2022 11:44:20 +0200 Subject: [PATCH] Fix wrong Json key in doc (`schema` instead of `json_schema`) The text of the doc says the key should be named `json_schema` but the examples say `schema` According to https://github.com/airbytehq/airbyte/blob/922bfd08a9182443599b78dbb273d70cb9f63d30/airbyte-protocol/models/src/main/resources/airbyte_protocol/airbyte_protocol.yaml#L129, it's `json_schema`. --- docs/understanding-airbyte/airbyte-specification.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/understanding-airbyte/airbyte-specification.md b/docs/understanding-airbyte/airbyte-specification.md index 0f6e1a110047..351613b03ef1 100644 --- a/docs/understanding-airbyte/airbyte-specification.md +++ b/docs/understanding-airbyte/airbyte-specification.md @@ -99,7 +99,7 @@ read(Config, ConfiguredAirbyteCatalog, State) -> Stream "streams": [ { "name": "users", - "schema": { + "json_schema": { "type": "object", "required": ["name"], "properties": { @@ -123,7 +123,7 @@ read(Config, ConfiguredAirbyteCatalog, State) -> Stream "streams": [ { "name": "customers", - "schema": { + "json_schema": { "type": "object", "required": ["name"], "properties": { @@ -135,7 +135,7 @@ read(Config, ConfiguredAirbyteCatalog, State) -> Stream }, { "name": "products", - "schema": { + "json_schema": { "type": "object", "required": ["name", "features"], "properties": {