losant_rest 1.19.6 → 1.19.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (58) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/test.yml +30 -0
  3. data/README.md +2 -2
  4. data/docs/_schemas.md +7742 -2728
  5. data/docs/devices.md +0 -1
  6. data/docs/experienceUsers.md +1 -0
  7. data/docs/instanceOrgs.md +1 -0
  8. data/lib/platform_rest/client.rb +2 -2
  9. data/lib/platform_rest/devices.rb +0 -1
  10. data/lib/platform_rest/experience_users.rb +3 -0
  11. data/lib/platform_rest/instance_orgs.rb +3 -0
  12. data/lib/platform_rest/version.rb +1 -1
  13. data/schemas/advancedExperienceUserQuery.json +1068 -0
  14. data/schemas/advancedInstanceOrgQuery.json +1171 -0
  15. data/schemas/applicationDashboardPost.json +7 -0
  16. data/schemas/credential.json +52 -1
  17. data/schemas/credentialLinkedResources.json +345 -24
  18. data/schemas/credentialPatch.json +62 -0
  19. data/schemas/credentialPost.json +74 -1
  20. data/schemas/credentials.json +52 -1
  21. data/schemas/dashboard.json +7 -0
  22. data/schemas/dashboardPatch.json +7 -0
  23. data/schemas/dashboardPost.json +7 -0
  24. data/schemas/dashboards.json +7 -0
  25. data/schemas/devicesExportPost.json +8 -0
  26. data/schemas/devicesRemoveDataPost.json +10 -0
  27. data/schemas/experienceLinkedResources.json +356 -24
  28. data/schemas/experienceVersion.json +64 -0
  29. data/schemas/experienceVersionPatch.json +64 -0
  30. data/schemas/experienceVersionPost.json +64 -0
  31. data/schemas/experienceVersions.json +64 -0
  32. data/schemas/experienceView.json +11 -0
  33. data/schemas/experienceViewPatch.json +11 -0
  34. data/schemas/experienceViewPost.json +11 -0
  35. data/schemas/experienceViews.json +11 -0
  36. data/schemas/flow.json +115 -8
  37. data/schemas/flowPatch.json +115 -8
  38. data/schemas/flowPost.json +115 -8
  39. data/schemas/flowVersion.json +230 -16
  40. data/schemas/flowVersionPost.json +115 -8
  41. data/schemas/flowVersions.json +230 -16
  42. data/schemas/flows.json +115 -8
  43. data/schemas/flowsImportPost.json +230 -16
  44. data/schemas/flowsImportResult.json +345 -24
  45. data/schemas/instanceCustomNode.json +2 -1
  46. data/schemas/instanceCustomNodePatch.json +3 -9
  47. data/schemas/instanceCustomNodePost.json +3 -9
  48. data/schemas/instanceCustomNodes.json +2 -1
  49. data/schemas/notebook.json +8 -0
  50. data/schemas/notebookPatch.json +8 -0
  51. data/schemas/notebookPost.json +8 -0
  52. data/schemas/notebooks.json +8 -0
  53. data/schemas/resourceJob.json +2 -1
  54. data/schemas/resourceJobExecutionLogs.json +2 -1
  55. data/schemas/resourceJobPost.json +2 -1
  56. data/schemas/resourceJobs.json +2 -1
  57. metadata +5 -3
  58. data/.travis.yml +0 -7
