Skip to content

Commit

Permalink
Merge pull request #13 from singer-io/add-satisfaction-rating
Browse files Browse the repository at this point in the history
Add satisfaction rating
  • Loading branch information
KAllan357 authored Jun 20, 2018
2 parents a1f16c2 + 653e3de commit 4a45975
Showing 1 changed file with 58 additions and 0 deletions.
58 changes: 58 additions & 0 deletions 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 @@ -296,6 +308,52 @@
"integer"
]
},
"satisfaction_rating": {
"type": [
"null",
"object"
],
"properties": {
"id": {
"type": ["null", "integer"]
},
"assignee_id": {
"type": ["null", "integer"]
},
"group_id": {
"type": ["null", "integer"]
},
"reason_id": {
"type": ["null", "integer"]
},
"requester_id": {
"type": ["null", "integer"]
},
"ticket_id": {
"type": ["null", "integer"]
},
"updated_at": {
"type": ["null", "string"],
"format": "date-time"
},
"created_at": {
"type": ["null", "string"],
"format": "date-time"
},
"url": {
"type": ["null", "string"]
},
"score": {
"type": ["null", "string"]
},
"reason": {
"type": ["null", "string"]
},
"comment": {
"type": ["null", "string"]
}
}
},
"sharing_agreement_ids": {
"type": [
"null",
Expand Down

0 comments on commit 4a45975

Please sign in to comment.