Skip to content

Commit

Permalink
make additional properties nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
leo-schick committed Sep 8, 2022
1 parent c8b4556 commit 1cb3193
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion tap_zendesk/schemas/archive/talk_availabilities.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@
"type": ["object"],
"properties": {
"agent_id": {
"type": ["integer"]
"type": [
"integer",
"null"
]
},
"agent_state": {
"type": [
Expand Down
2 changes: 1 addition & 1 deletion tap_zendesk/schemas/talk_calls.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"enum": ["queue", "web widget"]
},
"completion_status": {
"type": ["string"],
"type": ["string", "null"],
"description": "Status of the call",
"enum": ["completed", "abandoned_in_queue", "abandoned_in_ivr", "abandoned_in_voicemail", "abandoned_on_hold", "pending_voicemail"]
},
Expand Down

0 comments on commit 1cb3193

Please sign in to comment.