Skip to content

Commit

Permalink
fix nullables in stream talk_calls
Browse files Browse the repository at this point in the history
  • Loading branch information
leo-schick committed Sep 6, 2022
1 parent 91015f4 commit 1d20bbe
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tap_zendesk/schemas/talk_calls.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,11 @@
"enum": ["inbound", "outbound"]
},
"duration": {
"type": ["integer"],
"type": ["integer", "null"],
"description": "Call duration in seconds"
},
"exceeded_queue_time": {
"type": ["boolean"],
"type": ["boolean", "null"],
"description": "The customer exceeded the maximum queue wait time and did not speak with an agent"
},
"hold_time": {
Expand Down Expand Up @@ -103,7 +103,7 @@
"description": "How long in seconds the customer spent in IVR. Null if IVR is disabled"
},
"minutes_billed": {
"type": ["integer"],
"type": ["integer", "null"],
"description": "Minutes billed"
},
"not_recording_time": {
Expand Down

0 comments on commit 1d20bbe

Please sign in to comment.