Skip to content

Commit b46b4dc

Browse files
committed
add description property to talk_phone_number stream
1 parent 657b45c commit b46b4dc

File tree

1 file changed

+39
-19
lines changed

1 file changed

+39
-19
lines changed

tap_zendesk/schemas/talk_phone_numbers.json

Lines changed: 39 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
"null",
1010
"object"
1111
],
12+
"description": "Whether a phone number has mms, sms, or voice capability",
1213
"properties": {
1314
"sms": {
1415
"type": [
@@ -35,47 +36,54 @@
3536
"type": [
3637
"null",
3738
"object"
38-
]
39+
],
40+
"description": "Greeting category ids and names"
3941
},
4042
"categorised_greetings_with_sub_settings": {
4143
"properties": { },
4244
"type": [
4345
"null",
4446
"object"
45-
]
47+
],
48+
"description": "The id and any settings associated with each greeting category. If the category has no settings, it defaults to the category name"
4649
},
4750
"country_code": {
4851
"type": [
4952
"null",
5053
"string"
51-
]
54+
],
55+
"description": "The ISO code of the country for this number"
5256
},
5357
"created_at": {
5458
"type": [
5559
"null",
5660
"string"
5761
],
58-
"format": "date-time"
62+
"format": "date-time",
63+
"description": "The date and time the phone number was created"
5964
},
6065
"default_greeting_ids": {
6166
"type": ["null", "array"],
6267
"items": {
6368
"type": [
6469
"string"
6570
]
66-
}
71+
},
72+
"description": "The names of default system greetings associated with the phone number"
6773
},
6874
"default_group_id": {
6975
"type": [
7076
"null",
7177
"integer"
72-
]
78+
],
79+
"description": "Default group id. *Writeable on most of the plans."
7380
},
7481
"display_number": {
7582
"type": [
7683
"null",
7784
"string"
78-
]
85+
],
86+
"description": "The formatted phone number"
7987
},
8088
"external": {
8189
"type": [
@@ -89,75 +97,87 @@
8997
"type": [
9098
"integer"
9199
]
92-
}
100+
},
101+
"description": "The external caller id number"
93102
},
94103
"group_ids": {
95104
"type": ["null", "array"],
96105
"items": {
97106
"type": [
98107
"integer"
99108
]
100-
}
109+
},
110+
"description": "An array of associated groups. *Writeable on most of plans."
101111
},
102112
"id": {
103113
"type": [
104114
"null",
105115
"integer"
106-
]
116+
],
117+
"description": "Automatically assigned upon creation"
107118
},
108119
"location": {
109120
"type": [
110121
"null",
111122
"string"
112-
]
123+
],
124+
"description": "The number's geographical location. For example, \"CA\" or \"Leeds\""
113125
},
114126
"name": {
115127
"type": [
116128
"null",
117129
"string"
118-
]
130+
],
131+
"description": "The nickname if one is set. Otherwise the display_number"
119132
},
120133
"nickname": {
121134
"type": [
122135
"null",
123136
"string"
124-
]
137+
],
138+
"description": "The nickname of the number if one is set"
125139
},
126140
"number": {
127141
"type": [
128142
"null",
129143
"string"
130-
]
144+
],
145+
"description": "The phone number digits"
131146
},
132147
"recorded": {
133148
"type": [
134149
"null",
135150
"boolean"
136-
]
151+
],
152+
"description": "Whether calls for the number are recorded or not"
137153
},
138154
"sms_group_id": {
139155
"type": [
140156
"null",
141157
"integer"
142-
]
158+
],
159+
"description": "The group associated with this phone number"
143160
},
144161
"token": {
145162
"type": [
146163
"null",
147164
"string"
148-
]
165+
],
166+
"description": "A generated token, unique for each phone number and used when provisioning the number. *Writeable on create only."
149167
},
150168
"toll_free": {
151169
"type": [
152170
"null",
153171
"boolean"
154-
]
172+
],
173+
"description": "Whether the number is toll-free or local"
155174
},
156175
"transcription": {
157176
"type": [
158177
"null",
159178
"boolean"
160-
]
179+
],
180+
"description": "Whether calls for the number are transcribed or not"
161181
}
162182
}
163183
}

0 commit comments

Comments
 (0)