Skip to content

Commit

Permalink
adding more fields
Browse files Browse the repository at this point in the history
  • Loading branch information
Kyle Allan committed Jun 20, 2018
1 parent 1198579 commit 653e3de
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion tap_zendesk/schemas/tickets.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@
"integer"
]
},
"problem_id": {
"type": [
"null",
"integer"
]
},
"is_public": {
"type": [
"null",
Expand Down Expand Up @@ -167,6 +173,12 @@
"boolean"
]
},
"allow_attachments": {
"type": [
"null",
"boolean"
]
},
"due_at": {
"type": [
"null",
Expand Down Expand Up @@ -305,12 +317,15 @@
"id": {
"type": ["null", "integer"]
},
"assignee_id": {
"assignee_id": {
"type": ["null", "integer"]
},
"group_id": {
"type": ["null", "integer"]
},
"reason_id": {
"type": ["null", "integer"]
},
"requester_id": {
"type": ["null", "integer"]
},
Expand All @@ -330,6 +345,12 @@
},
"score": {
"type": ["null", "string"]
},
"reason": {
"type": ["null", "string"]
},
"comment": {
"type": ["null", "string"]
}
}
},
Expand Down

0 comments on commit 653e3de

Please sign in to comment.