@kaoto/camel-catalog 0.3.6 → 0.3.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (21) hide show
  1. package/dist/citrus-catalog/citrus/4.9.1/citrus-agent-configuration.json +118 -0
  2. package/dist/citrus-catalog/citrus/4.9.1/citrus-catalog-aggregate-endpoints.json +3210 -0
  3. package/dist/citrus-catalog/citrus/4.9.1/citrus-catalog-aggregate-functions.json +1069 -0
  4. package/dist/citrus-catalog/citrus/4.9.1/citrus-catalog-aggregate-test-actions.json +19185 -0
  5. package/dist/citrus-catalog/citrus/4.9.1/citrus-catalog-aggregate-test-containers.json +873 -0
  6. package/dist/citrus-catalog/citrus/4.9.1/citrus-catalog-aggregate-validation-matcher.json +464 -0
  7. package/dist/citrus-catalog/citrus/4.9.1/citrus-testcase.json +13872 -0
  8. package/dist/citrus-catalog/citrus/4.9.1/citrus-testcase.xsd +2970 -0
  9. package/dist/citrus-catalog/citrus/4.9.1/index.json +33 -0
  10. package/dist/citrus-catalog/citrus/citrus-agent-configuration.json +118 -0
  11. package/dist/citrus-catalog/citrus/citrus-catalog-aggregate-endpoints.json +3210 -0
  12. package/dist/citrus-catalog/citrus/citrus-catalog-aggregate-functions.json +1069 -0
  13. package/dist/citrus-catalog/citrus/citrus-catalog-aggregate-test-actions.json +19185 -0
  14. package/dist/citrus-catalog/citrus/citrus-catalog-aggregate-test-containers.json +873 -0
  15. package/dist/citrus-catalog/citrus/citrus-catalog-aggregate-validation-matcher.json +464 -0
  16. package/dist/citrus-catalog/citrus/citrus-testcase.json +13872 -0
  17. package/dist/citrus-catalog/citrus/citrus-testcase.xsd +2970 -0
  18. package/dist/citrus-catalog/citrus/index.json +33 -0
  19. package/dist/citrus-catalog/index.json +10 -0
  20. package/dist/types/catalog-index.d.ts +2 -2
  21. package/package.json +5 -3
