@grexx/grexxlinter 0.2.444 → 0.2.549

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 (48) hide show
  1. package/cli.js +1 -1
  2. package/package.json +1 -1
  3. package/schemas/activity.behavior.json +986 -0
  4. package/schemas/activityAttribute.behavior.json +47 -0
  5. package/schemas/activityRight.behavior.json +8 -0
  6. package/schemas/agent.behavior.json +91 -0
  7. package/schemas/agentTool.behavior.json +58 -0
  8. package/schemas/attribute.behavior.json +868 -0
  9. package/schemas/casetype.behavior.json +269 -0
  10. package/schemas/catchBlock.behavior.json +30 -0
  11. package/schemas/container.behavior.json +16 -0
  12. package/schemas/customThrow.behavior.json +30 -0
  13. package/schemas/dataRetentionProfile.behavior.json +306 -0
  14. package/schemas/dataset.behavior.json +409 -0
  15. package/schemas/datasetColumn.behavior.json +629 -0
  16. package/schemas/datasetCondition.behavior.json +361 -0
  17. package/schemas/datasetRight.behavior.json +8 -0
  18. package/schemas/datasource.behavior.json +8 -0
  19. package/schemas/directRole.behavior.json +59 -0
  20. package/schemas/fileUploadProfile.behavior.json +5 -0
  21. package/schemas/forEach.behavior.json +116 -0
  22. package/schemas/formAction.behavior.json +273 -0
  23. package/schemas/formActionAi.behavior.json +52 -0
  24. package/schemas/formRight.behavior.json +8 -0
  25. package/schemas/formfield.behavior.json +1053 -0
  26. package/schemas/indirectRole.behavior.json +59 -0
  27. package/schemas/llmModel.behavior.json +8 -0
  28. package/schemas/mapping.behavior.json +216 -0
  29. package/schemas/menuItem.behavior.json +221 -0
  30. package/schemas/metadata.behavior.json +128 -0
  31. package/schemas/navigation.behavior.json +33 -0
  32. package/schemas/picklist.behavior.json +58 -0
  33. package/schemas/platformAttribute.behavior.json +377 -0
  34. package/schemas/platformRole.behavior.json +130 -0
  35. package/schemas/pluginLibrary.behavior.json +8 -0
  36. package/schemas/requestContext.behavior.json +100 -0
  37. package/schemas/roleName.behavior.json +5 -0
  38. package/schemas/securityProfile.behavior.json +8 -0
  39. package/schemas/securityRequirement.behavior.json +5 -0
  40. package/schemas/simpleCondition.behavior.json +319 -0
  41. package/schemas/taskQueue.behavior.json +5 -0
  42. package/schemas/template.behavior.json +5 -0
  43. package/schemas/trigger.behavior.json +598 -0
  44. package/schemas/tryBlock.behavior.json +30 -0
  45. package/schemas/view.behavior.json +159 -0
  46. package/schemas/while.behavior.json +30 -0
  47. package/schemas/widget.behavior.json +1238 -0
  48. package/schemas/widgetRight.behavior.json +8 -0
