Skip to content

Commit 1d20bbe

Browse files
committed
fix nullables in stream talk_calls
1 parent 91015f4 commit 1d20bbe

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tap_zendesk/schemas/talk_calls.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,11 +64,11 @@
6464
"enum": ["inbound", "outbound"]
6565
},
6666
"duration": {
67-
"type": ["integer"],
67+
"type": ["integer", "null"],
6868
"description": "Call duration in seconds"
6969
},
7070
"exceeded_queue_time": {
71-
"type": ["boolean"],
71+
"type": ["boolean", "null"],
7272
"description": "The customer exceeded the maximum queue wait time and did not speak with an agent"
7373
},
7474
"hold_time": {
@@ -103,7 +103,7 @@
103103
"description": "How long in seconds the customer spent in IVR. Null if IVR is disabled"
104104
},
105105
"minutes_billed": {
106-
"type": ["integer"],
106+
"type": ["integer", "null"],
107107
"description": "Minutes billed"
108108
},
109109
"not_recording_time": {

0 commit comments

Comments
 (0)