losant_rest 1.22.1 → 1.22.2

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