@@ -0,0 +1,986 @@
1
+ {
2
+ "aiAgent": {
3
+ "baseline": "MUST_NOT",
4
+ "requiredWhen": [
5
+ {
6
+ "op": "cmp",
7
+ "field": "type",
8
+ "fieldName": "Type",
9
+ "operator": "==",
10
+ "value": "agent",
11
+ "valueIsField": false,
12
+ "isEmpty": false
13
+ }
14
+ ],
15
+ "enabledWhen": [
16
+ {
17
+ "op": "cmp",
18
+ "field": "type",
19
+ "fieldName": "Type",
20
+ "operator": "==",
21
+ "value": "agent",
22
+ "valueIsField": false,
23
+ "isEmpty": false
24
+ }
25
+ ]
26
+ },
27
+ "allowOnFinishedCase": {
28
+ "baseline": "MAY",
29
+ "clearWhen": [
30
+ {
31
+ "op": "cmp",
32
+ "field": "processBlockType",
33
+ "fieldName": "Process block type",
34
+ "operator": "!=",
35
+ "value": "reopen-case",
36
+ "valueIsField": false,
37
+ "isEmpty": false
38
+ }
39
+ ]
40
+ },
41
+ "allowSubmitAndReopen": {
42
+ "baseline": "MUST_NOT",
43
+ "enabledWhen": [
44
+ {
45
+ "op": "cmp",
46
+ "field": "type",
47
+ "fieldName": "Type",
48
+ "operator": "==",
49
+ "value": "casetype",
50
+ "valueIsField": false,
51
+ "isEmpty": false
52
+ },
53
+ {
54
+ "op": "cmp",
55
+ "field": "type",
56
+ "fieldName": "Type",
57
+ "operator": "==",
58
+ "value": "form",
59
+ "valueIsField": false,
60
+ "isEmpty": false
61
+ }
62
+ ]
63
+ },
64
+ "newCaseAlternativeStartActivity": {
65
+ "baseline": "MUST_NOT",
66
+ "enabledWhen": [
67
+ {
68
+ "op": "and",
69
+ "items": [
70
+ {
71
+ "op": "cmp",
72
+ "field": "casetype",
73
+ "fieldName": "Casetype",
74
+ "operator": "!==",
75
+ "value": "",
76
+ "valueIsField": false,
77
+ "isEmpty": true
78
+ },
79
+ {
80
+ "op": "cmp",
81
+ "field": "type",
82
+ "fieldName": "Type",
83
+ "operator": "==",
84
+ "value": "casetype",
85
+ "valueIsField": false,
86
+ "isEmpty": false
87
+ }
88
+ ]
89
+ },
90
+ {
91
+ "op": "cmp",
92
+ "field": "type",
93
+ "fieldName": "Type",
94
+ "operator": "==",
95
+ "value": "casetype",
96
+ "valueIsField": false,
97
+ "isEmpty": false
98
+ }
99
+ ]
100
+ },
101
+ "autoMapFromLocal": {
102
+ "baseline": "MUST_NOT",
103
+ "enabledWhen": [
104
+ {
105
+ "op": "cmp",
106
+ "field": "type",
107
+ "fieldName": "Type",
108
+ "operator": "==",
109
+ "value": "casetype",
110
+ "valueIsField": false,
111
+ "isEmpty": false
112
+ },
113
+ {
114
+ "op": "cmp",
115
+ "field": "type",
116
+ "fieldName": "Type",
117
+ "operator": "==",
118
+ "value": "form",
119
+ "valueIsField": false,
120
+ "isEmpty": false
121
+ }
122
+ ],
123
+ "clearWhen": [
124
+ {
125
+ "op": "cmp",
126
+ "field": "type",
127
+ "fieldName": "Type",
128
+ "operator": "==",
129
+ "value": "event",
130
+ "valueIsField": false,
131
+ "isEmpty": false
132
+ },
133
+ {
134
+ "op": "cmp",
135
+ "field": "type",
136
+ "fieldName": "Type",
137
+ "operator": "!=",
138
+ "value": "form",
139
+ "valueIsField": false,
140
+ "isEmpty": false
141
+ }
142
+ ]
143
+ },
144
+ "autoMapToLocal": {
145
+ "baseline": "MUST_NOT",
146
+ "enabledWhen": [
147
+ {
148
+ "op": "cmp",
149
+ "field": "type",
150
+ "fieldName": "Type",
151
+ "operator": "==",
152
+ "value": "casetype",
153
+ "valueIsField": false,
154
+ "isEmpty": false
155
+ },
156
+ {
157
+ "op": "cmp",
158
+ "field": "type",
159
+ "fieldName": "Type",
160
+ "operator": "==",
161
+ "value": "form",
162
+ "valueIsField": false,
163
+ "isEmpty": false
164
+ }
165
+ ],
166
+ "clearWhen": [
167
+ {
168
+ "op": "cmp",
169
+ "field": "type",
170
+ "fieldName": "Type",
171
+ "operator": "==",
172
+ "value": "event",
173
+ "valueIsField": false,
174
+ "isEmpty": false
175
+ },
176
+ {
177
+ "op": "cmp",
178
+ "field": "type",
179
+ "fieldName": "Type",
180
+ "operator": "!=",
181
+ "value": "form",
182
+ "valueIsField": false,
183
+ "isEmpty": false
184
+ }
185
+ ]
186
+ },
187
+ "captchaTheme": {
188
+ "baseline": "MAY",
189
+ "enabledWhen": [
190
+ {
191
+ "op": "and",
192
+ "items": [
193
+ {
194
+ "op": "cmp",
195
+ "field": null,
196
+ "fieldName": "Captcha Theme (Picklist)",
197
+ "operator": "===",
198
+ "value": "",
199
+ "valueIsField": false,
200
+ "isEmpty": true
201
+ },
202
+ {
203
+ "op": "cmp",
204
+ "field": "captchaType",
205
+ "fieldName": "Captcha Type",
206
+ "operator": "!=",
207
+ "value": "invisible",
208
+ "valueIsField": false,
209
+ "isEmpty": false
210
+ },
211
+ {
212
+ "op": "cmp",
213
+ "field": "captchaType",
214
+ "fieldName": "Captcha Type",
215
+ "operator": "!=",
216
+ "value": "",
217
+ "valueIsField": false,
218
+ "isEmpty": true
219
+ }
220
+ ]
221
+ }
222
+ ]
223
+ },
224
+ "jumpToCaseCase": {
225
+ "baseline": "MUST_NOT",
226
+ "enabledWhen": [
227
+ {
228
+ "op": "cmp",
229
+ "field": "jumpToCase",
230
+ "fieldName": "Jump to case",
231
+ "operator": "==",
232
+ "value": "true",
233
+ "valueIsField": false,
234
+ "isEmpty": false
235
+ }
236
+ ]
237
+ },
238
+ "caseViewJumpToCase": {
239
+ "baseline": "MUST_NOT",
240
+ "enabledWhen": [
241
+ {
242
+ "op": "cmp",
243
+ "field": "jumpToCase",
244
+ "fieldName": "Jump to case",
245
+ "operator": "==",
246
+ "value": "true",
247
+ "valueIsField": false,
248
+ "isEmpty": false
249
+ }
250
+ ]
251
+ },
252
+ "casetype": {
253
+ "baseline": "MUST_NOT",
254
+ "requiredWhen": [
255
+ {
256
+ "op": "cmp",
257
+ "field": "type",
258
+ "fieldName": "Type",
259
+ "operator": "==",
260
+ "value": "casetype",
261
+ "valueIsField": false,
262
+ "isEmpty": false
263
+ }
264
+ ],
265
+ "enabledWhen": [
266
+ {
267
+ "op": "cmp",
268
+ "field": "type",
269
+ "fieldName": "Type",
270
+ "operator": "==",
271
+ "value": "casetype",
272
+ "valueIsField": false,
273
+ "isEmpty": false
274
+ }
275
+ ]
276
+ },
277
+ "deadline": {
278
+ "baseline": "MAY",
279
+ "enabledWhen": [
280
+ {
281
+ "op": "cmp",
282
+ "field": "type",
283
+ "fieldName": "Type",
284
+ "operator": "==",
285
+ "value": "casetype",
286
+ "valueIsField": false,
287
+ "isEmpty": false
288
+ },
289
+ {
290
+ "op": "cmp",
291
+ "field": "type",
292
+ "fieldName": "Type",
293
+ "operator": "==",
294
+ "value": "form",
295
+ "valueIsField": false,
296
+ "isEmpty": false
297
+ },
298
+ {
299
+ "op": "cmp",
300
+ "field": "type",
301
+ "fieldName": "Type",
302
+ "operator": "==",
303
+ "value": "multitask",
304
+ "valueIsField": false,
305
+ "isEmpty": false
306
+ },
307
+ {
308
+ "op": "cmp",
309
+ "field": "type",
310
+ "fieldName": "Type",
311
+ "operator": "==",
312
+ "value": "processblock",
313
+ "valueIsField": false,
314
+ "isEmpty": false
315
+ }
316
+ ]
317
+ },
318
+ "eventConsumerKey": {
319
+ "baseline": "MUST_NOT",
320
+ "requiredWhen": [
321
+ {
322
+ "op": "cmp",
323
+ "field": "eventType",
324
+ "fieldName": "Event type",
325
+ "operator": "==",
326
+ "value": "9",
327
+ "valueIsField": false,
328
+ "isEmpty": false
329
+ }
330
+ ],
331
+ "enabledWhen": [
332
+ {
333
+ "op": "cmp",
334
+ "field": "eventType",
335
+ "fieldName": "Event type",
336
+ "operator": "==",
337
+ "value": "9",
338
+ "valueIsField": false,
339
+ "isEmpty": false
340
+ }
341
+ ]
342
+ },
343
+ "eventPubliserKey": {
344
+ "baseline": "MUST_NOT",
345
+ "requiredWhen": [
346
+ {
347
+ "op": "cmp",
348
+ "field": "type",
349
+ "fieldName": "Type",
350
+ "operator": "==",
351
+ "value": "publishevent",
352
+ "valueIsField": false,
353
+ "isEmpty": false
354
+ }
355
+ ],
356
+ "enabledWhen": [
357
+ {
358
+ "op": "cmp",
359
+ "field": "type",
360
+ "fieldName": "Type",
361
+ "operator": "==",
362
+ "value": "publishevent",
363
+ "valueIsField": false,
364
+ "isEmpty": false
365
+ }
366
+ ]
367
+ },
368
+ "eventType": {
369
+ "baseline": "MUST_NOT",
370
+ "requiredWhen": [
371
+ {
372
+ "op": "cmp",
373
+ "field": "type",
374
+ "fieldName": "Type",
375
+ "operator": "==",
376
+ "value": "event",
377
+ "valueIsField": false,
378
+ "isEmpty": false
379
+ }
380
+ ],
381
+ "enabledWhen": [
382
+ {
383
+ "op": "cmp",
384
+ "field": "type",
385
+ "fieldName": "Type",
386
+ "operator": "==",
387
+ "value": "event",
388
+ "valueIsField": false,
389
+ "isEmpty": false
390
+ }
391
+ ]
392
+ },
393
+ "form": {
394
+ "baseline": "MUST_NOT",
395
+ "requiredWhen": [
396
+ {
397
+ "op": "cmp",
398
+ "field": "eventType",
399
+ "fieldName": "Event type",
400
+ "operator": "==",
401
+ "value": "9",
402
+ "valueIsField": false,
403
+ "isEmpty": false
404
+ },
405
+ {
406
+ "op": "cmp",
407
+ "field": "type",
408
+ "fieldName": "Type",
409
+ "operator": "==",
410
+ "value": "publishevent",
411
+ "valueIsField": false,
412
+ "isEmpty": false
413
+ }
414
+ ],
415
+ "enabledWhen": [
416
+ {
417
+ "op": "cmp",
418
+ "field": "eventType",
419
+ "fieldName": "Event type",
420
+ "operator": "==",
421
+ "value": "9",
422
+ "valueIsField": false,
423
+ "isEmpty": false
424
+ },
425
+ {
426
+ "op": "cmp",
427
+ "field": "type",
428
+ "fieldName": "Type",
429
+ "operator": "==",
430
+ "value": "publishevent",
431
+ "valueIsField": false,
432
+ "isEmpty": false
433
+ },
434
+ {
435
+ "op": "cmp",
436
+ "field": "type",
437
+ "fieldName": "Type",
438
+ "operator": "==",
439
+ "value": "form",
440
+ "valueIsField": false,
441
+ "isEmpty": false
442
+ },
443
+ {
444
+ "op": "cmp",
445
+ "field": "type",
446
+ "fieldName": "Type",
447
+ "operator": "==",
448
+ "value": "multitask",
449
+ "valueIsField": false,
450
+ "isEmpty": false
451
+ }
452
+ ]
453
+ },
454
+ "jumpToCase": {
455
+ "baseline": "MUST_NOT",
456
+ "enabledWhen": [
457
+ {
458
+ "op": "cmp",
459
+ "field": "type",
460
+ "fieldName": "Type",
461
+ "operator": "==",
462
+ "value": "casetype",
463
+ "valueIsField": false,
464
+ "isEmpty": false
465
+ },
466
+ {
467
+ "op": "cmp",
468
+ "field": "type",
469
+ "fieldName": "Type",
470
+ "operator": "==",
471
+ "value": "form",
472
+ "valueIsField": false,
473
+ "isEmpty": false
474
+ }
475
+ ]
476
+ },
477
+ "multitaskDataset": {
478
+ "baseline": "MAY",
479
+ "requiredWhen": [
480
+ {
481
+ "op": "cmp",
482
+ "field": null,
483
+ "fieldName": "Multitask - Type tasks",
484
+ "operator": "==",
485
+ "value": "cases",
486
+ "valueIsField": false,
487
+ "isEmpty": false
488
+ },
489
+ {
490
+ "op": "cmp",
491
+ "field": null,
492
+ "fieldName": "Multitask - Type tasks",
493
+ "operator": "==",
494
+ "value": "mandatoryTasks",
495
+ "valueIsField": false,
496
+ "isEmpty": false
497
+ },
498
+ {
499
+ "op": "cmp",
500
+ "field": null,
501
+ "fieldName": "Multitask - Type tasks",
502
+ "operator": "==",
503
+ "value": "optionalTasks",
504
+ "valueIsField": false,
505
+ "isEmpty": false
506
+ }
507
+ ],
508
+ "enabledWhen": [
509
+ {
510
+ "op": "cmp",
511
+ "field": null,
512
+ "fieldName": "Multitask - Type tasks",
513
+ "operator": "==",
514
+ "value": "cases",
515
+ "valueIsField": false,
516
+ "isEmpty": false
517
+ },
518
+ {
519
+ "op": "cmp",
520
+ "field": null,
521
+ "fieldName": "Multitask - Type tasks",
522
+ "operator": "==",
523
+ "value": "mandatoryTasks",
524
+ "valueIsField": false,
525
+ "isEmpty": false
526
+ },
527
+ {
528
+ "op": "cmp",
529
+ "field": null,
530
+ "fieldName": "Multitask - Type tasks",
531
+ "operator": "==",
532
+ "value": "optionalTasks",
533
+ "valueIsField": false,
534
+ "isEmpty": false
535
+ }
536
+ ]
537
+ },
538
+ "multitaskType": {
539
+ "baseline": "MAY",
540
+ "enabledWhen": [
541
+ {
542
+ "op": "and",
543
+ "items": [
544
+ {
545
+ "op": "cmp",
546
+ "field": null,
547
+ "fieldName": "Multitask - Type tasks",
548
+ "operator": "!==",
549
+ "value": "",
550
+ "valueIsField": false,
551
+ "isEmpty": true
552
+ },
553
+ {
554
+ "op": "cmp",
555
+ "field": "type",
556
+ "fieldName": "Type",
557
+ "operator": "==",
558
+ "value": "multitask",
559
+ "valueIsField": false,
560
+ "isEmpty": false
561
+ }
562
+ ]
563
+ }
564
+ ]
565
+ },
566
+ "multitaskTag": {
567
+ "baseline": "MAY",
568
+ "requiredWhen": [
569
+ {
570
+ "op": "cmp",
571
+ "field": null,
572
+ "fieldName": "Multitask - Type tasks",
573
+ "operator": "==",
574
+ "value": "cases",
575
+ "valueIsField": false,
576
+ "isEmpty": false
577
+ }
578
+ ],
579
+ "enabledWhen": [
580
+ {
581
+ "op": "cmp",
582
+ "field": null,
583
+ "fieldName": "Multitask - Type tasks",
584
+ "operator": "==",
585
+ "value": "cases",
586
+ "valueIsField": false,
587
+ "isEmpty": false
588
+ }
589
+ ]
590
+ },
591
+ "joinN": {
592
+ "baseline": "MUST_NOT",
593
+ "requiredWhen": [
594
+ {
595
+ "op": "cmp",
596
+ "field": "processBlockType",
597
+ "fieldName": "Process block type",
598
+ "operator": "==",
599
+ "value": "n-join",
600
+ "valueIsField": false,
601
+ "isEmpty": false
602
+ }
603
+ ],
604
+ "enabledWhen": [
605
+ {
606
+ "op": "cmp",
607
+ "field": "processBlockType",
608
+ "fieldName": "Process block type",
609
+ "operator": "==",
610
+ "value": "n-join",
611
+ "valueIsField": false,
612
+ "isEmpty": false
613
+ }
614
+ ]
615
+ },
616
+ "processBlockType": {
617
+ "baseline": "MUST_NOT",
618
+ "requiredWhen": [
619
+ {
620
+ "op": "cmp",
621
+ "field": "type",
622
+ "fieldName": "Type",
623
+ "operator": "==",
624
+ "value": "processblock",
625
+ "valueIsField": false,
626
+ "isEmpty": false
627
+ }
628
+ ],
629
+ "enabledWhen": [
630
+ {
631
+ "op": "cmp",
632
+ "field": "type",
633
+ "fieldName": "Type",
634
+ "operator": "==",
635
+ "value": "processblock",
636
+ "valueIsField": false,
637
+ "isEmpty": false
638
+ }
639
+ ]
640
+ },
641
+ "queue": {
642
+ "baseline": "MUST_NOT",
643
+ "requiredWhen": [
644
+ {
645
+ "op": "or",
646
+ "items": [
647
+ {
648
+ "op": "cmp",
649
+ "field": "eventType",
650
+ "fieldName": "Event type",
651
+ "operator": "==",
652
+ "value": "6",
653
+ "valueIsField": false,
654
+ "isEmpty": false
655
+ },
656
+ {
657
+ "op": "cmp",
658
+ "field": "eventType",
659
+ "fieldName": "Event type",
660
+ "operator": "==",
661
+ "value": "9",
662
+ "valueIsField": false,
663
+ "isEmpty": false
664
+ },
665
+ {
666
+ "op": "cmp",
667
+ "field": "eventType",
668
+ "fieldName": "Event type",
669
+ "operator": "==",
670
+ "value": "queuedTask",
671
+ "valueIsField": false,
672
+ "isEmpty": false
673
+ }
674
+ ]
675
+ },
676
+ {
677
+ "op": "or",
678
+ "items": [
679
+ {
680
+ "op": "cmp",
681
+ "field": "eventType",
682
+ "fieldName": "Event type",
683
+ "operator": "==",
684
+ "value": "6",
685
+ "valueIsField": false,
686
+ "isEmpty": false
687
+ },
688
+ {
689
+ "op": "cmp",
690
+ "field": "eventType",
691
+ "fieldName": "Event type",
692
+ "operator": "==",
693
+ "value": "queuedTask",
694
+ "valueIsField": false,
695
+ "isEmpty": false
696
+ }
697
+ ]
698
+ },
699
+ {
700
+ "op": "cmp",
701
+ "field": "eventType",
702
+ "fieldName": "Event type",
703
+ "operator": "==",
704
+ "value": "9",
705
+ "valueIsField": false,
706
+ "isEmpty": false
707
+ }
708
+ ],
709
+ "enabledWhen": [
710
+ {
711
+ "op": "or",
712
+ "items": [
713
+ {
714
+ "op": "cmp",
715
+ "field": "eventType",
716
+ "fieldName": "Event type",
717
+ "operator": "==",
718
+ "value": "6",
719
+ "valueIsField": false,
720
+ "isEmpty": false
721
+ },
722
+ {
723
+ "op": "cmp",
724
+ "field": "eventType",
725
+ "fieldName": "Event type",
726
+ "operator": "==",
727
+ "value": "9",
728
+ "valueIsField": false,
729
+ "isEmpty": false
730
+ },
731
+ {
732
+ "op": "cmp",
733
+ "field": "eventType",
734
+ "fieldName": "Event type",
735
+ "operator": "==",
736
+ "value": "queuedTask",
737
+ "valueIsField": false,
738
+ "isEmpty": false
739
+ }
740
+ ]
741
+ },
742
+ {
743
+ "op": "or",
744
+ "items": [
745
+ {
746
+ "op": "cmp",
747
+ "field": "eventType",
748
+ "fieldName": "Event type",
749
+ "operator": "==",
750
+ "value": "6",
751
+ "valueIsField": false,
752
+ "isEmpty": false
753
+ },
754
+ {
755
+ "op": "cmp",
756
+ "field": "eventType",
757
+ "fieldName": "Event type",
758
+ "operator": "==",
759
+ "value": "queuedTask",
760
+ "valueIsField": false,
761
+ "isEmpty": false
762
+ }
763
+ ]
764
+ },
765
+ {
766
+ "op": "cmp",
767
+ "field": "eventType",
768
+ "fieldName": "Event type",
769
+ "operator": "==",
770
+ "value": "9",
771
+ "valueIsField": false,
772
+ "isEmpty": false
773
+ }
774
+ ]
775
+ },
776
+ "queueCase": {
777
+ "baseline": "MUST_NOT",
778
+ "enabledWhen": [
779
+ {
780
+ "op": "or",
781
+ "items": [
782
+ {
783
+ "op": "cmp",
784
+ "field": "eventType",
785
+ "fieldName": "Event type",
786
+ "operator": "==",
787
+ "value": "6",
788
+ "valueIsField": false,
789
+ "isEmpty": false
790
+ },
791
+ {
792
+ "op": "cmp",
793
+ "field": "eventType",
794
+ "fieldName": "Event type",
795
+ "operator": "==",
796
+ "value": "9",
797
+ "valueIsField": false,
798
+ "isEmpty": false
799
+ },
800
+ {
801
+ "op": "cmp",
802
+ "field": "eventType",
803
+ "fieldName": "Event type",
804
+ "operator": "==",
805
+ "value": "queuedTask",
806
+ "valueIsField": false,
807
+ "isEmpty": false
808
+ }
809
+ ]
810
+ },
811
+ {
812
+ "op": "or",
813
+ "items": [
814
+ {
815
+ "op": "cmp",
816
+ "field": "eventType",
817
+ "fieldName": "Event type",
818
+ "operator": "==",
819
+ "value": "6",
820
+ "valueIsField": false,
821
+ "isEmpty": false
822
+ },
823
+ {
824
+ "op": "cmp",
825
+ "field": "eventType",
826
+ "fieldName": "Event type",
827
+ "operator": "==",
828
+ "value": "queuedTask",
829
+ "valueIsField": false,
830
+ "isEmpty": false
831
+ }
832
+ ]
833
+ },
834
+ {
835
+ "op": "cmp",
836
+ "field": "eventType",
837
+ "fieldName": "Event type",
838
+ "operator": "==",
839
+ "value": "9",
840
+ "valueIsField": false,
841
+ "isEmpty": false
842
+ }
843
+ ]
844
+ },
845
+ "tags": {
846
+ "baseline": "MAY",
847
+ "enabledWhen": [
848
+ {
849
+ "op": "cmp",
850
+ "field": "type",
851
+ "fieldName": "Type",
852
+ "operator": "==",
853
+ "value": "multitask",
854
+ "valueIsField": false,
855
+ "isEmpty": false
856
+ }
857
+ ]
858
+ },
859
+ "timeOutHours": {
860
+ "baseline": "MUST_NOT",
861
+ "enabledWhen": [
862
+ {
863
+ "op": "or",
864
+ "items": [
865
+ {
866
+ "op": "cmp",
867
+ "field": "eventType",
868
+ "fieldName": "Event type",
869
+ "operator": "==",
870
+ "value": "6",
871
+ "valueIsField": false,
872
+ "isEmpty": false
873
+ },
874
+ {
875
+ "op": "cmp",
876
+ "field": "eventType",
877
+ "fieldName": "Event type",
878
+ "operator": "==",
879
+ "value": "9",
880
+ "valueIsField": false,
881
+ "isEmpty": false
882
+ },
883
+ {
884
+ "op": "cmp",
885
+ "field": "eventType",
886
+ "fieldName": "Event type",
887
+ "operator": "==",
888
+ "value": "queuedTask",
889
+ "valueIsField": false,
890
+ "isEmpty": false
891
+ }
892
+ ]
893
+ },
894
+ {
895
+ "op": "or",
896
+ "items": [
897
+ {
898
+ "op": "cmp",
899
+ "field": "eventType",
900
+ "fieldName": "Event type",
901
+ "operator": "==",
902
+ "value": "6",
903
+ "valueIsField": false,
904
+ "isEmpty": false
905
+ },
906
+ {
907
+ "op": "cmp",
908
+ "field": "eventType",
909
+ "fieldName": "Event type",
910
+ "operator": "==",
911
+ "value": "queuedTask",
912
+ "valueIsField": false,
913
+ "isEmpty": false
914
+ }
915
+ ]
916
+ }
917
+ ]
918
+ },
919
+ "timedEventTemplate": {
920
+ "baseline": "MUST_NOT",
921
+ "requiredWhen": [
922
+ {
923
+ "op": "or",
924
+ "items": [
925
+ {
926
+ "op": "cmp",
927
+ "field": "eventType",
928
+ "fieldName": "Event type",
929
+ "operator": "==",
930
+ "value": "1",
931
+ "valueIsField": false,
932
+ "isEmpty": false
933
+ },
934
+ {
935
+ "op": "cmp",
936
+ "field": "eventType",
937
+ "fieldName": "Event type",
938
+ "operator": "==",
939
+ "value": "timed",
940
+ "valueIsField": false,
941
+ "isEmpty": false
942
+ }
943
+ ]
944
+ }
945
+ ],
946
+ "enabledWhen": [
947
+ {
948
+ "op": "or",
949
+ "items": [
950
+ {
951
+ "op": "cmp",
952
+ "field": "eventType",
953
+ "fieldName": "Event type",
954
+ "operator": "==",
955
+ "value": "1",
956
+ "valueIsField": false,
957
+ "isEmpty": false
958
+ },
959
+ {
960
+ "op": "cmp",
961
+ "field": "eventType",
962
+ "fieldName": "Event type",
963
+ "operator": "==",
964
+ "value": "timed",
965
+ "valueIsField": false,
966
+ "isEmpty": false
967
+ }
968
+ ]
969
+ }
970
+ ]
971
+ },
972
+ "type": {
973
+ "baseline": "MUST",
974
+ "readOnlyWhen": [
975
+ {
976
+ "op": "cmp",
977
+ "field": "type",
978
+ "fieldName": "Type",
979
+ "operator": "==",
980
+ "value": "multitask",
981
+ "valueIsField": false,
982
+ "isEmpty": false
983
+ }
984
+ ]
985
+ }
986
+ }