Skip to content

Commit 7fd23cf

Browse files
authored
use anyOf in schema for first_won_time (singer-io#71)
1 parent 9efce54 commit 7fd23cf

File tree

1 file changed

+7
-2
lines changed
  • tap_pipedrive/schemas/recents/dynamic_typing

1 file changed

+7
-2
lines changed

tap_pipedrive/schemas/recents/dynamic_typing/deals.json

+7-2
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,13 @@
8585
"format": "date-time"
8686
},
8787
"first_won_time": {
88-
"type": ["string", "null"],
89-
"format": "date-time"
88+
"anyOf": [
89+
{
90+
"type": ["string", "null"],
91+
"format": "date-time"
92+
},
93+
{"type": ["string", "null"]}
94+
]
9095
},
9196
"lost_time": {
9297
"type": ["string", "null"],

0 commit comments

Comments
 (0)