Skip to content

Commit 1cb3193

Browse files
committed
make additional properties nullable
1 parent c8b4556 commit 1cb3193

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

tap_zendesk/schemas/archive/talk_availabilities.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@
22
"type": ["object"],
33
"properties": {
44
"agent_id": {
5-
"type": ["integer"]
5+
"type": [
6+
"integer",
7+
"null"
8+
]
69
},
710
"agent_state": {
811
"type": [

tap_zendesk/schemas/talk_calls.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"enum": ["queue", "web widget"]
3434
},
3535
"completion_status": {
36-
"type": ["string"],
36+
"type": ["string", "null"],
3737
"description": "Status of the call",
3838
"enum": ["completed", "abandoned_in_queue", "abandoned_in_ivr", "abandoned_in_voicemail", "abandoned_on_hold", "pending_voicemail"]
3939
},

0 commit comments

Comments
 (0)