Skip to content

Commit 23ef590

Browse files
authored
feat: rename schema to json-schema (#134)
1 parent 1ceab1e commit 23ef590

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

protocol-models/src/main/resources/airbyte_protocol/airbyte_protocol.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -610,15 +610,15 @@ definitions:
610610
required:
611611
- object_name
612612
- sync_mode
613-
- schema
613+
- json_schema
614614
properties:
615615
object_name:
616616
description: The name of the destination object.
617617
type: string
618618
sync_mode:
619619
description: The sync mode to be performed on the destination object.
620620
"$ref": "#/definitions/DestinationSyncMode"
621-
schema:
621+
json_schema:
622622
description: Stream schema using Json Schema specs.
623623
type: object
624624
existingJavaType: com.fasterxml.jackson.databind.JsonNode

protocol-models/src/main/resources/airbyte_protocol/v0/airbyte_protocol.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -613,15 +613,15 @@ definitions:
613613
required:
614614
- object_name
615615
- sync_mode
616-
- schema
616+
- json_schema
617617
properties:
618618
object_name:
619619
description: The name of the destination object.
620620
type: string
621621
sync_mode:
622622
description: The sync mode to be performed on the destination object.
623623
"$ref": "#/definitions/DestinationSyncMode"
624-
schema:
624+
json_schema:
625625
description: Stream schema using Json Schema specs.
626626
type: object
627627
existingJavaType: com.fasterxml.jackson.databind.JsonNode

0 commit comments

Comments
 (0)