hascii 0.1.0

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,1023 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "anyOf": [
4
+ {
5
+ "type": "object",
6
+ "properties": {
7
+ "meta": {
8
+ "type": "object",
9
+ "properties": {
10
+ "title": {
11
+ "type": "string",
12
+ "minLength": 2,
13
+ "maxLength": 8
14
+ },
15
+ "frame": {
16
+ "type": "integer",
17
+ "minimum": 0,
18
+ "maximum": 15
19
+ },
20
+ "bg": {
21
+ "type": "integer",
22
+ "minimum": 0,
23
+ "maximum": 15
24
+ },
25
+ "art": {
26
+ "minItems": 5,
27
+ "maxItems": 5,
28
+ "type": "array",
29
+ "items": {
30
+ "type": "string"
31
+ }
32
+ },
33
+ "description": {
34
+ "type": "string",
35
+ "maxLength": 80,
36
+ "pattern": "^[a-zA-Z0-9 .,!?'\\-:]*$"
37
+ },
38
+ "type": {
39
+ "type": "string",
40
+ "const": "tracker"
41
+ }
42
+ },
43
+ "required": ["title", "frame", "bg", "art", "type"],
44
+ "additionalProperties": false
45
+ },
46
+ "music": {
47
+ "maxItems": 8,
48
+ "type": "array",
49
+ "items": {
50
+ "type": "object",
51
+ "properties": {
52
+ "name": {
53
+ "type": "string",
54
+ "maxLength": 16
55
+ },
56
+ "bpm": {
57
+ "type": "integer",
58
+ "minimum": 60,
59
+ "maximum": 480
60
+ },
61
+ "tracks": {
62
+ "type": "array",
63
+ "items": {
64
+ "type": "object",
65
+ "properties": {
66
+ "channel": {
67
+ "type": "integer",
68
+ "minimum": 0,
69
+ "maximum": 3
70
+ },
71
+ "wave": {
72
+ "type": "string",
73
+ "enum": [
74
+ "tri",
75
+ "saw",
76
+ "sqr",
77
+ "pls",
78
+ "org",
79
+ "noi",
80
+ "pha",
81
+ "sin"
82
+ ]
83
+ },
84
+ "notes": {
85
+ "type": "array",
86
+ "items": {
87
+ "type": "object",
88
+ "properties": {
89
+ "time": {
90
+ "type": "number",
91
+ "minimum": 0
92
+ },
93
+ "pitch": {
94
+ "type": "integer",
95
+ "minimum": 0,
96
+ "maximum": 11
97
+ },
98
+ "octave": {
99
+ "type": "integer",
100
+ "minimum": 2,
101
+ "maximum": 5
102
+ },
103
+ "duration": {
104
+ "type": "number",
105
+ "minimum": 0.0625
106
+ },
107
+ "volume": {
108
+ "type": "integer",
109
+ "minimum": 0,
110
+ "maximum": 7
111
+ }
112
+ },
113
+ "required": ["time", "pitch"],
114
+ "additionalProperties": false
115
+ }
116
+ }
117
+ },
118
+ "required": ["notes"],
119
+ "additionalProperties": false
120
+ }
121
+ }
122
+ },
123
+ "required": ["tracks"],
124
+ "additionalProperties": false
125
+ }
126
+ }
127
+ },
128
+ "required": ["meta", "music"],
129
+ "additionalProperties": false
130
+ },
131
+ {
132
+ "type": "object",
133
+ "properties": {
134
+ "meta": {
135
+ "type": "object",
136
+ "properties": {
137
+ "title": {
138
+ "type": "string",
139
+ "minLength": 2,
140
+ "maxLength": 8
141
+ },
142
+ "frame": {
143
+ "type": "integer",
144
+ "minimum": 0,
145
+ "maximum": 15
146
+ },
147
+ "bg": {
148
+ "type": "integer",
149
+ "minimum": 0,
150
+ "maximum": 15
151
+ },
152
+ "art": {
153
+ "minItems": 5,
154
+ "maxItems": 5,
155
+ "type": "array",
156
+ "items": {
157
+ "type": "string"
158
+ }
159
+ },
160
+ "description": {
161
+ "type": "string",
162
+ "maxLength": 80,
163
+ "pattern": "^[a-zA-Z0-9 .,!?'\\-:]*$"
164
+ },
165
+ "type": {
166
+ "type": "string",
167
+ "const": "game"
168
+ }
169
+ },
170
+ "required": ["title", "frame", "bg", "art", "type"],
171
+ "additionalProperties": false
172
+ },
173
+ "init": {
174
+ "default": {},
175
+ "type": "object",
176
+ "propertyNames": {
177
+ "type": "string"
178
+ },
179
+ "additionalProperties": {
180
+ "$ref": "#/definitions/__schema0"
181
+ }
182
+ },
183
+ "update": {
184
+ "default": [],
185
+ "type": "array",
186
+ "items": {
187
+ "$ref": "#/definitions/__schema1"
188
+ }
189
+ },
190
+ "draw": {
191
+ "default": [],
192
+ "type": "array",
193
+ "items": {
194
+ "$ref": "#/definitions/__schema1"
195
+ }
196
+ }
197
+ },
198
+ "required": ["init", "update", "draw"],
199
+ "additionalProperties": false
200
+ },
201
+ {
202
+ "type": "object",
203
+ "properties": {
204
+ "meta": {
205
+ "type": "object",
206
+ "properties": {
207
+ "title": {
208
+ "type": "string",
209
+ "minLength": 2,
210
+ "maxLength": 8
211
+ },
212
+ "frame": {
213
+ "type": "integer",
214
+ "minimum": 0,
215
+ "maximum": 15
216
+ },
217
+ "bg": {
218
+ "type": "integer",
219
+ "minimum": 0,
220
+ "maximum": 15
221
+ },
222
+ "art": {
223
+ "minItems": 5,
224
+ "maxItems": 5,
225
+ "type": "array",
226
+ "items": {
227
+ "type": "string"
228
+ }
229
+ },
230
+ "description": {
231
+ "type": "string",
232
+ "maxLength": 80,
233
+ "pattern": "^[a-zA-Z0-9 .,!?'\\-:]*$"
234
+ }
235
+ },
236
+ "required": ["title", "frame", "bg", "art"],
237
+ "additionalProperties": false
238
+ },
239
+ "init": {
240
+ "default": {},
241
+ "type": "object",
242
+ "propertyNames": {
243
+ "type": "string"
244
+ },
245
+ "additionalProperties": {
246
+ "$ref": "#/definitions/__schema0"
247
+ }
248
+ },
249
+ "update": {
250
+ "default": [],
251
+ "type": "array",
252
+ "items": {
253
+ "$ref": "#/definitions/__schema1"
254
+ }
255
+ },
256
+ "draw": {
257
+ "default": [],
258
+ "type": "array",
259
+ "items": {
260
+ "$ref": "#/definitions/__schema1"
261
+ }
262
+ }
263
+ },
264
+ "required": ["init", "update", "draw"],
265
+ "additionalProperties": false
266
+ }
267
+ ],
268
+ "definitions": {
269
+ "__schema0": {
270
+ "anyOf": [
271
+ {
272
+ "type": "number"
273
+ },
274
+ {
275
+ "type": "string"
276
+ },
277
+ {
278
+ "type": "boolean"
279
+ },
280
+ {
281
+ "type": "array",
282
+ "items": {
283
+ "$ref": "#/definitions/__schema0"
284
+ }
285
+ },
286
+ {
287
+ "type": "object",
288
+ "propertyNames": {
289
+ "type": "string"
290
+ },
291
+ "additionalProperties": {
292
+ "$ref": "#/definitions/__schema0"
293
+ }
294
+ }
295
+ ]
296
+ },
297
+ "__schema1": {
298
+ "anyOf": [
299
+ {
300
+ "type": "object",
301
+ "properties": {
302
+ "set": {
303
+ "type": "object",
304
+ "propertyNames": {
305
+ "type": "string"
306
+ },
307
+ "additionalProperties": {
308
+ "$ref": "#/definitions/__schema2"
309
+ }
310
+ }
311
+ },
312
+ "required": ["set"],
313
+ "additionalProperties": false
314
+ },
315
+ {
316
+ "type": "object",
317
+ "properties": {
318
+ "if": {
319
+ "$ref": "#/definitions/__schema3"
320
+ },
321
+ "then": {
322
+ "type": "array",
323
+ "items": {
324
+ "allOf": [
325
+ {
326
+ "$ref": "#/definitions/__schema1"
327
+ }
328
+ ]
329
+ }
330
+ },
331
+ "else": {
332
+ "type": "array",
333
+ "items": {
334
+ "allOf": [
335
+ {
336
+ "$ref": "#/definitions/__schema1"
337
+ }
338
+ ]
339
+ }
340
+ },
341
+ "set": {
342
+ "type": "object",
343
+ "propertyNames": {
344
+ "type": "string"
345
+ },
346
+ "additionalProperties": {
347
+ "$ref": "#/definitions/__schema2"
348
+ }
349
+ }
350
+ },
351
+ "required": ["if"],
352
+ "additionalProperties": false
353
+ },
354
+ {
355
+ "type": "object",
356
+ "properties": {
357
+ "each": {
358
+ "type": "string"
359
+ },
360
+ "as": {
361
+ "type": "string"
362
+ },
363
+ "index": {
364
+ "type": "string"
365
+ },
366
+ "do": {
367
+ "type": "array",
368
+ "items": {
369
+ "allOf": [
370
+ {
371
+ "$ref": "#/definitions/__schema1"
372
+ }
373
+ ]
374
+ }
375
+ }
376
+ },
377
+ "required": ["each", "as", "do"],
378
+ "additionalProperties": false
379
+ },
380
+ {
381
+ "type": "object",
382
+ "properties": {
383
+ "push": {
384
+ "type": "object",
385
+ "properties": {
386
+ "to": {
387
+ "type": "string"
388
+ },
389
+ "item": {
390
+ "$ref": "#/definitions/__schema3"
391
+ }
392
+ },
393
+ "required": ["to", "item"],
394
+ "additionalProperties": false
395
+ }
396
+ },
397
+ "required": ["push"],
398
+ "additionalProperties": false
399
+ },
400
+ {
401
+ "type": "object",
402
+ "properties": {
403
+ "filter": {
404
+ "type": "object",
405
+ "properties": {
406
+ "list": {
407
+ "type": "string"
408
+ },
409
+ "as": {
410
+ "type": "string"
411
+ },
412
+ "cond": {
413
+ "$ref": "#/definitions/__schema3"
414
+ }
415
+ },
416
+ "required": ["list", "as", "cond"],
417
+ "additionalProperties": false
418
+ }
419
+ },
420
+ "required": ["filter"],
421
+ "additionalProperties": false
422
+ },
423
+ {
424
+ "type": "object",
425
+ "properties": {
426
+ "fill": {
427
+ "$ref": "#/definitions/__schema3"
428
+ }
429
+ },
430
+ "required": ["fill"],
431
+ "additionalProperties": false
432
+ },
433
+ {
434
+ "type": "object",
435
+ "properties": {
436
+ "stroke": {
437
+ "$ref": "#/definitions/__schema3"
438
+ }
439
+ },
440
+ "required": ["stroke"],
441
+ "additionalProperties": false
442
+ },
443
+ {
444
+ "type": "object",
445
+ "properties": {
446
+ "noFill": {
447
+ "anyOf": [
448
+ {
449
+ "type": "boolean",
450
+ "const": true
451
+ },
452
+ {
453
+ "type": "null"
454
+ }
455
+ ]
456
+ }
457
+ },
458
+ "required": ["noFill"],
459
+ "additionalProperties": false
460
+ },
461
+ {
462
+ "type": "object",
463
+ "properties": {
464
+ "noStroke": {
465
+ "anyOf": [
466
+ {
467
+ "type": "boolean",
468
+ "const": true
469
+ },
470
+ {
471
+ "type": "null"
472
+ }
473
+ ]
474
+ }
475
+ },
476
+ "required": ["noStroke"],
477
+ "additionalProperties": false
478
+ },
479
+ {
480
+ "type": "object",
481
+ "properties": {
482
+ "strokeStyle": {
483
+ "type": "string",
484
+ "enum": ["light", "heavy", "double", "round"]
485
+ }
486
+ },
487
+ "required": ["strokeStyle"],
488
+ "additionalProperties": false
489
+ },
490
+ {
491
+ "type": "object",
492
+ "properties": {
493
+ "cls": {
494
+ "anyOf": [
495
+ {
496
+ "type": "boolean",
497
+ "const": true
498
+ },
499
+ {
500
+ "type": "null"
501
+ }
502
+ ]
503
+ }
504
+ },
505
+ "required": ["cls"],
506
+ "additionalProperties": false
507
+ },
508
+ {
509
+ "type": "object",
510
+ "properties": {
511
+ "rect": {
512
+ "type": "array",
513
+ "items": [
514
+ {
515
+ "$ref": "#/definitions/__schema3"
516
+ },
517
+ {
518
+ "$ref": "#/definitions/__schema3"
519
+ },
520
+ {
521
+ "$ref": "#/definitions/__schema3"
522
+ },
523
+ {
524
+ "$ref": "#/definitions/__schema3"
525
+ }
526
+ ]
527
+ }
528
+ },
529
+ "required": ["rect"],
530
+ "additionalProperties": false
531
+ },
532
+ {
533
+ "type": "object",
534
+ "properties": {
535
+ "print": {
536
+ "type": "array",
537
+ "items": [
538
+ {
539
+ "$ref": "#/definitions/__schema3"
540
+ },
541
+ {
542
+ "$ref": "#/definitions/__schema3"
543
+ },
544
+ {
545
+ "$ref": "#/definitions/__schema3"
546
+ }
547
+ ]
548
+ }
549
+ },
550
+ "required": ["print"],
551
+ "additionalProperties": false
552
+ },
553
+ {
554
+ "type": "object",
555
+ "properties": {
556
+ "sfx": {
557
+ "type": "object",
558
+ "properties": {
559
+ "wave": {
560
+ "type": "string",
561
+ "enum": [
562
+ "tri",
563
+ "saw",
564
+ "sqr",
565
+ "pls",
566
+ "org",
567
+ "noi",
568
+ "pha",
569
+ "sin"
570
+ ]
571
+ },
572
+ "freq": {
573
+ "$ref": "#/definitions/__schema3"
574
+ },
575
+ "length": {
576
+ "$ref": "#/definitions/__schema3"
577
+ },
578
+ "volume": {
579
+ "$ref": "#/definitions/__schema3"
580
+ },
581
+ "effect": {
582
+ "type": "string",
583
+ "enum": [
584
+ "pitchUp",
585
+ "vibrato",
586
+ "pitchDown",
587
+ "fadeIn",
588
+ "fadeOut"
589
+ ]
590
+ }
591
+ },
592
+ "required": ["wave", "freq", "length", "volume"],
593
+ "additionalProperties": false
594
+ }
595
+ },
596
+ "required": ["sfx"],
597
+ "additionalProperties": false
598
+ }
599
+ ]
600
+ },
601
+ "__schema2": {
602
+ "anyOf": [
603
+ {
604
+ "$ref": "#/definitions/__schema3"
605
+ },
606
+ {
607
+ "type": "array",
608
+ "items": {
609
+ "$ref": "#/definitions/__schema2"
610
+ }
611
+ }
612
+ ]
613
+ },
614
+ "__schema3": {
615
+ "anyOf": [
616
+ {
617
+ "type": "number"
618
+ },
619
+ {
620
+ "type": "string"
621
+ },
622
+ {
623
+ "type": "object",
624
+ "properties": {
625
+ "add": {
626
+ "type": "array",
627
+ "items": [
628
+ {
629
+ "$ref": "#/definitions/__schema3"
630
+ },
631
+ {
632
+ "$ref": "#/definitions/__schema3"
633
+ }
634
+ ]
635
+ }
636
+ },
637
+ "required": ["add"],
638
+ "additionalProperties": false
639
+ },
640
+ {
641
+ "type": "object",
642
+ "properties": {
643
+ "sub": {
644
+ "type": "array",
645
+ "items": [
646
+ {
647
+ "$ref": "#/definitions/__schema3"
648
+ },
649
+ {
650
+ "$ref": "#/definitions/__schema3"
651
+ }
652
+ ]
653
+ }
654
+ },
655
+ "required": ["sub"],
656
+ "additionalProperties": false
657
+ },
658
+ {
659
+ "type": "object",
660
+ "properties": {
661
+ "mul": {
662
+ "type": "array",
663
+ "items": [
664
+ {
665
+ "$ref": "#/definitions/__schema3"
666
+ },
667
+ {
668
+ "$ref": "#/definitions/__schema3"
669
+ }
670
+ ]
671
+ }
672
+ },
673
+ "required": ["mul"],
674
+ "additionalProperties": false
675
+ },
676
+ {
677
+ "type": "object",
678
+ "properties": {
679
+ "div": {
680
+ "type": "array",
681
+ "items": [
682
+ {
683
+ "$ref": "#/definitions/__schema3"
684
+ },
685
+ {
686
+ "$ref": "#/definitions/__schema3"
687
+ }
688
+ ]
689
+ }
690
+ },
691
+ "required": ["div"],
692
+ "additionalProperties": false
693
+ },
694
+ {
695
+ "type": "object",
696
+ "properties": {
697
+ "mod": {
698
+ "type": "array",
699
+ "items": [
700
+ {
701
+ "$ref": "#/definitions/__schema3"
702
+ },
703
+ {
704
+ "$ref": "#/definitions/__schema3"
705
+ }
706
+ ]
707
+ }
708
+ },
709
+ "required": ["mod"],
710
+ "additionalProperties": false
711
+ },
712
+ {
713
+ "type": "object",
714
+ "properties": {
715
+ "pow": {
716
+ "type": "array",
717
+ "items": [
718
+ {
719
+ "$ref": "#/definitions/__schema3"
720
+ },
721
+ {
722
+ "$ref": "#/definitions/__schema3"
723
+ }
724
+ ]
725
+ }
726
+ },
727
+ "required": ["pow"],
728
+ "additionalProperties": false
729
+ },
730
+ {
731
+ "type": "object",
732
+ "properties": {
733
+ "abs": {
734
+ "$ref": "#/definitions/__schema3"
735
+ }
736
+ },
737
+ "required": ["abs"],
738
+ "additionalProperties": false
739
+ },
740
+ {
741
+ "type": "object",
742
+ "properties": {
743
+ "neg": {
744
+ "$ref": "#/definitions/__schema3"
745
+ }
746
+ },
747
+ "required": ["neg"],
748
+ "additionalProperties": false
749
+ },
750
+ {
751
+ "type": "object",
752
+ "properties": {
753
+ "floor": {
754
+ "$ref": "#/definitions/__schema3"
755
+ }
756
+ },
757
+ "required": ["floor"],
758
+ "additionalProperties": false
759
+ },
760
+ {
761
+ "type": "object",
762
+ "properties": {
763
+ "ceil": {
764
+ "$ref": "#/definitions/__schema3"
765
+ }
766
+ },
767
+ "required": ["ceil"],
768
+ "additionalProperties": false
769
+ },
770
+ {
771
+ "type": "object",
772
+ "properties": {
773
+ "round": {
774
+ "$ref": "#/definitions/__schema3"
775
+ }
776
+ },
777
+ "required": ["round"],
778
+ "additionalProperties": false
779
+ },
780
+ {
781
+ "type": "object",
782
+ "properties": {
783
+ "sqrt": {
784
+ "$ref": "#/definitions/__schema3"
785
+ }
786
+ },
787
+ "required": ["sqrt"],
788
+ "additionalProperties": false
789
+ },
790
+ {
791
+ "type": "object",
792
+ "properties": {
793
+ "sin": {
794
+ "$ref": "#/definitions/__schema3"
795
+ }
796
+ },
797
+ "required": ["sin"],
798
+ "additionalProperties": false
799
+ },
800
+ {
801
+ "type": "object",
802
+ "properties": {
803
+ "cos": {
804
+ "$ref": "#/definitions/__schema3"
805
+ }
806
+ },
807
+ "required": ["cos"],
808
+ "additionalProperties": false
809
+ },
810
+ {
811
+ "type": "object",
812
+ "properties": {
813
+ "min": {
814
+ "type": "array",
815
+ "items": [
816
+ {
817
+ "$ref": "#/definitions/__schema3"
818
+ },
819
+ {
820
+ "$ref": "#/definitions/__schema3"
821
+ }
822
+ ]
823
+ }
824
+ },
825
+ "required": ["min"],
826
+ "additionalProperties": false
827
+ },
828
+ {
829
+ "type": "object",
830
+ "properties": {
831
+ "max": {
832
+ "type": "array",
833
+ "items": [
834
+ {
835
+ "$ref": "#/definitions/__schema3"
836
+ },
837
+ {
838
+ "$ref": "#/definitions/__schema3"
839
+ }
840
+ ]
841
+ }
842
+ },
843
+ "required": ["max"],
844
+ "additionalProperties": false
845
+ },
846
+ {
847
+ "type": "object",
848
+ "properties": {
849
+ "rnd": {
850
+ "type": "array",
851
+ "items": [
852
+ {
853
+ "$ref": "#/definitions/__schema3"
854
+ },
855
+ {
856
+ "$ref": "#/definitions/__schema3"
857
+ }
858
+ ]
859
+ }
860
+ },
861
+ "required": ["rnd"],
862
+ "additionalProperties": false
863
+ },
864
+ {
865
+ "type": "object",
866
+ "properties": {
867
+ "eq": {
868
+ "type": "array",
869
+ "items": [
870
+ {
871
+ "$ref": "#/definitions/__schema3"
872
+ },
873
+ {
874
+ "$ref": "#/definitions/__schema3"
875
+ }
876
+ ]
877
+ }
878
+ },
879
+ "required": ["eq"],
880
+ "additionalProperties": false
881
+ },
882
+ {
883
+ "type": "object",
884
+ "properties": {
885
+ "lt": {
886
+ "type": "array",
887
+ "items": [
888
+ {
889
+ "$ref": "#/definitions/__schema3"
890
+ },
891
+ {
892
+ "$ref": "#/definitions/__schema3"
893
+ }
894
+ ]
895
+ }
896
+ },
897
+ "required": ["lt"],
898
+ "additionalProperties": false
899
+ },
900
+ {
901
+ "type": "object",
902
+ "properties": {
903
+ "lte": {
904
+ "type": "array",
905
+ "items": [
906
+ {
907
+ "$ref": "#/definitions/__schema3"
908
+ },
909
+ {
910
+ "$ref": "#/definitions/__schema3"
911
+ }
912
+ ]
913
+ }
914
+ },
915
+ "required": ["lte"],
916
+ "additionalProperties": false
917
+ },
918
+ {
919
+ "type": "object",
920
+ "properties": {
921
+ "gt": {
922
+ "type": "array",
923
+ "items": [
924
+ {
925
+ "$ref": "#/definitions/__schema3"
926
+ },
927
+ {
928
+ "$ref": "#/definitions/__schema3"
929
+ }
930
+ ]
931
+ }
932
+ },
933
+ "required": ["gt"],
934
+ "additionalProperties": false
935
+ },
936
+ {
937
+ "type": "object",
938
+ "properties": {
939
+ "gte": {
940
+ "type": "array",
941
+ "items": [
942
+ {
943
+ "$ref": "#/definitions/__schema3"
944
+ },
945
+ {
946
+ "$ref": "#/definitions/__schema3"
947
+ }
948
+ ]
949
+ }
950
+ },
951
+ "required": ["gte"],
952
+ "additionalProperties": false
953
+ },
954
+ {
955
+ "type": "object",
956
+ "properties": {
957
+ "and": {
958
+ "minItems": 2,
959
+ "type": "array",
960
+ "items": {
961
+ "$ref": "#/definitions/__schema3"
962
+ }
963
+ }
964
+ },
965
+ "required": ["and"],
966
+ "additionalProperties": false
967
+ },
968
+ {
969
+ "type": "object",
970
+ "properties": {
971
+ "or": {
972
+ "minItems": 2,
973
+ "type": "array",
974
+ "items": {
975
+ "$ref": "#/definitions/__schema3"
976
+ }
977
+ }
978
+ },
979
+ "required": ["or"],
980
+ "additionalProperties": false
981
+ },
982
+ {
983
+ "type": "object",
984
+ "properties": {
985
+ "not": {
986
+ "$ref": "#/definitions/__schema3"
987
+ }
988
+ },
989
+ "required": ["not"],
990
+ "additionalProperties": false
991
+ },
992
+ {
993
+ "type": "object",
994
+ "properties": {
995
+ "at": {
996
+ "type": "array",
997
+ "items": [
998
+ {
999
+ "$ref": "#/definitions/__schema3"
1000
+ },
1001
+ {
1002
+ "$ref": "#/definitions/__schema3"
1003
+ }
1004
+ ]
1005
+ }
1006
+ },
1007
+ "required": ["at"],
1008
+ "additionalProperties": false
1009
+ },
1010
+ {
1011
+ "type": "object",
1012
+ "properties": {
1013
+ "len": {
1014
+ "$ref": "#/definitions/__schema3"
1015
+ }
1016
+ },
1017
+ "required": ["len"],
1018
+ "additionalProperties": false
1019
+ }
1020
+ ]
1021
+ }
1022
+ }
1023
+ }