diff --git a/docs/understanding-airbyte/airbyte-specification.md b/docs/understanding-airbyte/airbyte-specification.md index 545bb0460ba6..02726cf31e79 100644 --- a/docs/understanding-airbyte/airbyte-specification.md +++ b/docs/understanding-airbyte/airbyte-specification.md @@ -107,9 +107,7 @@ read(Config, ConfiguredAirbyteCatalog, State) -> Stream "type": "string" }, "age": { - "type": { - "number" - } + "type": "number" } } } @@ -150,8 +148,8 @@ read(Config, ConfiguredAirbyteCatalog, State) -> Stream "type": "object", "required": ["name", "productId"], "properties": { - "name": "string", - "productId": "number" + "name": { "type": "string" }, + "productId": { "type": "number" } } } }