@@ -0,0 +1,1068 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "type": "object",
4
+ "properties": {
5
+ "$and": {
6
+ "type": "array",
7
+ "items": {
8
+ "$ref": "#/definitions/advancedExperienceUserQuery"
9
+ },
10
+ "maxItems": 100
11
+ },
12
+ "$or": {
13
+ "type": "array",
14
+ "items": {
15
+ "$ref": "#/definitions/advancedExperienceUserQuery"
16
+ },
17
+ "maxItems": 100
18
+ },
19
+ "$nor": {
20
+ "type": "array",
21
+ "items": {
22
+ "$ref": "#/definitions/advancedExperienceUserQuery"
23
+ },
24
+ "maxItems": 100
25
+ },
26
+ "id": {
27
+ "oneOf": [
28
+ {
29
+ "oneOf": [
30
+ {
31
+ "type": "string",
32
+ "pattern": "^[A-Fa-f\\d]{24}$"
33
+ },
34
+ {
35
+ "type": "null"
36
+ }
37
+ ]
38
+ },
39
+ {
40
+ "type": "object",
41
+ "properties": {
42
+ "$eq": {
43
+ "oneOf": [
44
+ {
45
+ "type": "string",
46
+ "pattern": "^[A-Fa-f\\d]{24}$"
47
+ },
48
+ {
49
+ "type": "null"
50
+ }
51
+ ]
52
+ },
53
+ "$ne": {
54
+ "oneOf": [
55
+ {
56
+ "type": "string",
57
+ "pattern": "^[A-Fa-f\\d]{24}$"
58
+ },
59
+ {
60
+ "type": "null"
61
+ }
62
+ ]
63
+ },
64
+ "$gt": {
65
+ "oneOf": [
66
+ {
67
+ "type": "string",
68
+ "pattern": "^[A-Fa-f\\d]{24}$"
69
+ },
70
+ {
71
+ "type": "null"
72
+ }
73
+ ]
74
+ },
75
+ "$lt": {
76
+ "oneOf": [
77
+ {
78
+ "type": "string",
79
+ "pattern": "^[A-Fa-f\\d]{24}$"
80
+ },
81
+ {
82
+ "type": "null"
83
+ }
84
+ ]
85
+ },
86
+ "$gte": {
87
+ "oneOf": [
88
+ {
89
+ "type": "string",
90
+ "pattern": "^[A-Fa-f\\d]{24}$"
91
+ },
92
+ {
93
+ "type": "null"
94
+ }
95
+ ]
96
+ },
97
+ "$lte": {
98
+ "oneOf": [
99
+ {
100
+ "type": "string",
101
+ "pattern": "^[A-Fa-f\\d]{24}$"
102
+ },
103
+ {
104
+ "type": "null"
105
+ }
106
+ ]
107
+ },
108
+ "$in": {
109
+ "type": "array",
110
+ "maxItems": 100,
111
+ "items": {
112
+ "type": "string",
113
+ "pattern": "^[A-Fa-f\\d]{24}$"
114
+ }
115
+ },
116
+ "$nin": {
117
+ "type": "array",
118
+ "maxItems": 100,
119
+ "items": {
120
+ "type": "string",
121
+ "pattern": "^[A-Fa-f\\d]{24}$"
122
+ }
123
+ }
124
+ },
125
+ "additionalProperties": false,
126
+ "minProperties": 1,
127
+ "maxProperties": 1
128
+ }
129
+ ]
130
+ },
131
+ "creationDate": {
132
+ "oneOf": [
133
+ {
134
+ "type": [
135
+ "string",
136
+ "number",
137
+ "boolean",
138
+ "null"
139
+ ]
140
+ },
141
+ {
142
+ "type": "object",
143
+ "properties": {
144
+ "$eq": {
145
+ "type": [
146
+ "string",
147
+ "number",
148
+ "boolean",
149
+ "null"
150
+ ]
151
+ },
152
+ "$ne": {
153
+ "type": [
154
+ "string",
155
+ "number",
156
+ "boolean",
157
+ "null"
158
+ ]
159
+ },
160
+ "$gt": {
161
+ "type": [
162
+ "string",
163
+ "number",
164
+ "boolean",
165
+ "null"
166
+ ]
167
+ },
168
+ "$lt": {
169
+ "type": [
170
+ "string",
171
+ "number",
172
+ "boolean",
173
+ "null"
174
+ ]
175
+ },
176
+ "$gte": {
177
+ "type": [
178
+ "string",
179
+ "number",
180
+ "boolean",
181
+ "null"
182
+ ]
183
+ },
184
+ "$lte": {
185
+ "type": [
186
+ "string",
187
+ "number",
188
+ "boolean",
189
+ "null"
190
+ ]
191
+ },
192
+ "$startsWith": {
193
+ "type": "string",
194
+ "minLength": 1
195
+ },
196
+ "$endsWith": {
197
+ "type": "string",
198
+ "minLength": 1
199
+ },
200
+ "$contains": {
201
+ "type": "string",
202
+ "minLength": 1
203
+ },
204
+ "$ci": {
205
+ "type": "boolean"
206
+ },
207
+ "$in": {
208
+ "type": "array",
209
+ "maxItems": 100,
210
+ "items": {
211
+ "type": [
212
+ "string",
213
+ "number",
214
+ "boolean"
215
+ ]
216
+ }
217
+ },
218
+ "$nin": {
219
+ "type": "array",
220
+ "maxItems": 100,
221
+ "items": {
222
+ "type": [
223
+ "string",
224
+ "number",
225
+ "boolean"
226
+ ]
227
+ }
228
+ }
229
+ },
230
+ "additionalProperties": false
231
+ }
232
+ ]
233
+ },
234
+ "lastUpdated": {
235
+ "oneOf": [
236
+ {
237
+ "type": [
238
+ "string",
239
+ "number",
240
+ "boolean",
241
+ "null"
242
+ ]
243
+ },
244
+ {
245
+ "type": "object",
246
+ "properties": {
247
+ "$eq": {
248
+ "type": [
249
+ "string",
250
+ "number",
251
+ "boolean",
252
+ "null"
253
+ ]
254
+ },
255
+ "$ne": {
256
+ "type": [
257
+ "string",
258
+ "number",
259
+ "boolean",
260
+ "null"
261
+ ]
262
+ },
263
+ "$gt": {
264
+ "type": [
265
+ "string",
266
+ "number",
267
+ "boolean",
268
+ "null"
269
+ ]
270
+ },
271
+ "$lt": {
272
+ "type": [
273
+ "string",
274
+ "number",
275
+ "boolean",
276
+ "null"
277
+ ]
278
+ },
279
+ "$gte": {
280
+ "type": [
281
+ "string",
282
+ "number",
283
+ "boolean",
284
+ "null"
285
+ ]
286
+ },
287
+ "$lte": {
288
+ "type": [
289
+ "string",
290
+ "number",
291
+ "boolean",
292
+ "null"
293
+ ]
294
+ },
295
+ "$startsWith": {
296
+ "type": "string",
297
+ "minLength": 1
298
+ },
299
+ "$endsWith": {
300
+ "type": "string",
301
+ "minLength": 1
302
+ },
303
+ "$contains": {
304
+ "type": "string",
305
+ "minLength": 1
306
+ },
307
+ "$ci": {
308
+ "type": "boolean"
309
+ },
310
+ "$in": {
311
+ "type": "array",
312
+ "maxItems": 100,
313
+ "items": {
314
+ "type": [
315
+ "string",
316
+ "number",
317
+ "boolean"
318
+ ]
319
+ }
320
+ },
321
+ "$nin": {
322
+ "type": "array",
323
+ "maxItems": 100,
324
+ "items": {
325
+ "type": [
326
+ "string",
327
+ "number",
328
+ "boolean"
329
+ ]
330
+ }
331
+ }
332
+ },
333
+ "additionalProperties": false
334
+ }
335
+ ]
336
+ },
337
+ "firstName": {
338
+ "oneOf": [
339
+ {
340
+ "type": [
341
+ "string",
342
+ "number",
343
+ "boolean",
344
+ "null"
345
+ ]
346
+ },
347
+ {
348
+ "type": "object",
349
+ "properties": {
350
+ "$eq": {
351
+ "type": [
352
+ "string",
353
+ "number",
354
+ "boolean",
355
+ "null"
356
+ ]
357
+ },
358
+ "$ne": {
359
+ "type": [
360
+ "string",
361
+ "number",
362
+ "boolean",
363
+ "null"
364
+ ]
365
+ },
366
+ "$gt": {
367
+ "type": [
368
+ "string",
369
+ "number",
370
+ "boolean",
371
+ "null"
372
+ ]
373
+ },
374
+ "$lt": {
375
+ "type": [
376
+ "string",
377
+ "number",
378
+ "boolean",
379
+ "null"
380
+ ]
381
+ },
382
+ "$gte": {
383
+ "type": [
384
+ "string",
385
+ "number",
386
+ "boolean",
387
+ "null"
388
+ ]
389
+ },
390
+ "$lte": {
391
+ "type": [
392
+ "string",
393
+ "number",
394
+ "boolean",
395
+ "null"
396
+ ]
397
+ },
398
+ "$startsWith": {
399
+ "type": "string",
400
+ "minLength": 1
401
+ },
402
+ "$endsWith": {
403
+ "type": "string",
404
+ "minLength": 1
405
+ },
406
+ "$contains": {
407
+ "type": "string",
408
+ "minLength": 1
409
+ },
410
+ "$ci": {
411
+ "type": "boolean"
412
+ },
413
+ "$in": {
414
+ "type": "array",
415
+ "maxItems": 100,
416
+ "items": {
417
+ "type": [
418
+ "string",
419
+ "number",
420
+ "boolean"
421
+ ]
422
+ }
423
+ },
424
+ "$nin": {
425
+ "type": "array",
426
+ "maxItems": 100,
427
+ "items": {
428
+ "type": [
429
+ "string",
430
+ "number",
431
+ "boolean"
432
+ ]
433
+ }
434
+ }
435
+ },
436
+ "additionalProperties": false
437
+ }
438
+ ]
439
+ },
440
+ "lastName": {
441
+ "oneOf": [
442
+ {
443
+ "type": [
444
+ "string",
445
+ "number",
446
+ "boolean",
447
+ "null"
448
+ ]
449
+ },
450
+ {
451
+ "type": "object",
452
+ "properties": {
453
+ "$eq": {
454
+ "type": [
455
+ "string",
456
+ "number",
457
+ "boolean",
458
+ "null"
459
+ ]
460
+ },
461
+ "$ne": {
462
+ "type": [
463
+ "string",
464
+ "number",
465
+ "boolean",
466
+ "null"
467
+ ]
468
+ },
469
+ "$gt": {
470
+ "type": [
471
+ "string",
472
+ "number",
473
+ "boolean",
474
+ "null"
475
+ ]
476
+ },
477
+ "$lt": {
478
+ "type": [
479
+ "string",
480
+ "number",
481
+ "boolean",
482
+ "null"
483
+ ]
484
+ },
485
+ "$gte": {
486
+ "type": [
487
+ "string",
488
+ "number",
489
+ "boolean",
490
+ "null"
491
+ ]
492
+ },
493
+ "$lte": {
494
+ "type": [
495
+ "string",
496
+ "number",
497
+ "boolean",
498
+ "null"
499
+ ]
500
+ },
501
+ "$startsWith": {
502
+ "type": "string",
503
+ "minLength": 1
504
+ },
505
+ "$endsWith": {
506
+ "type": "string",
507
+ "minLength": 1
508
+ },
509
+ "$contains": {
510
+ "type": "string",
511
+ "minLength": 1
512
+ },
513
+ "$ci": {
514
+ "type": "boolean"
515
+ },
516
+ "$in": {
517
+ "type": "array",
518
+ "maxItems": 100,
519
+ "items": {
520
+ "type": [
521
+ "string",
522
+ "number",
523
+ "boolean"
524
+ ]
525
+ }
526
+ },
527
+ "$nin": {
528
+ "type": "array",
529
+ "maxItems": 100,
530
+ "items": {
531
+ "type": [
532
+ "string",
533
+ "number",
534
+ "boolean"
535
+ ]
536
+ }
537
+ }
538
+ },
539
+ "additionalProperties": false
540
+ }
541
+ ]
542
+ },
543
+ "email": {
544
+ "oneOf": [
545
+ {
546
+ "type": [
547
+ "string",
548
+ "number",
549
+ "boolean",
550
+ "null"
551
+ ]
552
+ },
553
+ {
554
+ "type": "object",
555
+ "properties": {
556
+ "$eq": {
557
+ "type": [
558
+ "string",
559
+ "number",
560
+ "boolean",
561
+ "null"
562
+ ]
563
+ },
564
+ "$ne": {
565
+ "type": [
566
+ "string",
567
+ "number",
568
+ "boolean",
569
+ "null"
570
+ ]
571
+ },
572
+ "$gt": {
573
+ "type": [
574
+ "string",
575
+ "number",
576
+ "boolean",
577
+ "null"
578
+ ]
579
+ },
580
+ "$lt": {
581
+ "type": [
582
+ "string",
583
+ "number",
584
+ "boolean",
585
+ "null"
586
+ ]
587
+ },
588
+ "$gte": {
589
+ "type": [
590
+ "string",
591
+ "number",
592
+ "boolean",
593
+ "null"
594
+ ]
595
+ },
596
+ "$lte": {
597
+ "type": [
598
+ "string",
599
+ "number",
600
+ "boolean",
601
+ "null"
602
+ ]
603
+ },
604
+ "$startsWith": {
605
+ "type": "string",
606
+ "minLength": 1
607
+ },
608
+ "$endsWith": {
609
+ "type": "string",
610
+ "minLength": 1
611
+ },
612
+ "$contains": {
613
+ "type": "string",
614
+ "minLength": 1
615
+ },
616
+ "$ci": {
617
+ "type": "boolean"
618
+ },
619
+ "$in": {
620
+ "type": "array",
621
+ "maxItems": 100,
622
+ "items": {
623
+ "type": [
624
+ "string",
625
+ "number",
626
+ "boolean"
627
+ ]
628
+ }
629
+ },
630
+ "$nin": {
631
+ "type": "array",
632
+ "maxItems": 100,
633
+ "items": {
634
+ "type": [
635
+ "string",
636
+ "number",
637
+ "boolean"
638
+ ]
639
+ }
640
+ }
641
+ },
642
+ "additionalProperties": false
643
+ }
644
+ ]
645
+ },
646
+ "lastLogin": {
647
+ "oneOf": [
648
+ {
649
+ "type": [
650
+ "string",
651
+ "number",
652
+ "boolean",
653
+ "null"
654
+ ]
655
+ },
656
+ {
657
+ "type": "object",
658
+ "properties": {
659
+ "$eq": {
660
+ "type": [
661
+ "string",
662
+ "number",
663
+ "boolean",
664
+ "null"
665
+ ]
666
+ },
667
+ "$ne": {
668
+ "type": [
669
+ "string",
670
+ "number",
671
+ "boolean",
672
+ "null"
673
+ ]
674
+ },
675
+ "$gt": {
676
+ "type": [
677
+ "string",
678
+ "number",
679
+ "boolean",
680
+ "null"
681
+ ]
682
+ },
683
+ "$lt": {
684
+ "type": [
685
+ "string",
686
+ "number",
687
+ "boolean",
688
+ "null"
689
+ ]
690
+ },
691
+ "$gte": {
692
+ "type": [
693
+ "string",
694
+ "number",
695
+ "boolean",
696
+ "null"
697
+ ]
698
+ },
699
+ "$lte": {
700
+ "type": [
701
+ "string",
702
+ "number",
703
+ "boolean",
704
+ "null"
705
+ ]
706
+ },
707
+ "$startsWith": {
708
+ "type": "string",
709
+ "minLength": 1
710
+ },
711
+ "$endsWith": {
712
+ "type": "string",
713
+ "minLength": 1
714
+ },
715
+ "$contains": {
716
+ "type": "string",
717
+ "minLength": 1
718
+ },
719
+ "$ci": {
720
+ "type": "boolean"
721
+ },
722
+ "$in": {
723
+ "type": "array",
724
+ "maxItems": 100,
725
+ "items": {
726
+ "type": [
727
+ "string",
728
+ "number",
729
+ "boolean"
730
+ ]
731
+ }
732
+ },
733
+ "$nin": {
734
+ "type": "array",
735
+ "maxItems": 100,
736
+ "items": {
737
+ "type": [
738
+ "string",
739
+ "number",
740
+ "boolean"
741
+ ]
742
+ }
743
+ }
744
+ },
745
+ "additionalProperties": false
746
+ }
747
+ ]
748
+ },
749
+ "passwordLastUpdated": {
750
+ "oneOf": [
751
+ {
752
+ "type": [
753
+ "string",
754
+ "number",
755
+ "boolean",
756
+ "null"
757
+ ]
758
+ },
759
+ {
760
+ "type": "object",
761
+ "properties": {
762
+ "$eq": {
763
+ "type": [
764
+ "string",
765
+ "number",
766
+ "boolean",
767
+ "null"
768
+ ]
769
+ },
770
+ "$ne": {
771
+ "type": [
772
+ "string",
773
+ "number",
774
+ "boolean",
775
+ "null"
776
+ ]
777
+ },
778
+ "$gt": {
779
+ "type": [
780
+ "string",
781
+ "number",
782
+ "boolean",
783
+ "null"
784
+ ]
785
+ },
786
+ "$lt": {
787
+ "type": [
788
+ "string",
789
+ "number",
790
+ "boolean",
791
+ "null"
792
+ ]
793
+ },
794
+ "$gte": {
795
+ "type": [
796
+ "string",
797
+ "number",
798
+ "boolean",
799
+ "null"
800
+ ]
801
+ },
802
+ "$lte": {
803
+ "type": [
804
+ "string",
805
+ "number",
806
+ "boolean",
807
+ "null"
808
+ ]
809
+ },
810
+ "$startsWith": {
811
+ "type": "string",
812
+ "minLength": 1
813
+ },
814
+ "$endsWith": {
815
+ "type": "string",
816
+ "minLength": 1
817
+ },
818
+ "$contains": {
819
+ "type": "string",
820
+ "minLength": 1
821
+ },
822
+ "$ci": {
823
+ "type": "boolean"
824
+ },
825
+ "$in": {
826
+ "type": "array",
827
+ "maxItems": 100,
828
+ "items": {
829
+ "type": [
830
+ "string",
831
+ "number",
832
+ "boolean"
833
+ ]
834
+ }
835
+ },
836
+ "$nin": {
837
+ "type": "array",
838
+ "maxItems": 100,
839
+ "items": {
840
+ "type": [
841
+ "string",
842
+ "number",
843
+ "boolean"
844
+ ]
845
+ }
846
+ }
847
+ },
848
+ "additionalProperties": false
849
+ }
850
+ ]
851
+ },
852
+ "userTags": {
853
+ "oneOf": [
854
+ {
855
+ "oneOf": [
856
+ {
857
+ "type": "object",
858
+ "properties": {
859
+ "$tagKey": {
860
+ "type": "string",
861
+ "maxLength": 255
862
+ },
863
+ "$tagValue": {
864
+ "type": "string",
865
+ "maxLength": 255
866
+ }
867
+ },
868
+ "additionalProperties": false,
869
+ "minProperties": 1
870
+ },
871
+ {
872
+ "type": "object",
873
+ "patternProperties": {
874
+ "^[0-9a-zA-Z_-]{1,255}": {
875
+ "type": "string",
876
+ "maxLength": 255
877
+ }
878
+ },
879
+ "additionalProperties": false
880
+ }
881
+ ]
882
+ },
883
+ {
884
+ "type": "object",
885
+ "properties": {
886
+ "$eq": {
887
+ "oneOf": [
888
+ {
889
+ "type": "object",
890
+ "properties": {
891
+ "$tagKey": {
892
+ "type": "string",
893
+ "maxLength": 255
894
+ },
895
+ "$tagValue": {
896
+ "type": "string",
897
+ "maxLength": 255
898
+ }
899
+ },
900
+ "additionalProperties": false,
901
+ "minProperties": 1
902
+ },
903
+ {
904
+ "type": "object",
905
+ "patternProperties": {
906
+ "^[0-9a-zA-Z_-]{1,255}": {
907
+ "type": "string",
908
+ "maxLength": 255
909
+ }
910
+ },
911
+ "additionalProperties": false
912
+ }
913
+ ]
914
+ }
915
+ },
916
+ "required": [
917
+ "$eq"
918
+ ],
919
+ "additionalProperties": false
920
+ },
921
+ {
922
+ "type": "object",
923
+ "properties": {
924
+ "$ne": {
925
+ "oneOf": [
926
+ {
927
+ "type": "object",
928
+ "properties": {
929
+ "$tagKey": {
930
+ "type": "string",
931
+ "maxLength": 255
932
+ },
933
+ "$tagValue": {
934
+ "type": "string",
935
+ "maxLength": 255
936
+ }
937
+ },
938
+ "additionalProperties": false,
939
+ "minProperties": 1
940
+ },
941
+ {
942
+ "type": "object",
943
+ "patternProperties": {
944
+ "^[0-9a-zA-Z_-]{1,255}": {
945
+ "type": "string",
946
+ "maxLength": 255
947
+ }
948
+ },
949
+ "additionalProperties": false
950
+ }
951
+ ]
952
+ }
953
+ },
954
+ "required": [
955
+ "$ne"
956
+ ],
957
+ "additionalProperties": false
958
+ }
959
+ ]
960
+ },
961
+ "experienceGroupId": {
962
+ "oneOf": [
963
+ {
964
+ "oneOf": [
965
+ {
966
+ "type": "string",
967
+ "pattern": "^[A-Fa-f\\d]{24}$"
968
+ },
969
+ {
970
+ "type": "null"
971
+ }
972
+ ]
973
+ },
974
+ {
975
+ "type": "object",
976
+ "properties": {
977
+ "$eq": {
978
+ "oneOf": [
979
+ {
980
+ "type": "string",
981
+ "pattern": "^[A-Fa-f\\d]{24}$"
982
+ },
983
+ {
984
+ "type": "null"
985
+ }
986
+ ]
987
+ },
988
+ "$ne": {
989
+ "oneOf": [
990
+ {
991
+ "type": "string",
992
+ "pattern": "^[A-Fa-f\\d]{24}$"
993
+ },
994
+ {
995
+ "type": "null"
996
+ }
997
+ ]
998
+ },
999
+ "$gt": {
1000
+ "oneOf": [
1001
+ {
1002
+ "type": "string",
1003
+ "pattern": "^[A-Fa-f\\d]{24}$"
1004
+ },
1005
+ {
1006
+ "type": "null"
1007
+ }
1008
+ ]
1009
+ },
1010
+ "$lt": {
1011
+ "oneOf": [
1012
+ {
1013
+ "type": "string",
1014
+ "pattern": "^[A-Fa-f\\d]{24}$"
1015
+ },
1016
+ {
1017
+ "type": "null"
1018
+ }
1019
+ ]
1020
+ },
1021
+ "$gte": {
1022
+ "oneOf": [
1023
+ {
1024
+ "type": "string",
1025
+ "pattern": "^[A-Fa-f\\d]{24}$"
1026
+ },
1027
+ {
1028
+ "type": "null"
1029
+ }
1030
+ ]
1031
+ },
1032
+ "$lte": {
1033
+ "oneOf": [
1034
+ {
1035
+ "type": "string",
1036
+ "pattern": "^[A-Fa-f\\d]{24}$"
1037
+ },
1038
+ {
1039
+ "type": "null"
1040
+ }
1041
+ ]
1042
+ },
1043
+ "$in": {
1044
+ "type": "array",
1045
+ "maxItems": 100,
1046
+ "items": {
1047
+ "type": "string",
1048
+ "pattern": "^[A-Fa-f\\d]{24}$"
1049
+ }
1050
+ },
1051
+ "$nin": {
1052
+ "type": "array",
1053
+ "maxItems": 100,
1054
+ "items": {
1055
+ "type": "string",
1056
+ "pattern": "^[A-Fa-f\\d]{24}$"
1057
+ }
1058
+ }
1059
+ },
1060
+ "additionalProperties": false,
1061
+ "minProperties": 1,
1062
+ "maxProperties": 1
1063
+ }
1064
+ ]
1065
+ }
1066
+ },
1067
+ "additionalProperties": false
1068
+ }