libtmux 0.1.0.alpha.1

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