@grexx/grexxlinter 0.2.418 → 0.2.545

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 (56) hide show
  1. package/cli.js +1 -1
  2. package/package.json +1 -1
  3. package/schemas/activity.behavior.json +921 -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 +761 -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 +157 -0
  14. package/schemas/dataset.behavior.json +359 -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 +262 -0
  23. package/schemas/formActionAi.behavior.json +52 -0
  24. package/schemas/formRight.behavior.json +8 -0
  25. package/schemas/formfield.behavior.json +1028 -0
  26. package/schemas/gridColumn.schema.json +1 -1
  27. package/schemas/indirectRole.behavior.json +59 -0
  28. package/schemas/llmModel.behavior.json +8 -0
  29. package/schemas/mapping.behavior.json +216 -0
  30. package/schemas/menuItem.behavior.json +221 -0
  31. package/schemas/metadata.behavior.json +89 -0
  32. package/schemas/navigation.behavior.json +33 -0
  33. package/schemas/picklist.behavior.json +58 -0
  34. package/schemas/platformAttribute.behavior.json +377 -0
  35. package/schemas/platformRole.behavior.json +130 -0
  36. package/schemas/pluginLibrary.behavior.json +8 -0
  37. package/schemas/requestContext.behavior.json +100 -0
  38. package/schemas/roleName.behavior.json +5 -0
  39. package/schemas/securityProfile.behavior.json +8 -0
  40. package/schemas/securityRequirement.behavior.json +5 -0
  41. package/schemas/simpleCondition.behavior.json +319 -0
  42. package/schemas/taskQueue.behavior.json +5 -0
  43. package/schemas/template/date-function.schema.json +1 -1
  44. package/schemas/template/html.schema.json +1 -1
  45. package/schemas/template/if.schema.json +1 -1
  46. package/schemas/template/iterator.schema.json +1 -1
  47. package/schemas/template/multivalue.schema.json +1 -1
  48. package/schemas/template/picklist.schema.json +1 -1
  49. package/schemas/template/util.schema.json +1 -1
  50. package/schemas/template.behavior.json +5 -0
  51. package/schemas/trigger.behavior.json +294 -0
  52. package/schemas/tryBlock.behavior.json +30 -0
  53. package/schemas/view.behavior.json +159 -0
  54. package/schemas/while.behavior.json +30 -0
  55. package/schemas/widget.behavior.json +1213 -0
  56. package/schemas/widgetRight.behavior.json +8 -0
