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

🐛 Fix syntax errors in our specification docs (#9576)

This commit is contained in:
Tim Roes
2022-01-18 21:44:23 +01:00
committed by GitHub
parent 0187efd030
commit cbba9fa6da

View File

@@ -107,9 +107,7 @@ read(Config, ConfiguredAirbyteCatalog, State) -> Stream<AirbyteMessage>
"type": "string"
},
"age": {
"type": {
"number"
}
"type": "number"
}
}
}
@@ -150,8 +148,8 @@ read(Config, ConfiguredAirbyteCatalog, State) -> Stream<AirbyteMessage>
"type": "object",
"required": ["name", "productId"],
"properties": {
"name": "string",
"productId": "number"
"name": { "type": "string" },
"productId": { "type": "number" }
}
}
}