forked from airbytehq/airbyte
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add breakingChange to catalogDiff (airbytehq#17588)
* Add breaking field to FieldTransform on catalogDiff
- Loading branch information
1 parent
85b1b67
commit ae92b06
Showing
14 changed files
with
246 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
60 changes: 60 additions & 0 deletions
60
airbyte-protocol/protocol-models/src/test/resources/breaking_change_schema.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
{ | ||
"type": "object", | ||
"properties": { | ||
"CAD": { "type": ["null", "number"] }, | ||
"HKD": { "type": ["null", "number"] }, | ||
"ISK": { "type": ["null", "number"] }, | ||
"PHP": { "type": ["null", "number"] }, | ||
"DKK": { "type": ["null", "number"] }, | ||
"HUF": { "type": ["null", "number"] }, | ||
"文": { "type": ["null", "number"] }, | ||
"something": { | ||
"type": ["null", "object"], | ||
"properties": { | ||
"somekey": { | ||
"type": ["null", "object"], | ||
"properties": { | ||
"nestedkey": { | ||
"type": ["null", "number"] | ||
} | ||
} | ||
} | ||
}, | ||
"patternProperties": { | ||
".+": {} | ||
} | ||
}, | ||
"something2": { | ||
"oneOf": [ | ||
{ | ||
"type": "object", | ||
"properties": { | ||
"oneOfOne": { | ||
"type": "string" | ||
} | ||
} | ||
}, | ||
{ | ||
"type": "object", | ||
"properties": { | ||
"oneOfTwo": { | ||
"type": "string" | ||
} | ||
} | ||
} | ||
] | ||
}, | ||
"someArray": { | ||
"type": ["array", "null"], | ||
"items": { | ||
"type": ["object", "null"], | ||
"properties": { | ||
"oldName": { | ||
"type": ["string", "null"], | ||
"maxLength": 100 | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
1 change: 1 addition & 0 deletions
1
airbyte-protocol/protocol-models/src/test/resources/valid_schema.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
airbyte-protocol/protocol-models/src/test/resources/valid_schema2.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.