-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmod_httapi.xsd
More file actions
614 lines (613 loc) · 39.7 KB
/
Copy pathmod_httapi.xsd
File metadata and controls
614 lines (613 loc) · 39.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" version="0.1">
<xs:element name="document">
<xs:annotation>
<xs:documentation>Contains all httapi XML data elements for the API.</xs:documentation>
<xs:documentation>Root Schema Element.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element name="params" maxOccurs="unbounded" minOccurs="0"/>
<xs:element name="variables" maxOccurs="unbounded" minOccurs="0"/>
<xs:element name="work">
<xs:complexType>
<xs:choice>
<xs:element name="playback" minOccurs="0">
<xs:annotation>
<xs:documentation>Plays a file and optionally collects input.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element ref="bind"/>
</xs:sequence>
<xs:attribute name="file" type="xs:string" use="required">
<xs:annotation>
<xs:documentation>The file</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="name" type="xs:string" use="optional">
<xs:annotation>
<xs:documentation>Parameter name into which to save result</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="error-file">
<xs:annotation>
<xs:documentation>Error file to play on invalid input</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:pattern
value="[http://|https://|/]{1}.*\.[(wav)|(mp3)]+"
/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="action" type="xs:string">
<xs:annotation>
<xs:documentation>Change the new target URL</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="temp-action" type="xs:string">
<xs:annotation>
<xs:documentation>Change URL to submit to, just for the next loop</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="digit-timeout" type="xs:positiveInteger">
<xs:annotation>
<xs:documentation>Pause to wait for digits after file plays (when input bindings are present)</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="input-timeout" type="xs:positiveInteger">
<xs:annotation>
<xs:documentation>Pause to wait for more digits in a multi-digit input</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="loops" type="xs:positiveInteger">
<xs:annotation>
<xs:documentation>Maximum number of times to play the file when input bindings are present</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="asr-engine" type="xs:string">
<xs:annotation>
<xs:documentation>Automatic speech recognition engine to use</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="asr-gramar" type="xs:string">
<xs:annotation>
<xs:documentation>ASR grammar to use</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="record" minOccurs="0">
<xs:annotation>
<xs:documentation>Records a file, optionally collecting input, then posts the file back to the target url.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element ref="bind"/>
</xs:sequence>
<xs:attribute name="file">
<xs:annotation>
<xs:documentation>The file</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="name">
<xs:annotation>
<xs:documentation>Parameter name into which to save result</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="error-file">
<xs:annotation>
<xs:documentation>Error file to play on invalid input</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="action">
<xs:annotation>
<xs:documentation>Change the new target URL</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="temp-action">
<xs:annotation>
<xs:documentation>Change url to submit to, just for the next loop</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="digit-timeout">
<xs:annotation>
<xs:documentation>Pause to wait for digits after file plays (when input bindings are present)</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="input-timeout">
<xs:annotation>
<xs:documentation>Pause to wait for more digits in a multi-digit input</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="pause" minOccurs="0">
<xs:annotation>
<xs:documentation>Waits for input for a specific amount of time</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element ref="bind"/>
</xs:sequence>
<xs:attribute name="milliseconds" type="xs:long">
<xs:annotation>
<xs:documentation>Numver of milliseconds to pause</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="name">
<xs:annotation>
<xs:documentation>Parameter name into which to save result</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="error-file">
<xs:annotation>
<xs:documentation>Error file to play on invalid input</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="action">
<xs:annotation>
<xs:documentation>Change url to submit to, just for the next loop</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="temp-action">
<xs:annotation>
<xs:documentation>Change url to submit to, just for the next loop</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="digit-timeout">
<xs:annotation>
<xs:documentation>Pause to wait for digits after file plays (when input bindings are present)</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="input-timeout">
<xs:annotation>
<xs:documentation>Pause to wait for more digits in a multi-digit input</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="loops">
<xs:annotation>
<xs:documentation>Maximum number of times to play the file when input bindings are present</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="speak" minOccurs="0">
<xs:annotation>
<xs:documentation>Read Text to Speech with optional inputs.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element ref="bind"/>
</xs:sequence>
<xs:attribute name="file">
<xs:annotation>
<xs:documentation>The file</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="name">
<xs:annotation>
<xs:documentation>Paramerter name into which to save result</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="error-file">
<xs:annotation>
<xs:documentation>Error file to play on invalid input</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="action">
<xs:annotation>
<xs:documentation>Change the new target url</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="temp-action">
<xs:annotation>
<xs:documentation>Change url to submit to, just for the next loop</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="digit-timeout">
<xs:annotation>
<xs:documentation>Pause to wait for digits after file plays (when input bindings are present)</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="input-timeout">
<xs:annotation>
<xs:documentation>Pause to wait for more digits in a multi-digit input</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="loops">
<xs:annotation>
<xs:documentation>Maximum number of times to play the file when input bdinings are present</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="engine">
<xs:annotation>
<xs:documentation>Text-to-speech engine to use</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="voice">
<xs:annotation>
<xs:documentation>tts voice to use</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="say" minOccurs="0">
<xs:annotation>
<xs:documentation>Use the FreeSWITCH 'say' engine to iterate sounds to simulate a human speaker.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element ref="bind"/>
</xs:sequence>
<xs:attribute name="file">
<xs:annotation>
<xs:documentation>The file</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="name">
<xs:annotation>
<xs:documentation>Parameter name into which to save result</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="error-file">
<xs:annotation>
<xs:documentation>Error file to play on invalid input</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="action">
<xs:annotation>
<xs:documentation>Change the new target url</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="temp-action">
<xs:annotation>
<xs:documentation>Change url to submit to, just for the next loop</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="digit-timeout">
<xs:annotation>
<xs:documentation>Pause to wait for digits after file plays (when input bindings are present)</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="input-timeout">
<xs:annotation>
<xs:documentation>Pause to wait for more digits in a multi-digit input</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="loops">
<xs:annotation>
<xs:documentation>Maximum number of times to play the file when input bindings are prsent</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="language">
<xs:annotation>
<xs:documentation>language to speak</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="type">
<xs:annotation>
<xs:documentation>type (fs param)</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="method">
<xs:annotation>
<xs:documentation>method (fs param)</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="gender">
<xs:annotation>
<xs:documentation>gender (fs param)</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="execute" minOccurs="0">
<xs:annotation>
<xs:documentation>Execute a FreeSWITCH app.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element ref="bind"/>
</xs:sequence>
<xs:attribute name="application">
<xs:annotation>
<xs:documentation>The app to run</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="action">
<xs:annotation>
<xs:documentation>Change the new target url</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="temp-action">
<xs:annotation>
<xs:documentation>Change url to submit to, just for the next loop</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="data">
<xs:annotation>
<xs:documentation>Alternative source for app data</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="sms" minOccurs="0">
<xs:annotation>
<xs:documentation>Send a SMS (Short Message Service) message.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element ref="bind"/>
</xs:sequence>
<xs:attribute name="to">
<xs:annotation>
<xs:documentation>The destination phone number</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="action">
<xs:annotation>
<xs:documentation>Change the new target url</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="temp-action">
<xs:annotation>
<xs:documentation>Change url to submit to, just for the next loop</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="dial" minOccurs="0">
<xs:annotation>
<xs:documentation>Place an outbound call or </xs:documentation>
</xs:annotation>
<xs:complexType mixed="true">
<xs:sequence>
<xs:element ref="bind"/>
</xs:sequence>
<xs:attribute name="context">
<xs:annotation>
<xs:documentation>Dialplan context.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="dialplan">
<xs:annotation>
<xs:documentation>Dialplan dialplan.</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="caller-id-name">
<xs:annotation>
<xs:documentation>Caller ID Name</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="caller-id-number">
<xs:annotation>
<xs:documentation>Caller ID Number</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="action">
<xs:annotation>
<xs:documentation>Change the new target url</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="temp-action">
<xs:annotation>
<xs:documentation>Change url to submit to, just for the next loop</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="recordCall" minOccurs="0">
<xs:annotation>
<xs:documentation>Begin recording the call audio. The file will be posted when the call ends.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element ref="bind"/>
</xs:sequence>
<xs:attribute name="limit" type="xs:long">
<xs:annotation>
<xs:documentation>Timeout in seconds</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="name">
<xs:annotation>
<xs:documentation>Name to use for input values</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="action">
<xs:annotation>
<xs:documentation>URL action to use</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="conference" minOccurs="0">
<xs:annotation>
<xs:documentation>Start a conference call.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element ref="bind"/>
</xs:sequence>
<xs:attribute name="profile">
<xs:annotation>
<xs:documentation>Conference profile to use</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="action">
<xs:annotation>
<xs:documentation>Change the new target url</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="hangup" minOccurs="0">
<xs:annotation>
<xs:documentation>Hangup the call.</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element ref="bind"/>
</xs:sequence>
<xs:attribute name="cause">
<xs:annotation>
<xs:documentation>Hangup cause</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="action">
<xs:annotation>
<xs:documentation>Change teh new target url</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="break" minOccurs="0">
<xs:annotation>
<xs:documentation>Exit the httapi applicaiton and contine in the dialplan</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element ref="bind"/>
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="log" minOccurs="0">
<xs:annotation>
<xs:documentation>Exit the httapi application and continue in the dialplan</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element ref="bind"/>
</xs:sequence>
<xs:attribute name="level">
<xs:annotation>
<xs:documentation>The log level to use</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="clean">
<xs:annotation>
<xs:documentation>If true do not print log prefix</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="action">
<xs:annotation>
<xs:documentation>Change the new target url</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="continue" minOccurs="0">
<xs:annotation>
<xs:documentation>Just continue (no-op).</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element ref="bind"/>
</xs:sequence>
<xs:attribute name="action">
<xs:annotation>
<xs:documentation>Change the new target url</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="getVar" minOccurs="0">
<xs:annotation>
<xs:documentation>Get a Channel variable (depends on permissions).</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element ref="bind"/>
</xs:sequence>
<xs:attribute name="action">
<xs:annotation>
<xs:documentation>Change the new target url</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="temp-action">
<xs:annotation>
<xs:documentation>Change url to submit to, just for the next loop</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="permanent">
<xs:annotation>
<xs:documentation>Add as a permanent param or just once</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
<xs:element name="voicemail" minOccurs="0">
<xs:annotation>
<xs:documentation>Check or record voice mail</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:sequence>
<xs:element ref="bind"/>
</xs:sequence>
<xs:attribute name="action">
<xs:annotation>
<xs:documentation>Change the new target url</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="temp-action">
<xs:annotation>
<xs:documentation>Change url to submit to, just for the next loop</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="check" type="xs:boolean" use="optional">
<xs:annotation>
<xs:documentation>true to check, omit to record a message for this mailbox</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="auth-only">
<xs:annotation>
<xs:documentation>authenticate only and continue</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="profile">
<xs:annotation>
<xs:documentation>profile to use, omit for default</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="domain">
<xs:annotation>
<xs:documentation>domain to use, omit for global domain variable</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="id">
<xs:annotation>
<xs:documentation>mailbox id to use, omit to prompt for id</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
</xs:choice>
</xs:complexType>
</xs:element>
</xs:sequence>
<xs:attribute fixed="xml/freeswitch-httapi" name="type" type="xs:string"/>
</xs:complexType>
</xs:element>
<xs:element name="bind">
<xs:annotation>
<xs:documentation>Several of the work tags that indicate they support bindings can contain one or more bind tags that function in similar fashion to bind_digit_action
Contains an expression</xs:documentation>
<xs:documentation>Srigg reported that multiple <bind strip=""/> tags are needed when you want it to post digits after the timeout expired (in fact, as many tags as the quantity of digits expected)</xs:documentation>
</xs:annotation>
<xs:complexType>
<xs:attribute name="action" type="xs:string">
<xs:annotation>
<xs:documentation>a specific url to go to next if the binding is dialed</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="strip" type="xs:string">
<xs:annotation>
<xs:documentation>a character to strip from the result string, such as #</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
</xs:element>
</xs:schema>