losant_rest 1.21.0 → 1.21.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,2061 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "type": "object",
4
+ "properties": {
5
+ "email": {
6
+ "type": "string",
7
+ "format": "email",
8
+ "maxLength": 1024
9
+ },
10
+ "query": {
11
+ "title": "Advanced Device Query",
12
+ "description": "Schema for advanced device queries",
13
+ "type": "object",
14
+ "properties": {
15
+ "$and": {
16
+ "type": "array",
17
+ "items": {
18
+ "$ref": "#/definitions/advancedDeviceQuery"
19
+ },
20
+ "maxItems": 100
21
+ },
22
+ "$or": {
23
+ "type": "array",
24
+ "items": {
25
+ "$ref": "#/definitions/advancedDeviceQuery"
26
+ },
27
+ "maxItems": 100
28
+ },
29
+ "$nor": {
30
+ "type": "array",
31
+ "items": {
32
+ "$ref": "#/definitions/advancedDeviceQuery"
33
+ },
34
+ "maxItems": 100
35
+ },
36
+ "id": {
37
+ "oneOf": [
38
+ {
39
+ "oneOf": [
40
+ {
41
+ "type": "string",
42
+ "pattern": "^[A-Fa-f\\d]{24}$"
43
+ },
44
+ {
45
+ "type": "null"
46
+ }
47
+ ]
48
+ },
49
+ {
50
+ "type": "object",
51
+ "properties": {
52
+ "$eq": {
53
+ "oneOf": [
54
+ {
55
+ "type": "string",
56
+ "pattern": "^[A-Fa-f\\d]{24}$"
57
+ },
58
+ {
59
+ "type": "null"
60
+ }
61
+ ]
62
+ },
63
+ "$ne": {
64
+ "oneOf": [
65
+ {
66
+ "type": "string",
67
+ "pattern": "^[A-Fa-f\\d]{24}$"
68
+ },
69
+ {
70
+ "type": "null"
71
+ }
72
+ ]
73
+ },
74
+ "$gt": {
75
+ "oneOf": [
76
+ {
77
+ "type": "string",
78
+ "pattern": "^[A-Fa-f\\d]{24}$"
79
+ },
80
+ {
81
+ "type": "null"
82
+ }
83
+ ]
84
+ },
85
+ "$lt": {
86
+ "oneOf": [
87
+ {
88
+ "type": "string",
89
+ "pattern": "^[A-Fa-f\\d]{24}$"
90
+ },
91
+ {
92
+ "type": "null"
93
+ }
94
+ ]
95
+ },
96
+ "$gte": {
97
+ "oneOf": [
98
+ {
99
+ "type": "string",
100
+ "pattern": "^[A-Fa-f\\d]{24}$"
101
+ },
102
+ {
103
+ "type": "null"
104
+ }
105
+ ]
106
+ },
107
+ "$lte": {
108
+ "oneOf": [
109
+ {
110
+ "type": "string",
111
+ "pattern": "^[A-Fa-f\\d]{24}$"
112
+ },
113
+ {
114
+ "type": "null"
115
+ }
116
+ ]
117
+ },
118
+ "$in": {
119
+ "type": "array",
120
+ "maxItems": 100,
121
+ "items": {
122
+ "type": "string",
123
+ "pattern": "^[A-Fa-f\\d]{24}$"
124
+ }
125
+ },
126
+ "$nin": {
127
+ "type": "array",
128
+ "maxItems": 100,
129
+ "items": {
130
+ "type": "string",
131
+ "pattern": "^[A-Fa-f\\d]{24}$"
132
+ }
133
+ }
134
+ },
135
+ "additionalProperties": false,
136
+ "minProperties": 1,
137
+ "maxProperties": 1
138
+ }
139
+ ]
140
+ },
141
+ "creationDate": {
142
+ "oneOf": [
143
+ {
144
+ "type": [
145
+ "string",
146
+ "number",
147
+ "boolean",
148
+ "null"
149
+ ]
150
+ },
151
+ {
152
+ "type": "object",
153
+ "properties": {
154
+ "$eq": {
155
+ "type": [
156
+ "string",
157
+ "number",
158
+ "boolean",
159
+ "null"
160
+ ]
161
+ },
162
+ "$ne": {
163
+ "type": [
164
+ "string",
165
+ "number",
166
+ "boolean",
167
+ "null"
168
+ ]
169
+ },
170
+ "$gt": {
171
+ "type": [
172
+ "string",
173
+ "number",
174
+ "boolean",
175
+ "null"
176
+ ]
177
+ },
178
+ "$lt": {
179
+ "type": [
180
+ "string",
181
+ "number",
182
+ "boolean",
183
+ "null"
184
+ ]
185
+ },
186
+ "$gte": {
187
+ "type": [
188
+ "string",
189
+ "number",
190
+ "boolean",
191
+ "null"
192
+ ]
193
+ },
194
+ "$lte": {
195
+ "type": [
196
+ "string",
197
+ "number",
198
+ "boolean",
199
+ "null"
200
+ ]
201
+ },
202
+ "$startsWith": {
203
+ "type": "string",
204
+ "minLength": 1
205
+ },
206
+ "$endsWith": {
207
+ "type": "string",
208
+ "minLength": 1
209
+ },
210
+ "$contains": {
211
+ "type": "string",
212
+ "minLength": 1
213
+ },
214
+ "$ci": {
215
+ "type": "boolean"
216
+ },
217
+ "$in": {
218
+ "type": "array",
219
+ "maxItems": 100,
220
+ "items": {
221
+ "type": [
222
+ "string",
223
+ "number",
224
+ "boolean"
225
+ ]
226
+ }
227
+ },
228
+ "$nin": {
229
+ "type": "array",
230
+ "maxItems": 100,
231
+ "items": {
232
+ "type": [
233
+ "string",
234
+ "number",
235
+ "boolean"
236
+ ]
237
+ }
238
+ }
239
+ },
240
+ "additionalProperties": false
241
+ }
242
+ ]
243
+ },
244
+ "lastUpdated": {
245
+ "oneOf": [
246
+ {
247
+ "type": [
248
+ "string",
249
+ "number",
250
+ "boolean",
251
+ "null"
252
+ ]
253
+ },
254
+ {
255
+ "type": "object",
256
+ "properties": {
257
+ "$eq": {
258
+ "type": [
259
+ "string",
260
+ "number",
261
+ "boolean",
262
+ "null"
263
+ ]
264
+ },
265
+ "$ne": {
266
+ "type": [
267
+ "string",
268
+ "number",
269
+ "boolean",
270
+ "null"
271
+ ]
272
+ },
273
+ "$gt": {
274
+ "type": [
275
+ "string",
276
+ "number",
277
+ "boolean",
278
+ "null"
279
+ ]
280
+ },
281
+ "$lt": {
282
+ "type": [
283
+ "string",
284
+ "number",
285
+ "boolean",
286
+ "null"
287
+ ]
288
+ },
289
+ "$gte": {
290
+ "type": [
291
+ "string",
292
+ "number",
293
+ "boolean",
294
+ "null"
295
+ ]
296
+ },
297
+ "$lte": {
298
+ "type": [
299
+ "string",
300
+ "number",
301
+ "boolean",
302
+ "null"
303
+ ]
304
+ },
305
+ "$startsWith": {
306
+ "type": "string",
307
+ "minLength": 1
308
+ },
309
+ "$endsWith": {
310
+ "type": "string",
311
+ "minLength": 1
312
+ },
313
+ "$contains": {
314
+ "type": "string",
315
+ "minLength": 1
316
+ },
317
+ "$ci": {
318
+ "type": "boolean"
319
+ },
320
+ "$in": {
321
+ "type": "array",
322
+ "maxItems": 100,
323
+ "items": {
324
+ "type": [
325
+ "string",
326
+ "number",
327
+ "boolean"
328
+ ]
329
+ }
330
+ },
331
+ "$nin": {
332
+ "type": "array",
333
+ "maxItems": 100,
334
+ "items": {
335
+ "type": [
336
+ "string",
337
+ "number",
338
+ "boolean"
339
+ ]
340
+ }
341
+ }
342
+ },
343
+ "additionalProperties": false
344
+ }
345
+ ]
346
+ },
347
+ "deletedAt": {
348
+ "oneOf": [
349
+ {
350
+ "type": [
351
+ "string",
352
+ "number",
353
+ "boolean",
354
+ "null"
355
+ ]
356
+ },
357
+ {
358
+ "type": "object",
359
+ "properties": {
360
+ "$eq": {
361
+ "type": [
362
+ "string",
363
+ "number",
364
+ "boolean",
365
+ "null"
366
+ ]
367
+ },
368
+ "$ne": {
369
+ "type": [
370
+ "string",
371
+ "number",
372
+ "boolean",
373
+ "null"
374
+ ]
375
+ },
376
+ "$gt": {
377
+ "type": [
378
+ "string",
379
+ "number",
380
+ "boolean",
381
+ "null"
382
+ ]
383
+ },
384
+ "$lt": {
385
+ "type": [
386
+ "string",
387
+ "number",
388
+ "boolean",
389
+ "null"
390
+ ]
391
+ },
392
+ "$gte": {
393
+ "type": [
394
+ "string",
395
+ "number",
396
+ "boolean",
397
+ "null"
398
+ ]
399
+ },
400
+ "$lte": {
401
+ "type": [
402
+ "string",
403
+ "number",
404
+ "boolean",
405
+ "null"
406
+ ]
407
+ },
408
+ "$startsWith": {
409
+ "type": "string",
410
+ "minLength": 1
411
+ },
412
+ "$endsWith": {
413
+ "type": "string",
414
+ "minLength": 1
415
+ },
416
+ "$contains": {
417
+ "type": "string",
418
+ "minLength": 1
419
+ },
420
+ "$ci": {
421
+ "type": "boolean"
422
+ },
423
+ "$in": {
424
+ "type": "array",
425
+ "maxItems": 100,
426
+ "items": {
427
+ "type": [
428
+ "string",
429
+ "number",
430
+ "boolean"
431
+ ]
432
+ }
433
+ },
434
+ "$nin": {
435
+ "type": "array",
436
+ "maxItems": 100,
437
+ "items": {
438
+ "type": [
439
+ "string",
440
+ "number",
441
+ "boolean"
442
+ ]
443
+ }
444
+ }
445
+ },
446
+ "additionalProperties": false
447
+ }
448
+ ]
449
+ },
450
+ "name": {
451
+ "oneOf": [
452
+ {
453
+ "type": [
454
+ "string",
455
+ "number",
456
+ "boolean",
457
+ "null"
458
+ ]
459
+ },
460
+ {
461
+ "type": "object",
462
+ "properties": {
463
+ "$eq": {
464
+ "type": [
465
+ "string",
466
+ "number",
467
+ "boolean",
468
+ "null"
469
+ ]
470
+ },
471
+ "$ne": {
472
+ "type": [
473
+ "string",
474
+ "number",
475
+ "boolean",
476
+ "null"
477
+ ]
478
+ },
479
+ "$gt": {
480
+ "type": [
481
+ "string",
482
+ "number",
483
+ "boolean",
484
+ "null"
485
+ ]
486
+ },
487
+ "$lt": {
488
+ "type": [
489
+ "string",
490
+ "number",
491
+ "boolean",
492
+ "null"
493
+ ]
494
+ },
495
+ "$gte": {
496
+ "type": [
497
+ "string",
498
+ "number",
499
+ "boolean",
500
+ "null"
501
+ ]
502
+ },
503
+ "$lte": {
504
+ "type": [
505
+ "string",
506
+ "number",
507
+ "boolean",
508
+ "null"
509
+ ]
510
+ },
511
+ "$startsWith": {
512
+ "type": "string",
513
+ "minLength": 1
514
+ },
515
+ "$endsWith": {
516
+ "type": "string",
517
+ "minLength": 1
518
+ },
519
+ "$contains": {
520
+ "type": "string",
521
+ "minLength": 1
522
+ },
523
+ "$ci": {
524
+ "type": "boolean"
525
+ },
526
+ "$in": {
527
+ "type": "array",
528
+ "maxItems": 100,
529
+ "items": {
530
+ "type": [
531
+ "string",
532
+ "number",
533
+ "boolean"
534
+ ]
535
+ }
536
+ },
537
+ "$nin": {
538
+ "type": "array",
539
+ "maxItems": 100,
540
+ "items": {
541
+ "type": [
542
+ "string",
543
+ "number",
544
+ "boolean"
545
+ ]
546
+ }
547
+ }
548
+ },
549
+ "additionalProperties": false
550
+ }
551
+ ]
552
+ },
553
+ "deviceClass": {
554
+ "oneOf": [
555
+ {
556
+ "type": [
557
+ "string",
558
+ "number",
559
+ "boolean",
560
+ "null"
561
+ ]
562
+ },
563
+ {
564
+ "type": "object",
565
+ "properties": {
566
+ "$eq": {
567
+ "type": [
568
+ "string",
569
+ "number",
570
+ "boolean",
571
+ "null"
572
+ ]
573
+ },
574
+ "$ne": {
575
+ "type": [
576
+ "string",
577
+ "number",
578
+ "boolean",
579
+ "null"
580
+ ]
581
+ },
582
+ "$gt": {
583
+ "type": [
584
+ "string",
585
+ "number",
586
+ "boolean",
587
+ "null"
588
+ ]
589
+ },
590
+ "$lt": {
591
+ "type": [
592
+ "string",
593
+ "number",
594
+ "boolean",
595
+ "null"
596
+ ]
597
+ },
598
+ "$gte": {
599
+ "type": [
600
+ "string",
601
+ "number",
602
+ "boolean",
603
+ "null"
604
+ ]
605
+ },
606
+ "$lte": {
607
+ "type": [
608
+ "string",
609
+ "number",
610
+ "boolean",
611
+ "null"
612
+ ]
613
+ },
614
+ "$startsWith": {
615
+ "type": "string",
616
+ "minLength": 1
617
+ },
618
+ "$endsWith": {
619
+ "type": "string",
620
+ "minLength": 1
621
+ },
622
+ "$contains": {
623
+ "type": "string",
624
+ "minLength": 1
625
+ },
626
+ "$ci": {
627
+ "type": "boolean"
628
+ },
629
+ "$in": {
630
+ "type": "array",
631
+ "maxItems": 100,
632
+ "items": {
633
+ "type": [
634
+ "string",
635
+ "number",
636
+ "boolean"
637
+ ]
638
+ }
639
+ },
640
+ "$nin": {
641
+ "type": "array",
642
+ "maxItems": 100,
643
+ "items": {
644
+ "type": [
645
+ "string",
646
+ "number",
647
+ "boolean"
648
+ ]
649
+ }
650
+ }
651
+ },
652
+ "additionalProperties": false
653
+ }
654
+ ]
655
+ },
656
+ "gatewayId": {
657
+ "oneOf": [
658
+ {
659
+ "oneOf": [
660
+ {
661
+ "type": "string",
662
+ "pattern": "^[A-Fa-f\\d]{24}$"
663
+ },
664
+ {
665
+ "type": "null"
666
+ }
667
+ ]
668
+ },
669
+ {
670
+ "type": "object",
671
+ "properties": {
672
+ "$eq": {
673
+ "oneOf": [
674
+ {
675
+ "type": "string",
676
+ "pattern": "^[A-Fa-f\\d]{24}$"
677
+ },
678
+ {
679
+ "type": "null"
680
+ }
681
+ ]
682
+ },
683
+ "$ne": {
684
+ "oneOf": [
685
+ {
686
+ "type": "string",
687
+ "pattern": "^[A-Fa-f\\d]{24}$"
688
+ },
689
+ {
690
+ "type": "null"
691
+ }
692
+ ]
693
+ },
694
+ "$gt": {
695
+ "oneOf": [
696
+ {
697
+ "type": "string",
698
+ "pattern": "^[A-Fa-f\\d]{24}$"
699
+ },
700
+ {
701
+ "type": "null"
702
+ }
703
+ ]
704
+ },
705
+ "$lt": {
706
+ "oneOf": [
707
+ {
708
+ "type": "string",
709
+ "pattern": "^[A-Fa-f\\d]{24}$"
710
+ },
711
+ {
712
+ "type": "null"
713
+ }
714
+ ]
715
+ },
716
+ "$gte": {
717
+ "oneOf": [
718
+ {
719
+ "type": "string",
720
+ "pattern": "^[A-Fa-f\\d]{24}$"
721
+ },
722
+ {
723
+ "type": "null"
724
+ }
725
+ ]
726
+ },
727
+ "$lte": {
728
+ "oneOf": [
729
+ {
730
+ "type": "string",
731
+ "pattern": "^[A-Fa-f\\d]{24}$"
732
+ },
733
+ {
734
+ "type": "null"
735
+ }
736
+ ]
737
+ },
738
+ "$in": {
739
+ "type": "array",
740
+ "maxItems": 100,
741
+ "items": {
742
+ "type": "string",
743
+ "pattern": "^[A-Fa-f\\d]{24}$"
744
+ }
745
+ },
746
+ "$nin": {
747
+ "type": "array",
748
+ "maxItems": 100,
749
+ "items": {
750
+ "type": "string",
751
+ "pattern": "^[A-Fa-f\\d]{24}$"
752
+ }
753
+ }
754
+ },
755
+ "additionalProperties": false,
756
+ "minProperties": 1,
757
+ "maxProperties": 1
758
+ }
759
+ ]
760
+ },
761
+ "parentId": {
762
+ "oneOf": [
763
+ {
764
+ "oneOf": [
765
+ {
766
+ "type": "string",
767
+ "pattern": "^[A-Fa-f\\d]{24}$"
768
+ },
769
+ {
770
+ "type": "null"
771
+ }
772
+ ]
773
+ },
774
+ {
775
+ "type": "object",
776
+ "properties": {
777
+ "$eq": {
778
+ "oneOf": [
779
+ {
780
+ "type": "string",
781
+ "pattern": "^[A-Fa-f\\d]{24}$"
782
+ },
783
+ {
784
+ "type": "null"
785
+ }
786
+ ]
787
+ },
788
+ "$ne": {
789
+ "oneOf": [
790
+ {
791
+ "type": "string",
792
+ "pattern": "^[A-Fa-f\\d]{24}$"
793
+ },
794
+ {
795
+ "type": "null"
796
+ }
797
+ ]
798
+ },
799
+ "$gt": {
800
+ "oneOf": [
801
+ {
802
+ "type": "string",
803
+ "pattern": "^[A-Fa-f\\d]{24}$"
804
+ },
805
+ {
806
+ "type": "null"
807
+ }
808
+ ]
809
+ },
810
+ "$lt": {
811
+ "oneOf": [
812
+ {
813
+ "type": "string",
814
+ "pattern": "^[A-Fa-f\\d]{24}$"
815
+ },
816
+ {
817
+ "type": "null"
818
+ }
819
+ ]
820
+ },
821
+ "$gte": {
822
+ "oneOf": [
823
+ {
824
+ "type": "string",
825
+ "pattern": "^[A-Fa-f\\d]{24}$"
826
+ },
827
+ {
828
+ "type": "null"
829
+ }
830
+ ]
831
+ },
832
+ "$lte": {
833
+ "oneOf": [
834
+ {
835
+ "type": "string",
836
+ "pattern": "^[A-Fa-f\\d]{24}$"
837
+ },
838
+ {
839
+ "type": "null"
840
+ }
841
+ ]
842
+ },
843
+ "$in": {
844
+ "type": "array",
845
+ "maxItems": 100,
846
+ "items": {
847
+ "type": "string",
848
+ "pattern": "^[A-Fa-f\\d]{24}$"
849
+ }
850
+ },
851
+ "$nin": {
852
+ "type": "array",
853
+ "maxItems": 100,
854
+ "items": {
855
+ "type": "string",
856
+ "pattern": "^[A-Fa-f\\d]{24}$"
857
+ }
858
+ }
859
+ },
860
+ "additionalProperties": false,
861
+ "minProperties": 1,
862
+ "maxProperties": 1
863
+ }
864
+ ]
865
+ },
866
+ "ancestorId": {
867
+ "oneOf": [
868
+ {
869
+ "oneOf": [
870
+ {
871
+ "type": "string",
872
+ "pattern": "^[A-Fa-f\\d]{24}$"
873
+ },
874
+ {
875
+ "type": "null"
876
+ }
877
+ ]
878
+ },
879
+ {
880
+ "type": "object",
881
+ "properties": {
882
+ "$eq": {
883
+ "oneOf": [
884
+ {
885
+ "type": "string",
886
+ "pattern": "^[A-Fa-f\\d]{24}$"
887
+ },
888
+ {
889
+ "type": "null"
890
+ }
891
+ ]
892
+ },
893
+ "$ne": {
894
+ "oneOf": [
895
+ {
896
+ "type": "string",
897
+ "pattern": "^[A-Fa-f\\d]{24}$"
898
+ },
899
+ {
900
+ "type": "null"
901
+ }
902
+ ]
903
+ },
904
+ "$gt": {
905
+ "oneOf": [
906
+ {
907
+ "type": "string",
908
+ "pattern": "^[A-Fa-f\\d]{24}$"
909
+ },
910
+ {
911
+ "type": "null"
912
+ }
913
+ ]
914
+ },
915
+ "$lt": {
916
+ "oneOf": [
917
+ {
918
+ "type": "string",
919
+ "pattern": "^[A-Fa-f\\d]{24}$"
920
+ },
921
+ {
922
+ "type": "null"
923
+ }
924
+ ]
925
+ },
926
+ "$gte": {
927
+ "oneOf": [
928
+ {
929
+ "type": "string",
930
+ "pattern": "^[A-Fa-f\\d]{24}$"
931
+ },
932
+ {
933
+ "type": "null"
934
+ }
935
+ ]
936
+ },
937
+ "$lte": {
938
+ "oneOf": [
939
+ {
940
+ "type": "string",
941
+ "pattern": "^[A-Fa-f\\d]{24}$"
942
+ },
943
+ {
944
+ "type": "null"
945
+ }
946
+ ]
947
+ },
948
+ "$in": {
949
+ "type": "array",
950
+ "maxItems": 100,
951
+ "items": {
952
+ "type": "string",
953
+ "pattern": "^[A-Fa-f\\d]{24}$"
954
+ }
955
+ },
956
+ "$nin": {
957
+ "type": "array",
958
+ "maxItems": 100,
959
+ "items": {
960
+ "type": "string",
961
+ "pattern": "^[A-Fa-f\\d]{24}$"
962
+ }
963
+ }
964
+ },
965
+ "additionalProperties": false,
966
+ "minProperties": 1,
967
+ "maxProperties": 1
968
+ }
969
+ ]
970
+ },
971
+ "attributeName": {
972
+ "oneOf": [
973
+ {
974
+ "type": [
975
+ "string",
976
+ "number",
977
+ "boolean",
978
+ "null"
979
+ ]
980
+ },
981
+ {
982
+ "type": "object",
983
+ "properties": {
984
+ "$eq": {
985
+ "type": [
986
+ "string",
987
+ "number",
988
+ "boolean",
989
+ "null"
990
+ ]
991
+ },
992
+ "$ne": {
993
+ "type": [
994
+ "string",
995
+ "number",
996
+ "boolean",
997
+ "null"
998
+ ]
999
+ },
1000
+ "$gt": {
1001
+ "type": [
1002
+ "string",
1003
+ "number",
1004
+ "boolean",
1005
+ "null"
1006
+ ]
1007
+ },
1008
+ "$lt": {
1009
+ "type": [
1010
+ "string",
1011
+ "number",
1012
+ "boolean",
1013
+ "null"
1014
+ ]
1015
+ },
1016
+ "$gte": {
1017
+ "type": [
1018
+ "string",
1019
+ "number",
1020
+ "boolean",
1021
+ "null"
1022
+ ]
1023
+ },
1024
+ "$lte": {
1025
+ "type": [
1026
+ "string",
1027
+ "number",
1028
+ "boolean",
1029
+ "null"
1030
+ ]
1031
+ },
1032
+ "$startsWith": {
1033
+ "type": "string",
1034
+ "minLength": 1
1035
+ },
1036
+ "$endsWith": {
1037
+ "type": "string",
1038
+ "minLength": 1
1039
+ },
1040
+ "$contains": {
1041
+ "type": "string",
1042
+ "minLength": 1
1043
+ },
1044
+ "$ci": {
1045
+ "type": "boolean"
1046
+ },
1047
+ "$in": {
1048
+ "type": "array",
1049
+ "maxItems": 100,
1050
+ "items": {
1051
+ "type": [
1052
+ "string",
1053
+ "number",
1054
+ "boolean"
1055
+ ]
1056
+ }
1057
+ },
1058
+ "$nin": {
1059
+ "type": "array",
1060
+ "maxItems": 100,
1061
+ "items": {
1062
+ "type": [
1063
+ "string",
1064
+ "number",
1065
+ "boolean"
1066
+ ]
1067
+ }
1068
+ }
1069
+ },
1070
+ "additionalProperties": false
1071
+ }
1072
+ ]
1073
+ },
1074
+ "experienceUserId": {
1075
+ "oneOf": [
1076
+ {
1077
+ "oneOf": [
1078
+ {
1079
+ "type": "string",
1080
+ "pattern": "^[A-Fa-f\\d]{24}$"
1081
+ },
1082
+ {
1083
+ "type": "null"
1084
+ }
1085
+ ]
1086
+ },
1087
+ {
1088
+ "type": "object",
1089
+ "properties": {
1090
+ "$eq": {
1091
+ "oneOf": [
1092
+ {
1093
+ "type": "string",
1094
+ "pattern": "^[A-Fa-f\\d]{24}$"
1095
+ },
1096
+ {
1097
+ "type": "null"
1098
+ }
1099
+ ]
1100
+ },
1101
+ "$ne": {
1102
+ "oneOf": [
1103
+ {
1104
+ "type": "string",
1105
+ "pattern": "^[A-Fa-f\\d]{24}$"
1106
+ },
1107
+ {
1108
+ "type": "null"
1109
+ }
1110
+ ]
1111
+ },
1112
+ "$gt": {
1113
+ "oneOf": [
1114
+ {
1115
+ "type": "string",
1116
+ "pattern": "^[A-Fa-f\\d]{24}$"
1117
+ },
1118
+ {
1119
+ "type": "null"
1120
+ }
1121
+ ]
1122
+ },
1123
+ "$lt": {
1124
+ "oneOf": [
1125
+ {
1126
+ "type": "string",
1127
+ "pattern": "^[A-Fa-f\\d]{24}$"
1128
+ },
1129
+ {
1130
+ "type": "null"
1131
+ }
1132
+ ]
1133
+ },
1134
+ "$gte": {
1135
+ "oneOf": [
1136
+ {
1137
+ "type": "string",
1138
+ "pattern": "^[A-Fa-f\\d]{24}$"
1139
+ },
1140
+ {
1141
+ "type": "null"
1142
+ }
1143
+ ]
1144
+ },
1145
+ "$lte": {
1146
+ "oneOf": [
1147
+ {
1148
+ "type": "string",
1149
+ "pattern": "^[A-Fa-f\\d]{24}$"
1150
+ },
1151
+ {
1152
+ "type": "null"
1153
+ }
1154
+ ]
1155
+ },
1156
+ "$in": {
1157
+ "type": "array",
1158
+ "maxItems": 100,
1159
+ "items": {
1160
+ "type": "string",
1161
+ "pattern": "^[A-Fa-f\\d]{24}$"
1162
+ }
1163
+ },
1164
+ "$nin": {
1165
+ "type": "array",
1166
+ "maxItems": 100,
1167
+ "items": {
1168
+ "type": "string",
1169
+ "pattern": "^[A-Fa-f\\d]{24}$"
1170
+ }
1171
+ }
1172
+ },
1173
+ "additionalProperties": false,
1174
+ "minProperties": 1,
1175
+ "maxProperties": 1
1176
+ }
1177
+ ]
1178
+ },
1179
+ "experienceGroupId": {
1180
+ "oneOf": [
1181
+ {
1182
+ "oneOf": [
1183
+ {
1184
+ "type": "string",
1185
+ "pattern": "^[A-Fa-f\\d]{24}$"
1186
+ },
1187
+ {
1188
+ "type": "null"
1189
+ }
1190
+ ]
1191
+ },
1192
+ {
1193
+ "type": "object",
1194
+ "properties": {
1195
+ "$eq": {
1196
+ "oneOf": [
1197
+ {
1198
+ "type": "string",
1199
+ "pattern": "^[A-Fa-f\\d]{24}$"
1200
+ },
1201
+ {
1202
+ "type": "null"
1203
+ }
1204
+ ]
1205
+ },
1206
+ "$ne": {
1207
+ "oneOf": [
1208
+ {
1209
+ "type": "string",
1210
+ "pattern": "^[A-Fa-f\\d]{24}$"
1211
+ },
1212
+ {
1213
+ "type": "null"
1214
+ }
1215
+ ]
1216
+ },
1217
+ "$gt": {
1218
+ "oneOf": [
1219
+ {
1220
+ "type": "string",
1221
+ "pattern": "^[A-Fa-f\\d]{24}$"
1222
+ },
1223
+ {
1224
+ "type": "null"
1225
+ }
1226
+ ]
1227
+ },
1228
+ "$lt": {
1229
+ "oneOf": [
1230
+ {
1231
+ "type": "string",
1232
+ "pattern": "^[A-Fa-f\\d]{24}$"
1233
+ },
1234
+ {
1235
+ "type": "null"
1236
+ }
1237
+ ]
1238
+ },
1239
+ "$gte": {
1240
+ "oneOf": [
1241
+ {
1242
+ "type": "string",
1243
+ "pattern": "^[A-Fa-f\\d]{24}$"
1244
+ },
1245
+ {
1246
+ "type": "null"
1247
+ }
1248
+ ]
1249
+ },
1250
+ "$lte": {
1251
+ "oneOf": [
1252
+ {
1253
+ "type": "string",
1254
+ "pattern": "^[A-Fa-f\\d]{24}$"
1255
+ },
1256
+ {
1257
+ "type": "null"
1258
+ }
1259
+ ]
1260
+ },
1261
+ "$in": {
1262
+ "type": "array",
1263
+ "maxItems": 100,
1264
+ "items": {
1265
+ "type": "string",
1266
+ "pattern": "^[A-Fa-f\\d]{24}$"
1267
+ }
1268
+ },
1269
+ "$nin": {
1270
+ "type": "array",
1271
+ "maxItems": 100,
1272
+ "items": {
1273
+ "type": "string",
1274
+ "pattern": "^[A-Fa-f\\d]{24}$"
1275
+ }
1276
+ }
1277
+ },
1278
+ "additionalProperties": false,
1279
+ "minProperties": 1,
1280
+ "maxProperties": 1
1281
+ }
1282
+ ]
1283
+ },
1284
+ "tags": {
1285
+ "oneOf": [
1286
+ {
1287
+ "oneOf": [
1288
+ {
1289
+ "type": "object",
1290
+ "properties": {
1291
+ "$tagKey": {
1292
+ "oneOf": [
1293
+ {
1294
+ "type": "string",
1295
+ "maxLength": 255
1296
+ },
1297
+ {
1298
+ "type": "object",
1299
+ "properties": {
1300
+ "$in": {
1301
+ "type": "array",
1302
+ "maxItems": 100,
1303
+ "items": {
1304
+ "type": "string",
1305
+ "maxLength": 255
1306
+ }
1307
+ }
1308
+ },
1309
+ "required": [
1310
+ "$in"
1311
+ ],
1312
+ "additionalProperties": false
1313
+ },
1314
+ {
1315
+ "type": "object",
1316
+ "properties": {
1317
+ "$nin": {
1318
+ "type": "array",
1319
+ "maxItems": 100,
1320
+ "items": {
1321
+ "type": "string",
1322
+ "maxLength": 255
1323
+ }
1324
+ }
1325
+ },
1326
+ "required": [
1327
+ "$nin"
1328
+ ],
1329
+ "additionalProperties": false
1330
+ }
1331
+ ]
1332
+ },
1333
+ "$tagValue": {
1334
+ "oneOf": [
1335
+ {
1336
+ "type": "string",
1337
+ "maxLength": 255
1338
+ },
1339
+ {
1340
+ "type": "object",
1341
+ "properties": {
1342
+ "$in": {
1343
+ "type": "array",
1344
+ "maxItems": 100,
1345
+ "items": {
1346
+ "type": "string",
1347
+ "maxLength": 255
1348
+ }
1349
+ }
1350
+ },
1351
+ "required": [
1352
+ "$in"
1353
+ ],
1354
+ "additionalProperties": false
1355
+ },
1356
+ {
1357
+ "type": "object",
1358
+ "properties": {
1359
+ "$nin": {
1360
+ "type": "array",
1361
+ "maxItems": 100,
1362
+ "items": {
1363
+ "type": "string",
1364
+ "maxLength": 255
1365
+ }
1366
+ }
1367
+ },
1368
+ "required": [
1369
+ "$nin"
1370
+ ],
1371
+ "additionalProperties": false
1372
+ }
1373
+ ]
1374
+ }
1375
+ },
1376
+ "additionalProperties": false,
1377
+ "minProperties": 1
1378
+ },
1379
+ {
1380
+ "type": "object",
1381
+ "patternProperties": {
1382
+ "^[0-9a-zA-Z_-]{1,255}": {
1383
+ "oneOf": [
1384
+ {
1385
+ "type": "string",
1386
+ "maxLength": 255
1387
+ },
1388
+ {
1389
+ "type": "object",
1390
+ "properties": {
1391
+ "$in": {
1392
+ "type": "array",
1393
+ "maxItems": 100,
1394
+ "items": {
1395
+ "type": "string",
1396
+ "maxLength": 255
1397
+ }
1398
+ }
1399
+ },
1400
+ "required": [
1401
+ "$in"
1402
+ ],
1403
+ "additionalProperties": false
1404
+ },
1405
+ {
1406
+ "type": "object",
1407
+ "properties": {
1408
+ "$nin": {
1409
+ "type": "array",
1410
+ "maxItems": 100,
1411
+ "items": {
1412
+ "type": "string",
1413
+ "maxLength": 255
1414
+ }
1415
+ }
1416
+ },
1417
+ "required": [
1418
+ "$nin"
1419
+ ],
1420
+ "additionalProperties": false
1421
+ }
1422
+ ]
1423
+ }
1424
+ },
1425
+ "additionalProperties": false
1426
+ }
1427
+ ]
1428
+ },
1429
+ {
1430
+ "type": "object",
1431
+ "properties": {
1432
+ "$eq": {
1433
+ "oneOf": [
1434
+ {
1435
+ "type": "object",
1436
+ "properties": {
1437
+ "$tagKey": {
1438
+ "oneOf": [
1439
+ {
1440
+ "type": "string",
1441
+ "maxLength": 255
1442
+ },
1443
+ {
1444
+ "type": "object",
1445
+ "properties": {
1446
+ "$in": {
1447
+ "type": "array",
1448
+ "maxItems": 100,
1449
+ "items": {
1450
+ "type": "string",
1451
+ "maxLength": 255
1452
+ }
1453
+ }
1454
+ },
1455
+ "required": [
1456
+ "$in"
1457
+ ],
1458
+ "additionalProperties": false
1459
+ },
1460
+ {
1461
+ "type": "object",
1462
+ "properties": {
1463
+ "$nin": {
1464
+ "type": "array",
1465
+ "maxItems": 100,
1466
+ "items": {
1467
+ "type": "string",
1468
+ "maxLength": 255
1469
+ }
1470
+ }
1471
+ },
1472
+ "required": [
1473
+ "$nin"
1474
+ ],
1475
+ "additionalProperties": false
1476
+ }
1477
+ ]
1478
+ },
1479
+ "$tagValue": {
1480
+ "oneOf": [
1481
+ {
1482
+ "type": "string",
1483
+ "maxLength": 255
1484
+ },
1485
+ {
1486
+ "type": "object",
1487
+ "properties": {
1488
+ "$in": {
1489
+ "type": "array",
1490
+ "maxItems": 100,
1491
+ "items": {
1492
+ "type": "string",
1493
+ "maxLength": 255
1494
+ }
1495
+ }
1496
+ },
1497
+ "required": [
1498
+ "$in"
1499
+ ],
1500
+ "additionalProperties": false
1501
+ },
1502
+ {
1503
+ "type": "object",
1504
+ "properties": {
1505
+ "$nin": {
1506
+ "type": "array",
1507
+ "maxItems": 100,
1508
+ "items": {
1509
+ "type": "string",
1510
+ "maxLength": 255
1511
+ }
1512
+ }
1513
+ },
1514
+ "required": [
1515
+ "$nin"
1516
+ ],
1517
+ "additionalProperties": false
1518
+ }
1519
+ ]
1520
+ }
1521
+ },
1522
+ "additionalProperties": false,
1523
+ "minProperties": 1
1524
+ },
1525
+ {
1526
+ "type": "object",
1527
+ "patternProperties": {
1528
+ "^[0-9a-zA-Z_-]{1,255}": {
1529
+ "oneOf": [
1530
+ {
1531
+ "type": "string",
1532
+ "maxLength": 255
1533
+ },
1534
+ {
1535
+ "type": "object",
1536
+ "properties": {
1537
+ "$in": {
1538
+ "type": "array",
1539
+ "maxItems": 100,
1540
+ "items": {
1541
+ "type": "string",
1542
+ "maxLength": 255
1543
+ }
1544
+ }
1545
+ },
1546
+ "required": [
1547
+ "$in"
1548
+ ],
1549
+ "additionalProperties": false
1550
+ },
1551
+ {
1552
+ "type": "object",
1553
+ "properties": {
1554
+ "$nin": {
1555
+ "type": "array",
1556
+ "maxItems": 100,
1557
+ "items": {
1558
+ "type": "string",
1559
+ "maxLength": 255
1560
+ }
1561
+ }
1562
+ },
1563
+ "required": [
1564
+ "$nin"
1565
+ ],
1566
+ "additionalProperties": false
1567
+ }
1568
+ ]
1569
+ }
1570
+ },
1571
+ "additionalProperties": false
1572
+ }
1573
+ ]
1574
+ }
1575
+ },
1576
+ "required": [
1577
+ "$eq"
1578
+ ],
1579
+ "additionalProperties": false
1580
+ },
1581
+ {
1582
+ "type": "object",
1583
+ "properties": {
1584
+ "$ne": {
1585
+ "oneOf": [
1586
+ {
1587
+ "type": "object",
1588
+ "properties": {
1589
+ "$tagKey": {
1590
+ "oneOf": [
1591
+ {
1592
+ "type": "string",
1593
+ "maxLength": 255
1594
+ },
1595
+ {
1596
+ "type": "object",
1597
+ "properties": {
1598
+ "$in": {
1599
+ "type": "array",
1600
+ "maxItems": 100,
1601
+ "items": {
1602
+ "type": "string",
1603
+ "maxLength": 255
1604
+ }
1605
+ }
1606
+ },
1607
+ "required": [
1608
+ "$in"
1609
+ ],
1610
+ "additionalProperties": false
1611
+ },
1612
+ {
1613
+ "type": "object",
1614
+ "properties": {
1615
+ "$nin": {
1616
+ "type": "array",
1617
+ "maxItems": 100,
1618
+ "items": {
1619
+ "type": "string",
1620
+ "maxLength": 255
1621
+ }
1622
+ }
1623
+ },
1624
+ "required": [
1625
+ "$nin"
1626
+ ],
1627
+ "additionalProperties": false
1628
+ }
1629
+ ]
1630
+ },
1631
+ "$tagValue": {
1632
+ "oneOf": [
1633
+ {
1634
+ "type": "string",
1635
+ "maxLength": 255
1636
+ },
1637
+ {
1638
+ "type": "object",
1639
+ "properties": {
1640
+ "$in": {
1641
+ "type": "array",
1642
+ "maxItems": 100,
1643
+ "items": {
1644
+ "type": "string",
1645
+ "maxLength": 255
1646
+ }
1647
+ }
1648
+ },
1649
+ "required": [
1650
+ "$in"
1651
+ ],
1652
+ "additionalProperties": false
1653
+ },
1654
+ {
1655
+ "type": "object",
1656
+ "properties": {
1657
+ "$nin": {
1658
+ "type": "array",
1659
+ "maxItems": 100,
1660
+ "items": {
1661
+ "type": "string",
1662
+ "maxLength": 255
1663
+ }
1664
+ }
1665
+ },
1666
+ "required": [
1667
+ "$nin"
1668
+ ],
1669
+ "additionalProperties": false
1670
+ }
1671
+ ]
1672
+ }
1673
+ },
1674
+ "additionalProperties": false,
1675
+ "minProperties": 1
1676
+ },
1677
+ {
1678
+ "type": "object",
1679
+ "patternProperties": {
1680
+ "^[0-9a-zA-Z_-]{1,255}": {
1681
+ "oneOf": [
1682
+ {
1683
+ "type": "string",
1684
+ "maxLength": 255
1685
+ },
1686
+ {
1687
+ "type": "object",
1688
+ "properties": {
1689
+ "$in": {
1690
+ "type": "array",
1691
+ "maxItems": 100,
1692
+ "items": {
1693
+ "type": "string",
1694
+ "maxLength": 255
1695
+ }
1696
+ }
1697
+ },
1698
+ "required": [
1699
+ "$in"
1700
+ ],
1701
+ "additionalProperties": false
1702
+ },
1703
+ {
1704
+ "type": "object",
1705
+ "properties": {
1706
+ "$nin": {
1707
+ "type": "array",
1708
+ "maxItems": 100,
1709
+ "items": {
1710
+ "type": "string",
1711
+ "maxLength": 255
1712
+ }
1713
+ }
1714
+ },
1715
+ "required": [
1716
+ "$nin"
1717
+ ],
1718
+ "additionalProperties": false
1719
+ }
1720
+ ]
1721
+ }
1722
+ },
1723
+ "additionalProperties": false
1724
+ }
1725
+ ]
1726
+ }
1727
+ },
1728
+ "required": [
1729
+ "$ne"
1730
+ ],
1731
+ "additionalProperties": false
1732
+ }
1733
+ ]
1734
+ },
1735
+ "disconnectedAt": {
1736
+ "oneOf": [
1737
+ {
1738
+ "type": [
1739
+ "string",
1740
+ "number",
1741
+ "boolean",
1742
+ "null"
1743
+ ]
1744
+ },
1745
+ {
1746
+ "type": "object",
1747
+ "properties": {
1748
+ "$eq": {
1749
+ "type": [
1750
+ "string",
1751
+ "number",
1752
+ "boolean",
1753
+ "null"
1754
+ ]
1755
+ },
1756
+ "$ne": {
1757
+ "type": [
1758
+ "string",
1759
+ "number",
1760
+ "boolean",
1761
+ "null"
1762
+ ]
1763
+ },
1764
+ "$gt": {
1765
+ "type": [
1766
+ "string",
1767
+ "number",
1768
+ "boolean",
1769
+ "null"
1770
+ ]
1771
+ },
1772
+ "$lt": {
1773
+ "type": [
1774
+ "string",
1775
+ "number",
1776
+ "boolean",
1777
+ "null"
1778
+ ]
1779
+ },
1780
+ "$gte": {
1781
+ "type": [
1782
+ "string",
1783
+ "number",
1784
+ "boolean",
1785
+ "null"
1786
+ ]
1787
+ },
1788
+ "$lte": {
1789
+ "type": [
1790
+ "string",
1791
+ "number",
1792
+ "boolean",
1793
+ "null"
1794
+ ]
1795
+ },
1796
+ "$startsWith": {
1797
+ "type": "string",
1798
+ "minLength": 1
1799
+ },
1800
+ "$endsWith": {
1801
+ "type": "string",
1802
+ "minLength": 1
1803
+ },
1804
+ "$contains": {
1805
+ "type": "string",
1806
+ "minLength": 1
1807
+ },
1808
+ "$ci": {
1809
+ "type": "boolean"
1810
+ },
1811
+ "$in": {
1812
+ "type": "array",
1813
+ "maxItems": 100,
1814
+ "items": {
1815
+ "type": [
1816
+ "string",
1817
+ "number",
1818
+ "boolean"
1819
+ ]
1820
+ }
1821
+ },
1822
+ "$nin": {
1823
+ "type": "array",
1824
+ "maxItems": 100,
1825
+ "items": {
1826
+ "type": [
1827
+ "string",
1828
+ "number",
1829
+ "boolean"
1830
+ ]
1831
+ }
1832
+ }
1833
+ },
1834
+ "additionalProperties": false
1835
+ }
1836
+ ]
1837
+ },
1838
+ "connectedAt": {
1839
+ "oneOf": [
1840
+ {
1841
+ "type": [
1842
+ "string",
1843
+ "number",
1844
+ "boolean",
1845
+ "null"
1846
+ ]
1847
+ },
1848
+ {
1849
+ "type": "object",
1850
+ "properties": {
1851
+ "$eq": {
1852
+ "type": [
1853
+ "string",
1854
+ "number",
1855
+ "boolean",
1856
+ "null"
1857
+ ]
1858
+ },
1859
+ "$ne": {
1860
+ "type": [
1861
+ "string",
1862
+ "number",
1863
+ "boolean",
1864
+ "null"
1865
+ ]
1866
+ },
1867
+ "$gt": {
1868
+ "type": [
1869
+ "string",
1870
+ "number",
1871
+ "boolean",
1872
+ "null"
1873
+ ]
1874
+ },
1875
+ "$lt": {
1876
+ "type": [
1877
+ "string",
1878
+ "number",
1879
+ "boolean",
1880
+ "null"
1881
+ ]
1882
+ },
1883
+ "$gte": {
1884
+ "type": [
1885
+ "string",
1886
+ "number",
1887
+ "boolean",
1888
+ "null"
1889
+ ]
1890
+ },
1891
+ "$lte": {
1892
+ "type": [
1893
+ "string",
1894
+ "number",
1895
+ "boolean",
1896
+ "null"
1897
+ ]
1898
+ },
1899
+ "$startsWith": {
1900
+ "type": "string",
1901
+ "minLength": 1
1902
+ },
1903
+ "$endsWith": {
1904
+ "type": "string",
1905
+ "minLength": 1
1906
+ },
1907
+ "$contains": {
1908
+ "type": "string",
1909
+ "minLength": 1
1910
+ },
1911
+ "$ci": {
1912
+ "type": "boolean"
1913
+ },
1914
+ "$in": {
1915
+ "type": "array",
1916
+ "maxItems": 100,
1917
+ "items": {
1918
+ "type": [
1919
+ "string",
1920
+ "number",
1921
+ "boolean"
1922
+ ]
1923
+ }
1924
+ },
1925
+ "$nin": {
1926
+ "type": "array",
1927
+ "maxItems": 100,
1928
+ "items": {
1929
+ "type": [
1930
+ "string",
1931
+ "number",
1932
+ "boolean"
1933
+ ]
1934
+ }
1935
+ }
1936
+ },
1937
+ "additionalProperties": false
1938
+ }
1939
+ ]
1940
+ },
1941
+ "connectionStatus": {
1942
+ "oneOf": [
1943
+ {
1944
+ "type": [
1945
+ "string",
1946
+ "number",
1947
+ "boolean",
1948
+ "null"
1949
+ ]
1950
+ },
1951
+ {
1952
+ "type": "object",
1953
+ "properties": {
1954
+ "$eq": {
1955
+ "type": [
1956
+ "string",
1957
+ "number",
1958
+ "boolean",
1959
+ "null"
1960
+ ]
1961
+ },
1962
+ "$ne": {
1963
+ "type": [
1964
+ "string",
1965
+ "number",
1966
+ "boolean",
1967
+ "null"
1968
+ ]
1969
+ },
1970
+ "$gt": {
1971
+ "type": [
1972
+ "string",
1973
+ "number",
1974
+ "boolean",
1975
+ "null"
1976
+ ]
1977
+ },
1978
+ "$lt": {
1979
+ "type": [
1980
+ "string",
1981
+ "number",
1982
+ "boolean",
1983
+ "null"
1984
+ ]
1985
+ },
1986
+ "$gte": {
1987
+ "type": [
1988
+ "string",
1989
+ "number",
1990
+ "boolean",
1991
+ "null"
1992
+ ]
1993
+ },
1994
+ "$lte": {
1995
+ "type": [
1996
+ "string",
1997
+ "number",
1998
+ "boolean",
1999
+ "null"
2000
+ ]
2001
+ },
2002
+ "$startsWith": {
2003
+ "type": "string",
2004
+ "minLength": 1
2005
+ },
2006
+ "$endsWith": {
2007
+ "type": "string",
2008
+ "minLength": 1
2009
+ },
2010
+ "$contains": {
2011
+ "type": "string",
2012
+ "minLength": 1
2013
+ },
2014
+ "$ci": {
2015
+ "type": "boolean"
2016
+ },
2017
+ "$in": {
2018
+ "type": "array",
2019
+ "maxItems": 100,
2020
+ "items": {
2021
+ "type": [
2022
+ "string",
2023
+ "number",
2024
+ "boolean"
2025
+ ]
2026
+ }
2027
+ },
2028
+ "$nin": {
2029
+ "type": "array",
2030
+ "maxItems": 100,
2031
+ "items": {
2032
+ "type": [
2033
+ "string",
2034
+ "number",
2035
+ "boolean"
2036
+ ]
2037
+ }
2038
+ }
2039
+ },
2040
+ "additionalProperties": false
2041
+ }
2042
+ ]
2043
+ }
2044
+ },
2045
+ "additionalProperties": false
2046
+ },
2047
+ "callbackUrl": {
2048
+ "type": "string",
2049
+ "format": "uri",
2050
+ "maxLength": 1024
2051
+ },
2052
+ "forceJob": {
2053
+ "type": "boolean",
2054
+ "default": false
2055
+ }
2056
+ },
2057
+ "additionalProperties": false,
2058
+ "required": [
2059
+ "query"
2060
+ ]
2061
+ }