Skip to content

Commit

Permalink
🐛 Fix syntax errors in our specification docs (#9576)
Browse files Browse the repository at this point in the history
  • Loading branch information
timroes authored Jan 18, 2022
1 parent 0187efd commit cbba9fa
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions docs/understanding-airbyte/airbyte-specification.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,7 @@ read(Config, ConfiguredAirbyteCatalog, State) -> Stream<AirbyteMessage>
"type": "string"
},
"age": {
"type": {
"number"
}
"type": "number"
}
}
}
Expand Down Expand Up @@ -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" }
}
}
}
Expand Down

0 comments on commit cbba9fa

Please sign in to comment.