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:
@@ -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": {
|
||||
|
||||
Reference in New Issue
Block a user