@@ -0,0 +1,873 @@
1
+ {
2
+ "assert": {
3
+ "kind": "testContainer",
4
+ "name": "assert",
5
+ "title": "Assert",
6
+ "description": "Assert exception test action.",
7
+ "propertiesSchema": {
8
+ "$schema": "http://json-schema.org/draft-07/schema#",
9
+ "type": "object",
10
+ "properties": {
11
+ "description": {
12
+ "type": "string",
13
+ "title": "Description",
14
+ "description": "Test action description printed when the action is executed.",
15
+ "$comment": "group:advanced"
16
+ },
17
+ "exception": {
18
+ "type": "string",
19
+ "title": "Exception",
20
+ "description": "The type of the Java exception."
21
+ },
22
+ "message": {
23
+ "type": "string",
24
+ "title": "Message",
25
+ "description": "The expected exception message."
26
+ },
27
+ "when": {
28
+ "title": "When",
29
+ "description": "Nested test actions that raise the exception.",
30
+ "type": "array",
31
+ "items": {
32
+ "type": "object",
33
+ "title": "When",
34
+ "description": "Nested test actions that raise the exception."
35
+ }
36
+ }
37
+ },
38
+ "required": [
39
+ "when"
40
+ ]
41
+ }
42
+ },
43
+ "async": {
44
+ "kind": "testContainer",
45
+ "name": "async",
46
+ "title": "Async",
47
+ "description": "Async test action.",
48
+ "propertiesSchema": {
49
+ "$schema": "http://json-schema.org/draft-07/schema#",
50
+ "type": "object",
51
+ "properties": {
52
+ "actions": {
53
+ "title": "Actions",
54
+ "description": "Sequence of test actions to execute.",
55
+ "type": "array",
56
+ "items": {
57
+ "type": "object",
58
+ "title": "Actions",
59
+ "description": "Sequence of test actions to execute."
60
+ }
61
+ },
62
+ "description": {
63
+ "type": "string",
64
+ "title": "Description",
65
+ "description": "Test action description printed when the action is executed.",
66
+ "$comment": "group:advanced"
67
+ },
68
+ "error": {
69
+ "title": "Error",
70
+ "description": "Test actions executed when async container has failed.",
71
+ "$comment": "group:advanced",
72
+ "type": "array",
73
+ "items": {
74
+ "type": "object",
75
+ "title": "Error",
76
+ "description": "Test actions executed when async container has failed.",
77
+ "$comment": "group:advanced"
78
+ }
79
+ },
80
+ "success": {
81
+ "title": "Success",
82
+ "description": "Test actions executed when async container is successful.",
83
+ "$comment": "group:advanced",
84
+ "type": "array",
85
+ "items": {
86
+ "type": "object",
87
+ "title": "Success",
88
+ "description": "Test actions executed when async container is successful.",
89
+ "$comment": "group:advanced"
90
+ }
91
+ }
92
+ },
93
+ "required": [
94
+ "actions"
95
+ ]
96
+ }
97
+ },
98
+ "catch": {
99
+ "kind": "testContainer",
100
+ "name": "catch",
101
+ "title": "Catch",
102
+ "description": "Catch exception test action.",
103
+ "propertiesSchema": {
104
+ "$schema": "http://json-schema.org/draft-07/schema#",
105
+ "type": "object",
106
+ "properties": {
107
+ "description": {
108
+ "type": "string",
109
+ "title": "Description",
110
+ "description": "Test action description printed when the action is executed.",
111
+ "$comment": "group:advanced"
112
+ },
113
+ "exception": {
114
+ "type": "string",
115
+ "title": "Exception",
116
+ "description": "The exception type to catch."
117
+ },
118
+ "when": {
119
+ "title": "When",
120
+ "description": "Nested test actions that may raise an exception.",
121
+ "type": "array",
122
+ "items": {
123
+ "type": "object",
124
+ "title": "When",
125
+ "description": "Nested test actions that may raise an exception."
126
+ }
127
+ }
128
+ },
129
+ "required": [
130
+ "when"
131
+ ]
132
+ }
133
+ },
134
+ "conditional": {
135
+ "kind": "testContainer",
136
+ "name": "conditional",
137
+ "title": "Conditional",
138
+ "description": "Conditional test action.",
139
+ "propertiesSchema": {
140
+ "$schema": "http://json-schema.org/draft-07/schema#",
141
+ "type": "object",
142
+ "properties": {
143
+ "actions": {
144
+ "title": "Actions",
145
+ "description": "Test actions that get executed when the condition matches.",
146
+ "type": "array",
147
+ "items": {
148
+ "type": "object",
149
+ "title": "Actions",
150
+ "description": "Test actions that get executed when the condition matches."
151
+ }
152
+ },
153
+ "description": {
154
+ "type": "string",
155
+ "title": "Description",
156
+ "description": "Test action description printed when the action is executed.",
157
+ "$comment": "group:advanced"
158
+ },
159
+ "when": {
160
+ "type": "string",
161
+ "title": "When",
162
+ "description": "The condition to evaluate."
163
+ }
164
+ },
165
+ "required": [
166
+ "actions",
167
+ "when"
168
+ ]
169
+ }
170
+ },
171
+ "doFinally": {
172
+ "kind": "testContainer",
173
+ "name": "doFinally",
174
+ "title": "DoFinally",
175
+ "description": "Runs test actions after the test.",
176
+ "propertiesSchema": {
177
+ "$schema": "http://json-schema.org/draft-07/schema#",
178
+ "type": "object",
179
+ "properties": {
180
+ "actions": {
181
+ "title": "Actions",
182
+ "description": "Test actions to execute after the test.",
183
+ "type": "array",
184
+ "items": {
185
+ "type": "object",
186
+ "title": "Actions",
187
+ "description": "Test actions to execute after the test."
188
+ }
189
+ },
190
+ "description": {
191
+ "type": "string",
192
+ "title": "Description",
193
+ "description": "Test action description printed when the action is executed.",
194
+ "$comment": "group:advanced"
195
+ }
196
+ },
197
+ "required": [
198
+ "actions"
199
+ ]
200
+ }
201
+ },
202
+ "iterate": {
203
+ "kind": "testContainer",
204
+ "name": "iterate",
205
+ "title": "Iterate",
206
+ "description": "Iterate test action.",
207
+ "propertiesSchema": {
208
+ "$schema": "http://json-schema.org/draft-07/schema#",
209
+ "type": "object",
210
+ "properties": {
211
+ "actions": {
212
+ "title": "Actions",
213
+ "description": "Sequence of test actions to execute.",
214
+ "type": "array",
215
+ "items": {
216
+ "type": "object",
217
+ "title": "Actions",
218
+ "description": "Sequence of test actions to execute."
219
+ }
220
+ },
221
+ "condition": {
222
+ "type": "string",
223
+ "title": "Condition",
224
+ "description": "Condition that keeps the iteration running."
225
+ },
226
+ "description": {
227
+ "type": "string",
228
+ "title": "Description",
229
+ "description": "Test action description printed when the action is executed.",
230
+ "$comment": "group:advanced"
231
+ },
232
+ "index": {
233
+ "type": "string",
234
+ "title": "Index",
235
+ "description": "Test variable holding the current iteration index.",
236
+ "$comment": "group:advanced"
237
+ },
238
+ "startsWith": {
239
+ "type": "integer",
240
+ "title": "StartsWith",
241
+ "description": "Index starts with this value.",
242
+ "default": "1",
243
+ "$comment": "group:advanced"
244
+ },
245
+ "step": {
246
+ "type": "integer",
247
+ "title": "Step",
248
+ "description": "The step added to the index for each iteration.",
249
+ "default": "1",
250
+ "$comment": "group:advanced"
251
+ }
252
+ },
253
+ "required": [
254
+ "actions",
255
+ "condition"
256
+ ]
257
+ }
258
+ },
259
+ "parallel": {
260
+ "kind": "testContainer",
261
+ "name": "parallel",
262
+ "title": "Parallel",
263
+ "description": "Parallel test action.",
264
+ "propertiesSchema": {
265
+ "$schema": "http://json-schema.org/draft-07/schema#",
266
+ "type": "object",
267
+ "properties": {
268
+ "actions": {
269
+ "title": "Actions",
270
+ "description": "Test actions to execute.",
271
+ "type": "array",
272
+ "items": {
273
+ "type": "object",
274
+ "title": "Actions",
275
+ "description": "Test actions to execute."
276
+ }
277
+ },
278
+ "description": {
279
+ "type": "string",
280
+ "title": "Description",
281
+ "description": "Test action description printed when the action is executed.",
282
+ "$comment": "group:advanced"
283
+ }
284
+ },
285
+ "required": [
286
+ "actions"
287
+ ]
288
+ }
289
+ },
290
+ "repeat": {
291
+ "kind": "testContainer",
292
+ "name": "repeat",
293
+ "title": "Repeat",
294
+ "description": "Repeat test action.",
295
+ "propertiesSchema": {
296
+ "$schema": "http://json-schema.org/draft-07/schema#",
297
+ "type": "object",
298
+ "properties": {
299
+ "actions": {
300
+ "title": "Actions",
301
+ "description": "Sequence of test actions to execute.",
302
+ "type": "array",
303
+ "items": {
304
+ "type": "object",
305
+ "title": "Actions",
306
+ "description": "Sequence of test actions to execute."
307
+ }
308
+ },
309
+ "description": {
310
+ "type": "string",
311
+ "title": "Description",
312
+ "description": "Test action description printed when the action is executed.",
313
+ "$comment": "group:advanced"
314
+ },
315
+ "index": {
316
+ "type": "string",
317
+ "title": "Index",
318
+ "description": "Test variable holding the current iteration index.",
319
+ "$comment": "group:advanced"
320
+ },
321
+ "startsWith": {
322
+ "type": "integer",
323
+ "title": "StartsWith",
324
+ "description": "Index starts with this value.",
325
+ "default": "1",
326
+ "$comment": "group:advanced"
327
+ },
328
+ "until": {
329
+ "type": "string",
330
+ "title": "Until",
331
+ "description": "Condition that ends the iteration."
332
+ }
333
+ },
334
+ "required": [
335
+ "actions"
336
+ ]
337
+ }
338
+ },
339
+ "repeatOnError": {
340
+ "kind": "testContainer",
341
+ "name": "repeatOnError",
342
+ "title": "RepeatOnError",
343
+ "description": "Repeat on error test action.",
344
+ "propertiesSchema": {
345
+ "$schema": "http://json-schema.org/draft-07/schema#",
346
+ "type": "object",
347
+ "properties": {
348
+ "actions": {
349
+ "title": "Actions",
350
+ "description": "Sequence of test actions to execute.",
351
+ "type": "array",
352
+ "items": {
353
+ "type": "object",
354
+ "title": "Actions",
355
+ "description": "Sequence of test actions to execute."
356
+ }
357
+ },
358
+ "autoSleep": {
359
+ "type": "integer",
360
+ "title": "AutoSleep",
361
+ "description": "Automatically sleep the time in milliseconds with each attempt."
362
+ },
363
+ "description": {
364
+ "type": "string",
365
+ "title": "Description",
366
+ "description": "Test action description printed when the action is executed.",
367
+ "$comment": "group:advanced"
368
+ },
369
+ "index": {
370
+ "type": "string",
371
+ "title": "Index",
372
+ "description": "Test variable holding the current iteration index.",
373
+ "$comment": "group:advanced"
374
+ },
375
+ "startsWith": {
376
+ "type": "integer",
377
+ "title": "StartsWith",
378
+ "description": "Index starts with this value.",
379
+ "default": "1",
380
+ "$comment": "group:advanced"
381
+ },
382
+ "until": {
383
+ "type": "string",
384
+ "title": "Until",
385
+ "description": "Condition that ends the iteration."
386
+ }
387
+ },
388
+ "required": [
389
+ "actions"
390
+ ]
391
+ }
392
+ },
393
+ "sequential": {
394
+ "kind": "testContainer",
395
+ "name": "sequential",
396
+ "title": "Sequential",
397
+ "description": "Sequential test action.",
398
+ "propertiesSchema": {
399
+ "$schema": "http://json-schema.org/draft-07/schema#",
400
+ "type": "object",
401
+ "properties": {
402
+ "actions": {
403
+ "title": "Actions",
404
+ "description": "Sequence of test actions to execute.",
405
+ "type": "array",
406
+ "items": {
407
+ "type": "object",
408
+ "title": "Actions",
409
+ "description": "Sequence of test actions to execute."
410
+ }
411
+ },
412
+ "description": {
413
+ "type": "string",
414
+ "title": "Description",
415
+ "description": "Test action description printed when the action is executed.",
416
+ "$comment": "group:advanced"
417
+ }
418
+ },
419
+ "required": [
420
+ "actions"
421
+ ]
422
+ }
423
+ },
424
+ "soap-assertFault": {
425
+ "kind": "testContainer",
426
+ "name": "soap-assertFault",
427
+ "group": "soap",
428
+ "title": "AssertFault",
429
+ "description": "Expects a SOAP fault response as a client.",
430
+ "propertiesSchema": {
431
+ "$schema": "http://json-schema.org/draft-07/schema#",
432
+ "type": "object",
433
+ "properties": {
434
+ "attachments": {
435
+ "title": "Attachments",
436
+ "description": "List of SOAP attachments for this message.",
437
+ "$comment": "group:advanced",
438
+ "type": "array",
439
+ "items": {
440
+ "type": "object",
441
+ "properties": {
442
+ "charset": {
443
+ "type": "string",
444
+ "title": "Charset",
445
+ "description": "The SOAP attachment charset.",
446
+ "$comment": "group:advanced"
447
+ },
448
+ "content": {
449
+ "type": "string",
450
+ "title": "Content",
451
+ "description": "The SOAP attachment content."
452
+ },
453
+ "contentId": {
454
+ "type": "string",
455
+ "title": "ContentId",
456
+ "description": "The SOAP attachment content id."
457
+ },
458
+ "contentType": {
459
+ "type": "string",
460
+ "title": "ContentType",
461
+ "description": "The SOAP attachment content type"
462
+ },
463
+ "resource": {
464
+ "type": "string",
465
+ "title": "Resource",
466
+ "description": "The SOAP attachment content loaded from a file resource."
467
+ }
468
+ },
469
+ "title": "Attachments",
470
+ "description": "List of SOAP attachments for this message.",
471
+ "$comment": "group:advanced"
472
+ }
473
+ },
474
+ "body": {
475
+ "type": "object",
476
+ "properties": {
477
+ "data": {
478
+ },
479
+ "resource": {
480
+ },
481
+ "script": {
482
+ }
483
+ },
484
+ "anyOf": [
485
+ {
486
+ "oneOf": [
487
+ {
488
+ "type": "object",
489
+ "properties": {
490
+ "data": {
491
+ "type": "string",
492
+ "title": "Data",
493
+ "description": "The message body content."
494
+ }
495
+ },
496
+ "required": [
497
+ "data"
498
+ ]
499
+ },
500
+ {
501
+ "type": "object",
502
+ "properties": {
503
+ "resource": {
504
+ "type": "object",
505
+ "properties": {
506
+ "charset": {
507
+ "type": "string",
508
+ "title": "Charset",
509
+ "$comment": "group:advanced"
510
+ },
511
+ "file": {
512
+ "type": "string",
513
+ "title": "File"
514
+ }
515
+ },
516
+ "title": "Resource",
517
+ "description": "The message body loaded from a file resource."
518
+ }
519
+ },
520
+ "required": [
521
+ "resource"
522
+ ]
523
+ },
524
+ {
525
+ "type": "object",
526
+ "properties": {
527
+ "script": {
528
+ "type": "object",
529
+ "properties": {
530
+ "charset": {
531
+ "type": "string",
532
+ "title": "Charset",
533
+ "description": "The charset used to load the file resource.",
534
+ "$comment": "group:advanced"
535
+ },
536
+ "content": {
537
+ "type": "string",
538
+ "title": "Content",
539
+ "description": "The script content."
540
+ },
541
+ "file": {
542
+ "type": "string",
543
+ "title": "File",
544
+ "description": "The script content loaded as a file resource."
545
+ },
546
+ "type": {
547
+ "type": "string",
548
+ "title": "Type",
549
+ "description": "The script type.",
550
+ "default": "groovy"
551
+ }
552
+ },
553
+ "title": "Script",
554
+ "description": "The message body set via script."
555
+ }
556
+ },
557
+ "required": [
558
+ "script"
559
+ ]
560
+ }
561
+ ]
562
+ }
563
+ ],
564
+ "title": "Body",
565
+ "description": "The message body."
566
+ },
567
+ "contentType": {
568
+ "type": "string",
569
+ "title": "ContentType",
570
+ "description": "The SOAP response content type."
571
+ },
572
+ "dataDictionary": {
573
+ "type": "string",
574
+ "title": "DataDictionary",
575
+ "description": "Sets a data dictionary that transforms message content before it is being processed.",
576
+ "$comment": "group:dictionary"
577
+ },
578
+ "expression": {
579
+ "title": "Expression",
580
+ "description": "List of path expressions to evaluate on the message content before processing the message.",
581
+ "$comment": "group:advanced",
582
+ "type": "array",
583
+ "items": {
584
+ "type": "object",
585
+ "properties": {
586
+ "path": {
587
+ "type": "string",
588
+ "title": "Path",
589
+ "description": "The path expression to evaluate."
590
+ },
591
+ "value": {
592
+ "type": "string",
593
+ "title": "Value",
594
+ "description": "The expected expression result value."
595
+ }
596
+ },
597
+ "required": [
598
+ "path",
599
+ "value"
600
+ ],
601
+ "title": "Expression",
602
+ "description": "List of path expressions to evaluate on the message content before processing the message.",
603
+ "$comment": "group:advanced"
604
+ }
605
+ },
606
+ "faultActor": {
607
+ "type": "string",
608
+ "title": "FaultActor",
609
+ "description": "The SOAP fault actor.",
610
+ "$comment": "group:advanced"
611
+ },
612
+ "faultCode": {
613
+ "type": "string",
614
+ "title": "FaultCode",
615
+ "description": "The SOAP fault code."
616
+ },
617
+ "faultDetails": {
618
+ "title": "FaultDetails",
619
+ "description": "The SOAP fault details.",
620
+ "$comment": "group:advanced",
621
+ "type": "array",
622
+ "items": {
623
+ "type": "object",
624
+ "properties": {
625
+ "content": {
626
+ "type": "string",
627
+ "title": "Content",
628
+ "description": "The SOAP fault detail content."
629
+ },
630
+ "resource": {
631
+ "type": "string",
632
+ "title": "Resource",
633
+ "description": "The SOAP fault detail loaded from a file resource."
634
+ }
635
+ },
636
+ "title": "FaultDetails",
637
+ "description": "The SOAP fault details.",
638
+ "$comment": "group:advanced"
639
+ }
640
+ },
641
+ "faultString": {
642
+ "type": "string",
643
+ "title": "FaultString",
644
+ "description": "The SOAP fault string."
645
+ },
646
+ "headerIgnoreCase": {
647
+ "type": "string",
648
+ "title": "HeaderIgnoreCase",
649
+ "description": "When enabled the header case is not verified.",
650
+ "$comment": "group:advanced"
651
+ },
652
+ "headers": {
653
+ "title": "Headers",
654
+ "description": "The message headers.",
655
+ "type": "array",
656
+ "items": {
657
+ "type": "object",
658
+ "properties": {
659
+ "data": {
660
+ },
661
+ "name": {
662
+ "type": "string",
663
+ "title": "Name",
664
+ "description": "The message header name."
665
+ },
666
+ "resource": {
667
+ },
668
+ "type": {
669
+ "type": "string",
670
+ "title": "Type",
671
+ "description": "The message header type to create typed message headers.",
672
+ "$comment": "group:advanced"
673
+ },
674
+ "value": {
675
+ }
676
+ },
677
+ "anyOf": [
678
+ {
679
+ "oneOf": [
680
+ {
681
+ "type": "object",
682
+ "properties": {
683
+ "value": {
684
+ "type": "string",
685
+ "title": "Value",
686
+ "description": "The message header value."
687
+ }
688
+ },
689
+ "required": [
690
+ "value"
691
+ ]
692
+ },
693
+ {
694
+ "type": "object",
695
+ "properties": {
696
+ "resource": {
697
+ "type": "object",
698
+ "properties": {
699
+ "charset": {
700
+ "type": "string",
701
+ "title": "Charset",
702
+ "description": "Optional file resource charset used to read the file content.",
703
+ "$comment": "group:advanced"
704
+ },
705
+ "file": {
706
+ "type": "string",
707
+ "title": "File",
708
+ "description": "The file resource path."
709
+ }
710
+ },
711
+ "required": [
712
+ "file"
713
+ ],
714
+ "title": "Resource",
715
+ "description": "The header data loaded from a file resource."
716
+ }
717
+ },
718
+ "required": [
719
+ "resource"
720
+ ]
721
+ },
722
+ {
723
+ "type": "object",
724
+ "properties": {
725
+ "data": {
726
+ "type": "string",
727
+ "title": "Data",
728
+ "description": "The message header value as inline data."
729
+ }
730
+ },
731
+ "required": [
732
+ "data"
733
+ ]
734
+ }
735
+ ]
736
+ }
737
+ ],
738
+ "title": "Headers",
739
+ "description": "The message headers."
740
+ }
741
+ },
742
+ "name": {
743
+ "type": "string",
744
+ "title": "Name",
745
+ "description": "The message name. Named messages may be referenced in subsequent test steps."
746
+ },
747
+ "reasonPhrase": {
748
+ "type": "string",
749
+ "title": "ReasonPhrase",
750
+ "description": "The SOAP response reason phrase.",
751
+ "$comment": "group:advanced"
752
+ },
753
+ "schema": {
754
+ "type": "string",
755
+ "title": "Schema",
756
+ "description": "The reference to a schema in the bean registry that should be used for validation.",
757
+ "$comment": "group:schema"
758
+ },
759
+ "schemaRepository": {
760
+ "type": "string",
761
+ "title": "SchemaRepository",
762
+ "description": "The schema repository holding the schema.",
763
+ "$comment": "group:schema"
764
+ },
765
+ "schemaValidation": {
766
+ "type": "boolean",
767
+ "title": "SchemaValidation",
768
+ "description": "Enables the schema validation.",
769
+ "$comment": "group:schema"
770
+ },
771
+ "status": {
772
+ "type": "string",
773
+ "title": "Status",
774
+ "description": "The SOAP response status."
775
+ },
776
+ "type": {
777
+ "type": "string",
778
+ "title": "Type",
779
+ "description": "The message type. Gives the validator a hint which validatory are capable of performing proper message validation.",
780
+ "$comment": "group:advanced"
781
+ },
782
+ "validator": {
783
+ "type": "string",
784
+ "title": "Validator",
785
+ "description": "Explicit message validator.",
786
+ "$comment": "group:advanced"
787
+ },
788
+ "version": {
789
+ "type": "string",
790
+ "title": "Version",
791
+ "description": "The SOAP version.",
792
+ "$comment": "group:advanced"
793
+ },
794
+ "when": {
795
+ "type": "object",
796
+ "title": "When",
797
+ "description": "The test action raising the SOAP fault response message."
798
+ }
799
+ },
800
+ "required": [
801
+ "when"
802
+ ]
803
+ }
804
+ },
805
+ "timer": {
806
+ "kind": "testContainer",
807
+ "name": "timer",
808
+ "title": "Timer",
809
+ "description": "Timer test action.",
810
+ "propertiesSchema": {
811
+ "$schema": "http://json-schema.org/draft-07/schema#",
812
+ "type": "object",
813
+ "properties": {
814
+ "actions": {
815
+ "title": "Actions",
816
+ "description": "Sequence of test actions to execute.",
817
+ "type": "array",
818
+ "items": {
819
+ "type": "object",
820
+ "title": "Actions",
821
+ "description": "Sequence of test actions to execute."
822
+ }
823
+ },
824
+ "autoStop": {
825
+ "type": "boolean",
826
+ "title": "AutoStop",
827
+ "description": "Automatically stop the timer when the test is finished.",
828
+ "default": "true",
829
+ "$comment": "group:advanced"
830
+ },
831
+ "delay": {
832
+ "type": "integer",
833
+ "title": "Delay",
834
+ "description": "Initial delay to wait before starting the timer.",
835
+ "$comment": "group:advanced"
836
+ },
837
+ "description": {
838
+ "type": "string",
839
+ "title": "Description",
840
+ "description": "Test action description printed when the action is executed.",
841
+ "$comment": "group:advanced"
842
+ },
843
+ "fork": {
844
+ "type": "boolean",
845
+ "title": "Fork",
846
+ "description": "Do not block the test while the timer is running.",
847
+ "default": "false",
848
+ "$comment": "group:advanced"
849
+ },
850
+ "id": {
851
+ "type": "string",
852
+ "title": "Id",
853
+ "description": "The id of the timer."
854
+ },
855
+ "interval": {
856
+ "type": "integer",
857
+ "title": "Interval",
858
+ "description": "Timer interval in milliseconds.",
859
+ "default": "1000"
860
+ },
861
+ "repeatCount": {
862
+ "type": "integer",
863
+ "title": "RepeatCount",
864
+ "description": "Number of timer executions.",
865
+ "$comment": "group:advanced"
866
+ }
867
+ },
868
+ "required": [
869
+ "actions"
870
+ ]
871
+ }
872
+ }
873
+ }