@@ -0,0 +1,761 @@
1
+ {
2
+ "addActivity": {
3
+ "baseline": "MUST_NOT",
4
+ "enabledWhen": [
5
+ {
6
+ "op": "cmp",
7
+ "field": "picklist",
8
+ "fieldName": "Picklist",
9
+ "operator": "!==",
10
+ "value": "",
11
+ "valueIsField": false,
12
+ "isEmpty": true
13
+ }
14
+ ]
15
+ },
16
+ "allowHTML": {
17
+ "baseline": "MAY",
18
+ "enabledWhen": [
19
+ {
20
+ "op": "cmp",
21
+ "field": null,
22
+ "fieldName": "«template»",
23
+ "operator": "in",
24
+ "value": "«[\"string\", \"json\", \"inlinetemplate\"]»",
25
+ "valueIsField": false,
26
+ "isEmpty": false
27
+ }
28
+ ]
29
+ },
30
+ "calculatedCached": {
31
+ "baseline": "MAY",
32
+ "enabledWhen": [
33
+ {
34
+ "op": "cmp",
35
+ "field": "isCalculated",
36
+ "fieldName": "Calculated field",
37
+ "operator": "==",
38
+ "value": "true",
39
+ "valueIsField": false,
40
+ "isEmpty": false
41
+ }
42
+ ]
43
+ },
44
+ "calcTemplate": {
45
+ "baseline": "MAY",
46
+ "requiredWhen": [
47
+ {
48
+ "op": "cmp",
49
+ "field": "isCalculated",
50
+ "fieldName": "Calculated field",
51
+ "operator": "==",
52
+ "value": "true",
53
+ "valueIsField": false,
54
+ "isEmpty": false
55
+ }
56
+ ],
57
+ "enabledWhen": [
58
+ {
59
+ "op": "cmp",
60
+ "field": "isCalculated",
61
+ "fieldName": "Calculated field",
62
+ "operator": "==",
63
+ "value": "true",
64
+ "valueIsField": false,
65
+ "isEmpty": false
66
+ }
67
+ ]
68
+ },
69
+ "calculationOrder": {
70
+ "baseline": "MAY",
71
+ "enabledWhen": [
72
+ {
73
+ "op": "and",
74
+ "items": [
75
+ {
76
+ "op": "cmp",
77
+ "field": "calculatedCached",
78
+ "fieldName": "Calculated cached",
79
+ "operator": "==",
80
+ "value": "true",
81
+ "valueIsField": false,
82
+ "isEmpty": false
83
+ },
84
+ {
85
+ "op": "cmp",
86
+ "field": "isCalculated",
87
+ "fieldName": "Calculated field",
88
+ "operator": "==",
89
+ "value": "true",
90
+ "valueIsField": false,
91
+ "isEmpty": false
92
+ }
93
+ ]
94
+ }
95
+ ]
96
+ },
97
+ "currency": {
98
+ "baseline": "MUST_NOT",
99
+ "requiredWhen": [
100
+ {
101
+ "op": "cmp",
102
+ "field": null,
103
+ "fieldName": "«template»",
104
+ "operator": "==",
105
+ "value": "singlecurrencymoney",
106
+ "valueIsField": false,
107
+ "isEmpty": false
108
+ }
109
+ ],
110
+ "enabledWhen": [
111
+ {
112
+ "op": "cmp",
113
+ "field": null,
114
+ "fieldName": "«template»",
115
+ "operator": "==",
116
+ "value": "singlecurrencymoney",
117
+ "valueIsField": false,
118
+ "isEmpty": false
119
+ },
120
+ {
121
+ "op": "cmp",
122
+ "field": null,
123
+ "fieldName": "«template»",
124
+ "operator": "==",
125
+ "value": "money",
126
+ "valueIsField": false,
127
+ "isEmpty": false
128
+ }
129
+ ]
130
+ },
131
+ "currentCasetypes": {
132
+ "baseline": "MAY",
133
+ "enabledWhen": [
134
+ {
135
+ "op": "cmp",
136
+ "field": null,
137
+ "fieldName": "«template»",
138
+ "operator": "==",
139
+ "value": "«inlinetemplate»",
140
+ "valueIsField": false,
141
+ "isEmpty": false
142
+ },
143
+ {
144
+ "op": "cmp",
145
+ "field": null,
146
+ "fieldName": "«template»",
147
+ "operator": "==",
148
+ "value": "inlinetemplate",
149
+ "valueIsField": false,
150
+ "isEmpty": false
151
+ }
152
+ ]
153
+ },
154
+ "dateProfile": {
155
+ "baseline": "MAY",
156
+ "enabledWhen": [
157
+ {
158
+ "op": "or",
159
+ "items": [
160
+ {
161
+ "op": "cmp",
162
+ "field": null,
163
+ "fieldName": "«template»",
164
+ "operator": "==",
165
+ "value": "«date»",
166
+ "valueIsField": false,
167
+ "isEmpty": false
168
+ },
169
+ {
170
+ "op": "cmp",
171
+ "field": null,
172
+ "fieldName": "«template»",
173
+ "operator": "==",
174
+ "value": "«datetime»",
175
+ "valueIsField": false,
176
+ "isEmpty": false
177
+ }
178
+ ]
179
+ }
180
+ ]
181
+ },
182
+ "attributeDefaultValue": {
183
+ "baseline": "MUST_NOT",
184
+ "enabledWhen": [
185
+ {
186
+ "op": "cmp",
187
+ "field": null,
188
+ "fieldName": "«template»",
189
+ "operator": "notin",
190
+ "value": "«[\"case\", \"datasetrow\", \"file\", \"inlinetemplate\", \"uuid\", …»",
191
+ "valueIsField": false,
192
+ "isEmpty": false
193
+ }
194
+ ]
195
+ },
196
+ "excludeFromRelatedCases": {
197
+ "baseline": "MAY",
198
+ "enabledWhen": [
199
+ {
200
+ "op": "and",
201
+ "items": [
202
+ {
203
+ "op": "cmp",
204
+ "field": null,
205
+ "fieldName": "«template»",
206
+ "operator": "in",
207
+ "value": "«[\"string\", \"json\", \"inlinetemplate\", \"text\", \"case\"]»",
208
+ "valueIsField": false,
209
+ "isEmpty": false
210
+ },
211
+ {
212
+ "op": "cmp",
213
+ "field": null,
214
+ "fieldName": "User has role Grexx meta dev",
215
+ "operator": "==",
216
+ "value": "true",
217
+ "valueIsField": false,
218
+ "isEmpty": false
219
+ }
220
+ ]
221
+ }
222
+ ]
223
+ },
224
+ "multiLanguage": {
225
+ "baseline": "MAY",
226
+ "enabledWhen": [
227
+ {
228
+ "op": "and",
229
+ "items": [
230
+ {
231
+ "op": "cmp",
232
+ "field": null,
233
+ "fieldName": "«template»",
234
+ "operator": "==",
235
+ "value": "«string»",
236
+ "valueIsField": false,
237
+ "isEmpty": false
238
+ },
239
+ {
240
+ "op": "cmp",
241
+ "field": "multivalue",
242
+ "fieldName": "Multivalue",
243
+ "operator": "!==",
244
+ "value": "true",
245
+ "valueIsField": false,
246
+ "isEmpty": false
247
+ }
248
+ ]
249
+ },
250
+ {
251
+ "op": "and",
252
+ "items": [
253
+ {
254
+ "op": "cmp",
255
+ "field": null,
256
+ "fieldName": "«template»",
257
+ "operator": "==",
258
+ "value": "string",
259
+ "valueIsField": false,
260
+ "isEmpty": false
261
+ },
262
+ {
263
+ "op": "cmp",
264
+ "field": "multivalue",
265
+ "fieldName": "Multivalue",
266
+ "operator": "!==",
267
+ "value": "true",
268
+ "valueIsField": false,
269
+ "isEmpty": false
270
+ }
271
+ ]
272
+ }
273
+ ]
274
+ },
275
+ "multivalue": {
276
+ "baseline": "MAY",
277
+ "enabledWhen": [
278
+ {
279
+ "op": "cmp",
280
+ "field": null,
281
+ "fieldName": "«template»",
282
+ "operator": "==",
283
+ "value": "singlecurrencymoney",
284
+ "valueIsField": false,
285
+ "isEmpty": false
286
+ },
287
+ {
288
+ "op": "cmp",
289
+ "field": "platformAttribute",
290
+ "fieldName": "Platform attribute",
291
+ "operator": "==",
292
+ "value": "",
293
+ "valueIsField": false,
294
+ "isEmpty": true
295
+ },
296
+ {
297
+ "op": "and",
298
+ "items": [
299
+ {
300
+ "op": "cmp",
301
+ "field": "platformAttribute",
302
+ "fieldName": "Platform attribute",
303
+ "operator": "==",
304
+ "value": "",
305
+ "valueIsField": false,
306
+ "isEmpty": true
307
+ },
308
+ {
309
+ "op": "cmp",
310
+ "field": "type",
311
+ "fieldName": "Type",
312
+ "operator": "in",
313
+ "value": "«[\"case\", \"file\", \"json\", \"integer\", \"point2d\", \"polygon2d…»",
314
+ "valueIsField": false,
315
+ "isEmpty": false
316
+ }
317
+ ]
318
+ }
319
+ ]
320
+ },
321
+ "multivalueMax": {
322
+ "baseline": "MAY",
323
+ "enabledWhen": [
324
+ {
325
+ "op": "cmp",
326
+ "field": "multivalue",
327
+ "fieldName": "Multivalue",
328
+ "operator": "==",
329
+ "value": "true",
330
+ "valueIsField": false,
331
+ "isEmpty": false
332
+ }
333
+ ]
334
+ },
335
+ "multivalueMin": {
336
+ "baseline": "MAY",
337
+ "enabledWhen": [
338
+ {
339
+ "op": "cmp",
340
+ "field": "multivalue",
341
+ "fieldName": "Multivalue",
342
+ "operator": "==",
343
+ "value": "true",
344
+ "valueIsField": false,
345
+ "isEmpty": false
346
+ }
347
+ ]
348
+ },
349
+ "multivalueType": {
350
+ "baseline": "MAY",
351
+ "requiredWhen": [
352
+ {
353
+ "op": "cmp",
354
+ "field": "multivalue",
355
+ "fieldName": "Multivalue",
356
+ "operator": "==",
357
+ "value": "true",
358
+ "valueIsField": false,
359
+ "isEmpty": false
360
+ }
361
+ ],
362
+ "enabledWhen": [
363
+ {
364
+ "op": "cmp",
365
+ "field": "multivalue",
366
+ "fieldName": "Multivalue",
367
+ "operator": "==",
368
+ "value": "true",
369
+ "valueIsField": false,
370
+ "isEmpty": false
371
+ }
372
+ ]
373
+ },
374
+ "name": {
375
+ "baseline": "MAY",
376
+ "requiredWhen": [
377
+ {
378
+ "op": "cmp",
379
+ "field": "platformAttribute",
380
+ "fieldName": "Platform attribute",
381
+ "operator": "===",
382
+ "value": "",
383
+ "valueIsField": false,
384
+ "isEmpty": true
385
+ }
386
+ ],
387
+ "enabledWhen": [
388
+ {
389
+ "op": "cmp",
390
+ "field": "platformAttribute",
391
+ "fieldName": "Platform attribute",
392
+ "operator": "===",
393
+ "value": "",
394
+ "valueIsField": false,
395
+ "isEmpty": true
396
+ },
397
+ {
398
+ "op": "cmp",
399
+ "field": "platformAttribute",
400
+ "fieldName": "Platform attribute",
401
+ "operator": "!==",
402
+ "value": "",
403
+ "valueIsField": false,
404
+ "isEmpty": true
405
+ }
406
+ ]
407
+ },
408
+ "picklist": {
409
+ "baseline": "MAY",
410
+ "enabledWhen": [
411
+ {
412
+ "op": "cmp",
413
+ "field": null,
414
+ "fieldName": "«template»",
415
+ "operator": "in",
416
+ "value": "«[\"integer\", \"long\", \"string\", \"double\", \"boolean\", \"date\"…»",
417
+ "valueIsField": false,
418
+ "isEmpty": false
419
+ },
420
+ {
421
+ "op": "cmp",
422
+ "field": null,
423
+ "fieldName": "«template»",
424
+ "operator": "==",
425
+ "value": "file",
426
+ "valueIsField": false,
427
+ "isEmpty": false
428
+ },
429
+ {
430
+ "op": "cmp",
431
+ "field": null,
432
+ "fieldName": "«template»",
433
+ "operator": "==",
434
+ "value": "money",
435
+ "valueIsField": false,
436
+ "isEmpty": false
437
+ },
438
+ {
439
+ "op": "cmp",
440
+ "field": null,
441
+ "fieldName": "«template»",
442
+ "operator": "==",
443
+ "value": "singlecurrencymoney",
444
+ "valueIsField": false,
445
+ "isEmpty": false
446
+ }
447
+ ]
448
+ },
449
+ "addActivityBase": {
450
+ "baseline": "MUST_NOT",
451
+ "requiredWhen": [
452
+ {
453
+ "op": "and",
454
+ "items": [
455
+ {
456
+ "op": "cmp",
457
+ "field": "addActivity",
458
+ "fieldName": "Add activity on picklist",
459
+ "operator": "!=",
460
+ "value": "",
461
+ "valueIsField": false,
462
+ "isEmpty": true
463
+ },
464
+ {
465
+ "op": "cmp",
466
+ "field": "picklist",
467
+ "fieldName": "Picklist",
468
+ "operator": "!==",
469
+ "value": "",
470
+ "valueIsField": false,
471
+ "isEmpty": true
472
+ }
473
+ ]
474
+ }
475
+ ],
476
+ "enabledWhen": [
477
+ {
478
+ "op": "and",
479
+ "items": [
480
+ {
481
+ "op": "cmp",
482
+ "field": "addActivity",
483
+ "fieldName": "Add activity on picklist",
484
+ "operator": "!=",
485
+ "value": "",
486
+ "valueIsField": false,
487
+ "isEmpty": true
488
+ },
489
+ {
490
+ "op": "cmp",
491
+ "field": "picklist",
492
+ "fieldName": "Picklist",
493
+ "operator": "!==",
494
+ "value": "",
495
+ "valueIsField": false,
496
+ "isEmpty": true
497
+ }
498
+ ]
499
+ }
500
+ ]
501
+ },
502
+ "picklistBase": {
503
+ "baseline": "MUST_NOT",
504
+ "enabledWhen": [
505
+ {
506
+ "op": "cmp",
507
+ "field": "picklist",
508
+ "fieldName": "Picklist",
509
+ "operator": "!==",
510
+ "value": "",
511
+ "valueIsField": false,
512
+ "isEmpty": true
513
+ }
514
+ ]
515
+ },
516
+ "picklistShowLinkToCase": {
517
+ "baseline": "MAY",
518
+ "enabledWhen": [
519
+ {
520
+ "op": "cmp",
521
+ "field": "picklist",
522
+ "fieldName": "Picklist",
523
+ "operator": "!==",
524
+ "value": "",
525
+ "valueIsField": false,
526
+ "isEmpty": true
527
+ }
528
+ ]
529
+ },
530
+ "subtype": {
531
+ "baseline": "MAY",
532
+ "enabledWhen": [
533
+ {
534
+ "op": "and",
535
+ "items": [
536
+ {
537
+ "op": "or",
538
+ "items": [
539
+ {
540
+ "op": "cmp",
541
+ "field": "subtype",
542
+ "fieldName": "Sub type",
543
+ "operator": "!=",
544
+ "value": "",
545
+ "valueIsField": false,
546
+ "isEmpty": true
547
+ },
548
+ {
549
+ "op": "cmp",
550
+ "field": "type",
551
+ "fieldName": "Type",
552
+ "operator": "!=",
553
+ "value": "case",
554
+ "valueIsField": false,
555
+ "isEmpty": false
556
+ }
557
+ ]
558
+ },
559
+ {
560
+ "op": "cmp",
561
+ "field": "platformAttribute",
562
+ "fieldName": "Platform attribute",
563
+ "operator": "==",
564
+ "value": "",
565
+ "valueIsField": false,
566
+ "isEmpty": true
567
+ },
568
+ {
569
+ "op": "cmp",
570
+ "field": "type",
571
+ "fieldName": "Type",
572
+ "operator": "==",
573
+ "value": "case",
574
+ "valueIsField": false,
575
+ "isEmpty": false
576
+ }
577
+ ]
578
+ },
579
+ {
580
+ "op": "cmp",
581
+ "field": null,
582
+ "fieldName": "«[Platform attribute]»",
583
+ "operator": "===",
584
+ "value": "",
585
+ "valueIsField": false,
586
+ "isEmpty": true
587
+ },
588
+ {
589
+ "op": "cmp",
590
+ "field": null,
591
+ "fieldName": "«template»",
592
+ "operator": "==",
593
+ "value": "«case»",
594
+ "valueIsField": false,
595
+ "isEmpty": false
596
+ },
597
+ {
598
+ "op": "cmp",
599
+ "field": null,
600
+ "fieldName": "«template»",
601
+ "operator": "==",
602
+ "value": "case",
603
+ "valueIsField": false,
604
+ "isEmpty": false
605
+ },
606
+ {
607
+ "op": "and",
608
+ "items": [
609
+ {
610
+ "op": "cmp",
611
+ "field": "platformAttribute",
612
+ "fieldName": "Platform attribute",
613
+ "operator": "==",
614
+ "value": "",
615
+ "valueIsField": false,
616
+ "isEmpty": true
617
+ },
618
+ {
619
+ "op": "cmp",
620
+ "field": "subtype",
621
+ "fieldName": "Sub type",
622
+ "operator": "==",
623
+ "value": "",
624
+ "valueIsField": false,
625
+ "isEmpty": true
626
+ },
627
+ {
628
+ "op": "cmp",
629
+ "field": "type",
630
+ "fieldName": "Type",
631
+ "operator": "==",
632
+ "value": "case",
633
+ "valueIsField": false,
634
+ "isEmpty": false
635
+ }
636
+ ]
637
+ },
638
+ {
639
+ "op": "and",
640
+ "items": [
641
+ {
642
+ "op": "cmp",
643
+ "field": "platformAttribute",
644
+ "fieldName": "Platform attribute",
645
+ "operator": "==",
646
+ "value": "",
647
+ "valueIsField": false,
648
+ "isEmpty": true
649
+ },
650
+ {
651
+ "op": "cmp",
652
+ "field": "type",
653
+ "fieldName": "Type",
654
+ "operator": "==",
655
+ "value": "case",
656
+ "valueIsField": false,
657
+ "isEmpty": false
658
+ }
659
+ ]
660
+ }
661
+ ]
662
+ },
663
+ "type": {
664
+ "baseline": "MAY",
665
+ "requiredWhen": [
666
+ {
667
+ "op": "cmp",
668
+ "field": "platformAttribute",
669
+ "fieldName": "Platform attribute",
670
+ "operator": "===",
671
+ "value": "",
672
+ "valueIsField": false,
673
+ "isEmpty": true
674
+ }
675
+ ],
676
+ "enabledWhen": [
677
+ {
678
+ "op": "cmp",
679
+ "field": "platformAttribute",
680
+ "fieldName": "Platform attribute",
681
+ "operator": "===",
682
+ "value": "",
683
+ "valueIsField": false,
684
+ "isEmpty": true
685
+ }
686
+ ]
687
+ },
688
+ "uniqueColumn": {
689
+ "baseline": "MAY",
690
+ "requiredWhen": [
691
+ {
692
+ "op": "cmp",
693
+ "field": "isUnique",
694
+ "fieldName": "UNIQUE - Is unique",
695
+ "operator": "==",
696
+ "value": "true",
697
+ "valueIsField": false,
698
+ "isEmpty": false
699
+ }
700
+ ],
701
+ "enabledWhen": [
702
+ {
703
+ "op": "cmp",
704
+ "field": "isUnique",
705
+ "fieldName": "UNIQUE - Is unique",
706
+ "operator": "==",
707
+ "value": "true",
708
+ "valueIsField": false,
709
+ "isEmpty": false
710
+ }
711
+ ]
712
+ },
713
+ "uniqueDataset": {
714
+ "baseline": "MAY",
715
+ "requiredWhen": [
716
+ {
717
+ "op": "cmp",
718
+ "field": "isUnique",
719
+ "fieldName": "UNIQUE - Is unique",
720
+ "operator": "==",
721
+ "value": "true",
722
+ "valueIsField": false,
723
+ "isEmpty": false
724
+ }
725
+ ],
726
+ "enabledWhen": [
727
+ {
728
+ "op": "cmp",
729
+ "field": "isUnique",
730
+ "fieldName": "UNIQUE - Is unique",
731
+ "operator": "==",
732
+ "value": "true",
733
+ "valueIsField": false,
734
+ "isEmpty": false
735
+ }
736
+ ]
737
+ },
738
+ "validation": {
739
+ "baseline": "MAY",
740
+ "enabledWhen": [
741
+ {
742
+ "op": "cmp",
743
+ "field": null,
744
+ "fieldName": "«template»",
745
+ "operator": "in",
746
+ "value": "«[\"string\", \"json\", \"double\", \"integer\", \"long\"]»",
747
+ "valueIsField": false,
748
+ "isEmpty": false
749
+ },
750
+ {
751
+ "op": "cmp",
752
+ "field": null,
753
+ "fieldName": "«template»",
754
+ "operator": "in",
755
+ "value": "«[\"string\", \"json\", \"integer\", \"double\", \"long\"]»",
756
+ "valueIsField": false,
757
+ "isEmpty": false
758
+ }
759
+ ]
760
+ }
761
+ }