@nxtedition/types 22.2.1 → 23.0.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,3836 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "definitions": {
4
+ "AddOperation": {
5
+ "additionalProperties": false,
6
+ "description": "All diff* functions should return a list of operations, often empty.\n\nEach operation should be an object with two to four fields:\n`op`: the name of the operation; one of \"add\", \"remove\", \"replace\", \"move\",\n\"copy\", or \"test\".\n`path`: a JSON pointer string\n`from`: a JSON pointer string\n`value`: a JSON value\n\nThe different operations have different arguments.\n\"add\": [`path`, `value`]\n\"remove\": [`path`]\n\"replace\": [`path`, `value`]\n\"move\": [`from`, `path`]\n\"copy\": [`from`, `path`]\n\"test\": [`path`, `value`]\n\nCurrently this only really differentiates between Arrays, Objects, and\nEverything Else, which is pretty much just what JSON substantially\ndifferentiates between.",
7
+ "properties": {
8
+ "op": {
9
+ "const": "add",
10
+ "type": "string"
11
+ },
12
+ "path": {
13
+ "type": "string"
14
+ },
15
+ "value": {}
16
+ },
17
+ "required": [
18
+ "op",
19
+ "path",
20
+ "value"
21
+ ],
22
+ "type": "object"
23
+ },
24
+ "AssetAssigneesRecord": {
25
+ "additionalProperties": false,
26
+ "properties": {
27
+ "value": {
28
+ "items": {
29
+ "type": "string"
30
+ },
31
+ "type": "array"
32
+ }
33
+ },
34
+ "type": "object"
35
+ },
36
+ "AssetDomainRecords": {
37
+ "additionalProperties": false,
38
+ "properties": {
39
+ ":asset.assignees?": {
40
+ "$ref": "#/definitions/AssetAssigneesRecord"
41
+ },
42
+ ":asset.fileRefs?": {
43
+ "$ref": "#/definitions/AssetFileRefsRecord"
44
+ },
45
+ ":asset.refs?": {
46
+ "$ref": "#/definitions/AssetRefsRecord"
47
+ },
48
+ ":asset.tags?": {
49
+ "$ref": "#/definitions/AssetTagsRecord"
50
+ },
51
+ ":asset.title?": {
52
+ "$ref": "#/definitions/AssetTitleRecord"
53
+ },
54
+ ":asset.types?": {
55
+ "$ref": "#/definitions/AssetTypesRecord"
56
+ }
57
+ },
58
+ "required": [
59
+ ":asset.assignees?",
60
+ ":asset.fileRefs?",
61
+ ":asset.refs?",
62
+ ":asset.tags?",
63
+ ":asset.title?",
64
+ ":asset.types?"
65
+ ],
66
+ "type": "object"
67
+ },
68
+ "AssetFileRefsRecord": {
69
+ "additionalProperties": false,
70
+ "properties": {
71
+ "value": {
72
+ "items": {
73
+ "type": "string"
74
+ },
75
+ "type": "array"
76
+ }
77
+ },
78
+ "type": "object"
79
+ },
80
+ "AssetPermission": {
81
+ "additionalProperties": false,
82
+ "properties": {
83
+ "method": {
84
+ "type": "string"
85
+ },
86
+ "type": {
87
+ "const": "asset",
88
+ "type": "string"
89
+ }
90
+ },
91
+ "required": [
92
+ "method",
93
+ "type"
94
+ ],
95
+ "type": "object"
96
+ },
97
+ "AssetRef": {
98
+ "additionalProperties": false,
99
+ "properties": {
100
+ "id": {
101
+ "type": "string"
102
+ },
103
+ "key": {
104
+ "type": "string"
105
+ },
106
+ "value": {
107
+ "type": "string"
108
+ }
109
+ },
110
+ "required": [
111
+ "id",
112
+ "key",
113
+ "value"
114
+ ],
115
+ "type": "object"
116
+ },
117
+ "AssetRefsRecord": {
118
+ "additionalProperties": false,
119
+ "properties": {
120
+ "value": {
121
+ "items": {
122
+ "$ref": "#/definitions/AssetRef"
123
+ },
124
+ "type": "array"
125
+ }
126
+ },
127
+ "type": "object"
128
+ },
129
+ "AssetTagsRecord": {
130
+ "additionalProperties": false,
131
+ "properties": {
132
+ "value": {
133
+ "items": {
134
+ "type": "string"
135
+ },
136
+ "type": "array"
137
+ }
138
+ },
139
+ "type": "object"
140
+ },
141
+ "AssetTitleRecord": {
142
+ "additionalProperties": false,
143
+ "properties": {
144
+ "value": {
145
+ "type": "string"
146
+ }
147
+ },
148
+ "type": "object"
149
+ },
150
+ "AssetTypesRecord": {
151
+ "additionalProperties": false,
152
+ "properties": {
153
+ "value": {
154
+ "items": {
155
+ "type": "string"
156
+ },
157
+ "type": "array"
158
+ }
159
+ },
160
+ "type": "object"
161
+ },
162
+ "Block": {
163
+ "additionalProperties": false,
164
+ "properties": {
165
+ "btime": {
166
+ "additionalProperties": false,
167
+ "properties": {
168
+ "typia.tag": {
169
+ "additionalProperties": false,
170
+ "description": "This is a dummy property for compilation.\n\nIt does not mean anything in runtime.",
171
+ "properties": {
172
+ "exclusive": {
173
+ "const": true,
174
+ "type": "boolean"
175
+ },
176
+ "kind": {
177
+ "const": "type",
178
+ "type": "string"
179
+ },
180
+ "schema": {
181
+ "additionalProperties": false,
182
+ "properties": {
183
+ "type": {
184
+ "const": "integer",
185
+ "type": "string"
186
+ }
187
+ },
188
+ "required": [
189
+ "type"
190
+ ],
191
+ "type": "object"
192
+ },
193
+ "target": {
194
+ "enum": [
195
+ "bigint",
196
+ "number"
197
+ ],
198
+ "type": "string"
199
+ },
200
+ "validate": {
201
+ "additionalProperties": false,
202
+ "properties": {
203
+ "bigint": {
204
+ "const": "BigInt(0) <= $input",
205
+ "type": "string"
206
+ },
207
+ "number": {
208
+ "const": "Math.floor($input) === $input && 0 <= $input && $input <= 18446744073709551615",
209
+ "type": "string"
210
+ }
211
+ },
212
+ "required": [
213
+ "bigint",
214
+ "number"
215
+ ],
216
+ "type": "object"
217
+ },
218
+ "value": {
219
+ "const": "uint64",
220
+ "type": "string"
221
+ }
222
+ },
223
+ "required": [
224
+ "exclusive",
225
+ "kind",
226
+ "schema",
227
+ "target",
228
+ "validate",
229
+ "value"
230
+ ],
231
+ "type": "object"
232
+ }
233
+ },
234
+ "type": "object"
235
+ },
236
+ "error": {
237
+ "anyOf": [
238
+ {
239
+ "$ref": "#/definitions/NxtError"
240
+ },
241
+ {
242
+ "items": {
243
+ "$ref": "#/definitions/NxtError"
244
+ },
245
+ "type": "array"
246
+ }
247
+ ]
248
+ },
249
+ "file": {
250
+ "additionalProperties": false,
251
+ "properties": {
252
+ "typia.tag": {
253
+ "additionalProperties": false,
254
+ "description": "This is a dummy property for compilation.\n\nIt does not mean anything in runtime.",
255
+ "properties": {
256
+ "exclusive": {
257
+ "items": [
258
+ {
259
+ "const": "format",
260
+ "type": "string"
261
+ },
262
+ {
263
+ "const": "pattern",
264
+ "type": "string"
265
+ }
266
+ ],
267
+ "maxItems": 2,
268
+ "minItems": 2,
269
+ "type": "array"
270
+ },
271
+ "kind": {
272
+ "const": "pattern",
273
+ "type": "string"
274
+ },
275
+ "schema": {
276
+ "additionalProperties": false,
277
+ "properties": {
278
+ "pattern": {
279
+ "const": "^[0-9A-Za-z~][0-9A-Za-z~._: -]*$",
280
+ "type": "string"
281
+ }
282
+ },
283
+ "required": [
284
+ "pattern"
285
+ ],
286
+ "type": "object"
287
+ },
288
+ "target": {
289
+ "const": "string",
290
+ "type": "string"
291
+ },
292
+ "validate": {
293
+ "const": "/^[0-9A-Za-z~][0-9A-Za-z~._: -]*$/.test($input)",
294
+ "type": "string"
295
+ },
296
+ "value": {
297
+ "const": "^[0-9A-Za-z~][0-9A-Za-z~._: -]*$",
298
+ "type": "string"
299
+ }
300
+ },
301
+ "required": [
302
+ "exclusive",
303
+ "kind",
304
+ "schema",
305
+ "target",
306
+ "validate",
307
+ "value"
308
+ ],
309
+ "type": "object"
310
+ }
311
+ },
312
+ "type": "object"
313
+ },
314
+ "hash": {
315
+ "additionalProperties": false,
316
+ "properties": {
317
+ "typia.tag": {
318
+ "additionalProperties": false,
319
+ "description": "This is a dummy property for compilation.\n\nIt does not mean anything in runtime.",
320
+ "properties": {
321
+ "exclusive": {
322
+ "items": [
323
+ {
324
+ "const": "format",
325
+ "type": "string"
326
+ },
327
+ {
328
+ "const": "pattern",
329
+ "type": "string"
330
+ }
331
+ ],
332
+ "maxItems": 2,
333
+ "minItems": 2,
334
+ "type": "array"
335
+ },
336
+ "kind": {
337
+ "const": "pattern",
338
+ "type": "string"
339
+ },
340
+ "schema": {
341
+ "additionalProperties": false,
342
+ "properties": {
343
+ "pattern": {
344
+ "const": "^([A-Fa-f0-9]{32})?$",
345
+ "type": "string"
346
+ }
347
+ },
348
+ "required": [
349
+ "pattern"
350
+ ],
351
+ "type": "object"
352
+ },
353
+ "target": {
354
+ "const": "string",
355
+ "type": "string"
356
+ },
357
+ "validate": {
358
+ "const": "/^([A-Fa-f0-9]{32})?$/.test($input)",
359
+ "type": "string"
360
+ },
361
+ "value": {
362
+ "const": "^([A-Fa-f0-9]{32})?$",
363
+ "type": "string"
364
+ }
365
+ },
366
+ "required": [
367
+ "exclusive",
368
+ "kind",
369
+ "schema",
370
+ "target",
371
+ "validate",
372
+ "value"
373
+ ],
374
+ "type": "object"
375
+ }
376
+ },
377
+ "type": "object"
378
+ },
379
+ "id": {
380
+ "additionalProperties": false,
381
+ "properties": {
382
+ "typia.tag": {
383
+ "additionalProperties": false,
384
+ "description": "This is a dummy property for compilation.\n\nIt does not mean anything in runtime.",
385
+ "properties": {
386
+ "exclusive": {
387
+ "items": [
388
+ {
389
+ "const": "format",
390
+ "type": "string"
391
+ },
392
+ {
393
+ "const": "pattern",
394
+ "type": "string"
395
+ }
396
+ ],
397
+ "maxItems": 2,
398
+ "minItems": 2,
399
+ "type": "array"
400
+ },
401
+ "kind": {
402
+ "const": "pattern",
403
+ "type": "string"
404
+ },
405
+ "schema": {
406
+ "additionalProperties": false,
407
+ "properties": {
408
+ "pattern": {
409
+ "const": "^[0-9A-Za-z~][0-9A-Za-z~._: -]*$",
410
+ "type": "string"
411
+ }
412
+ },
413
+ "required": [
414
+ "pattern"
415
+ ],
416
+ "type": "object"
417
+ },
418
+ "target": {
419
+ "const": "string",
420
+ "type": "string"
421
+ },
422
+ "validate": {
423
+ "const": "/^[0-9A-Za-z~][0-9A-Za-z~._: -]*$/.test($input)",
424
+ "type": "string"
425
+ },
426
+ "value": {
427
+ "const": "^[0-9A-Za-z~][0-9A-Za-z~._: -]*$",
428
+ "type": "string"
429
+ }
430
+ },
431
+ "required": [
432
+ "exclusive",
433
+ "kind",
434
+ "schema",
435
+ "target",
436
+ "validate",
437
+ "value"
438
+ ],
439
+ "type": "object"
440
+ }
441
+ },
442
+ "type": "object"
443
+ },
444
+ "location": {
445
+ "additionalProperties": false,
446
+ "properties": {
447
+ "typia.tag": {
448
+ "additionalProperties": false,
449
+ "description": "This is a dummy property for compilation.\n\nIt does not mean anything in runtime.",
450
+ "properties": {
451
+ "exclusive": {
452
+ "items": [
453
+ {
454
+ "const": "format",
455
+ "type": "string"
456
+ },
457
+ {
458
+ "const": "pattern",
459
+ "type": "string"
460
+ }
461
+ ],
462
+ "maxItems": 2,
463
+ "minItems": 2,
464
+ "type": "array"
465
+ },
466
+ "kind": {
467
+ "const": "pattern",
468
+ "type": "string"
469
+ },
470
+ "schema": {
471
+ "additionalProperties": false,
472
+ "properties": {
473
+ "pattern": {
474
+ "const": "^[0-9A-Za-z~][0-9A-Za-z~._: -]*$",
475
+ "type": "string"
476
+ }
477
+ },
478
+ "required": [
479
+ "pattern"
480
+ ],
481
+ "type": "object"
482
+ },
483
+ "target": {
484
+ "const": "string",
485
+ "type": "string"
486
+ },
487
+ "validate": {
488
+ "const": "/^[0-9A-Za-z~][0-9A-Za-z~._: -]*$/.test($input)",
489
+ "type": "string"
490
+ },
491
+ "value": {
492
+ "const": "^[0-9A-Za-z~][0-9A-Za-z~._: -]*$",
493
+ "type": "string"
494
+ }
495
+ },
496
+ "required": [
497
+ "exclusive",
498
+ "kind",
499
+ "schema",
500
+ "target",
501
+ "validate",
502
+ "value"
503
+ ],
504
+ "type": "object"
505
+ }
506
+ },
507
+ "type": "object"
508
+ },
509
+ "offset": {
510
+ "additionalProperties": false,
511
+ "properties": {
512
+ "typia.tag": {
513
+ "additionalProperties": false,
514
+ "description": "This is a dummy property for compilation.\n\nIt does not mean anything in runtime.",
515
+ "properties": {
516
+ "exclusive": {
517
+ "const": true,
518
+ "type": "boolean"
519
+ },
520
+ "kind": {
521
+ "const": "type",
522
+ "type": "string"
523
+ },
524
+ "schema": {
525
+ "additionalProperties": false,
526
+ "properties": {
527
+ "type": {
528
+ "const": "integer",
529
+ "type": "string"
530
+ }
531
+ },
532
+ "required": [
533
+ "type"
534
+ ],
535
+ "type": "object"
536
+ },
537
+ "target": {
538
+ "enum": [
539
+ "bigint",
540
+ "number"
541
+ ],
542
+ "type": "string"
543
+ },
544
+ "validate": {
545
+ "additionalProperties": false,
546
+ "properties": {
547
+ "bigint": {
548
+ "const": "BigInt(0) <= $input",
549
+ "type": "string"
550
+ },
551
+ "number": {
552
+ "const": "Math.floor($input) === $input && 0 <= $input && $input <= 18446744073709551615",
553
+ "type": "string"
554
+ }
555
+ },
556
+ "required": [
557
+ "bigint",
558
+ "number"
559
+ ],
560
+ "type": "object"
561
+ },
562
+ "value": {
563
+ "const": "uint64",
564
+ "type": "string"
565
+ }
566
+ },
567
+ "required": [
568
+ "exclusive",
569
+ "kind",
570
+ "schema",
571
+ "target",
572
+ "validate",
573
+ "value"
574
+ ],
575
+ "type": "object"
576
+ }
577
+ },
578
+ "type": "object"
579
+ },
580
+ "path": {
581
+ "type": "string"
582
+ },
583
+ "size": {
584
+ "additionalProperties": false,
585
+ "properties": {
586
+ "typia.tag": {
587
+ "additionalProperties": false,
588
+ "description": "This is a dummy property for compilation.\n\nIt does not mean anything in runtime.",
589
+ "properties": {
590
+ "exclusive": {
591
+ "const": true,
592
+ "type": "boolean"
593
+ },
594
+ "kind": {
595
+ "const": "type",
596
+ "type": "string"
597
+ },
598
+ "schema": {
599
+ "additionalProperties": false,
600
+ "properties": {
601
+ "type": {
602
+ "const": "integer",
603
+ "type": "string"
604
+ }
605
+ },
606
+ "required": [
607
+ "type"
608
+ ],
609
+ "type": "object"
610
+ },
611
+ "target": {
612
+ "enum": [
613
+ "bigint",
614
+ "number"
615
+ ],
616
+ "type": "string"
617
+ },
618
+ "validate": {
619
+ "additionalProperties": false,
620
+ "properties": {
621
+ "bigint": {
622
+ "const": "BigInt(0) <= $input",
623
+ "type": "string"
624
+ },
625
+ "number": {
626
+ "const": "Math.floor($input) === $input && 0 <= $input && $input <= 18446744073709551615",
627
+ "type": "string"
628
+ }
629
+ },
630
+ "required": [
631
+ "bigint",
632
+ "number"
633
+ ],
634
+ "type": "object"
635
+ },
636
+ "value": {
637
+ "const": "uint64",
638
+ "type": "string"
639
+ }
640
+ },
641
+ "required": [
642
+ "exclusive",
643
+ "kind",
644
+ "schema",
645
+ "target",
646
+ "validate",
647
+ "value"
648
+ ],
649
+ "type": "object"
650
+ }
651
+ },
652
+ "type": "object"
653
+ }
654
+ },
655
+ "required": [
656
+ "btime",
657
+ "error",
658
+ "file",
659
+ "hash",
660
+ "id",
661
+ "location",
662
+ "offset",
663
+ "path",
664
+ "size"
665
+ ],
666
+ "type": "object"
667
+ },
668
+ "Blocks": {
669
+ "items": {
670
+ "$ref": "#/definitions/Block"
671
+ },
672
+ "type": "array"
673
+ },
674
+ "BundleDomainRecords": {
675
+ "additionalProperties": false,
676
+ "properties": {
677
+ ":bundle": {
678
+ "$ref": "#/definitions/BundleRecord"
679
+ },
680
+ ":bundle.revisions": {
681
+ "$ref": "#/definitions/BundleRevisionsRecord"
682
+ }
683
+ },
684
+ "required": [
685
+ ":bundle",
686
+ ":bundle.revisions"
687
+ ],
688
+ "type": "object"
689
+ },
690
+ "BundleRecord": {
691
+ "additionalProperties": false,
692
+ "properties": {
693
+ "description": {
694
+ "type": "string"
695
+ },
696
+ "files": {
697
+ "$ref": "#/definitions/Record<string,string>"
698
+ },
699
+ "user": {
700
+ "type": "string"
701
+ }
702
+ },
703
+ "required": [
704
+ "files"
705
+ ],
706
+ "type": "object"
707
+ },
708
+ "BundleRevisionsRecord": {
709
+ "additionalProperties": {
710
+ "$ref": "#/definitions/BundleRecord"
711
+ },
712
+ "type": "object"
713
+ },
714
+ "ConnectionDomainRecords": {
715
+ "additionalProperties": false,
716
+ "properties": {
717
+ ":connection": {
718
+ "$ref": "#/definitions/ConnectionRecord"
719
+ },
720
+ ":connection.methods?": {
721
+ "$ref": "#/definitions/Record<string,object>"
722
+ },
723
+ ":connection.stats?": {
724
+ "$ref": "#/definitions/ConnectionStatsRecord"
725
+ }
726
+ },
727
+ "required": [
728
+ ":connection",
729
+ ":connection.methods?",
730
+ ":connection.stats?"
731
+ ],
732
+ "type": "object"
733
+ },
734
+ "ConnectionRecord": {
735
+ "anyOf": [
736
+ {
737
+ "$ref": "#/definitions/FilePublishConnectionRecord"
738
+ },
739
+ {
740
+ "$ref": "#/definitions/ReutersConnectionRecord"
741
+ },
742
+ {
743
+ "$ref": "#/definitions/FacebookConnectionRecord"
744
+ }
745
+ ]
746
+ },
747
+ "ConnectionStatsRecord": {
748
+ "additionalProperties": false,
749
+ "properties": {
750
+ "pages": {
751
+ "items": {
752
+ "additionalProperties": false,
753
+ "properties": {
754
+ "id": {}
755
+ },
756
+ "required": [
757
+ "id"
758
+ ],
759
+ "type": "object"
760
+ },
761
+ "type": "array"
762
+ },
763
+ "status": {
764
+ "type": "string"
765
+ },
766
+ "substatus": {
767
+ "type": "string"
768
+ }
769
+ },
770
+ "required": [
771
+ "status",
772
+ "substatus"
773
+ ],
774
+ "type": "object"
775
+ },
776
+ "ContactDomainRecords": {
777
+ "additionalProperties": false,
778
+ "properties": {
779
+ ":contact": {
780
+ "$ref": "#/definitions/ContactRecord"
781
+ }
782
+ },
783
+ "required": [
784
+ ":contact"
785
+ ],
786
+ "type": "object"
787
+ },
788
+ "ContactRecord": {
789
+ "additionalProperties": false,
790
+ "properties": {
791
+ "email": {
792
+ "type": "string"
793
+ },
794
+ "firstName": {
795
+ "type": "string"
796
+ },
797
+ "lastName": {
798
+ "type": "string"
799
+ },
800
+ "title": {
801
+ "type": "string"
802
+ }
803
+ },
804
+ "type": "object"
805
+ },
806
+ "CopyOperation": {
807
+ "additionalProperties": false,
808
+ "properties": {
809
+ "from": {
810
+ "type": "string"
811
+ },
812
+ "op": {
813
+ "const": "copy",
814
+ "type": "string"
815
+ },
816
+ "path": {
817
+ "type": "string"
818
+ }
819
+ },
820
+ "required": [
821
+ "from",
822
+ "op",
823
+ "path"
824
+ ],
825
+ "type": "object"
826
+ },
827
+ "DomainRecords": {
828
+ "additionalProperties": false,
829
+ "properties": {
830
+ ":asset.assignees?": {
831
+ "$ref": "#/definitions/AssetAssigneesRecord"
832
+ },
833
+ ":asset.fileRefs?": {
834
+ "$ref": "#/definitions/AssetFileRefsRecord"
835
+ },
836
+ ":asset.refs?": {
837
+ "$ref": "#/definitions/AssetRefsRecord"
838
+ },
839
+ ":asset.tags?": {
840
+ "$ref": "#/definitions/AssetTagsRecord"
841
+ },
842
+ ":asset.title?": {
843
+ "$ref": "#/definitions/AssetTitleRecord"
844
+ },
845
+ ":asset.types?": {
846
+ "$ref": "#/definitions/AssetTypesRecord"
847
+ },
848
+ ":bundle": {
849
+ "$ref": "#/definitions/BundleRecord"
850
+ },
851
+ ":bundle.revisions": {
852
+ "$ref": "#/definitions/BundleRevisionsRecord"
853
+ },
854
+ ":connection": {
855
+ "$ref": "#/definitions/ConnectionRecord"
856
+ },
857
+ ":connection.methods?": {
858
+ "$ref": "#/definitions/Record<string,object>"
859
+ },
860
+ ":connection.stats?": {
861
+ "$ref": "#/definitions/ConnectionStatsRecord"
862
+ },
863
+ ":contact": {
864
+ "$ref": "#/definitions/ContactRecord"
865
+ },
866
+ ":event": {
867
+ "$ref": "#/definitions/EventRecord"
868
+ },
869
+ ":event._template?": {
870
+ "$ref": "#/definitions/Record<string,unknown>"
871
+ },
872
+ ":file.replicate": {
873
+ "$ref": "#/definitions/FileReplicateRecord"
874
+ },
875
+ ":general.created": {
876
+ "$ref": "#/definitions/GeneralCreatedRecord"
877
+ },
878
+ ":general.description": {
879
+ "$ref": "#/definitions/GeneralDescriptionRecord"
880
+ },
881
+ ":general.poster": {
882
+ "$ref": "#/definitions/GeneralPosterRecord"
883
+ },
884
+ ":general.status": {
885
+ "additionalProperties": {
886
+ "$ref": "#/definitions/GeneralStatusRecordValue"
887
+ },
888
+ "type": "object"
889
+ },
890
+ ":general.tags": {
891
+ "$ref": "#/definitions/GeneralTagsRecord"
892
+ },
893
+ ":general.title": {
894
+ "$ref": "#/definitions/GeneralTitleRecord"
895
+ },
896
+ ":media.consolidate": {
897
+ "$ref": "#/definitions/MediaConsolidateRecord"
898
+ },
899
+ ":media.renders?": {
900
+ "$ref": "#/definitions/MediaRendersRecord"
901
+ },
902
+ ":media.source": {
903
+ "$ref": "#/definitions/MediaSourceRecord"
904
+ },
905
+ ":media.transcriptChanges": {
906
+ "additionalProperties": {
907
+ "$ref": "#/definitions/MediaTranscriptChangesRecordValue"
908
+ },
909
+ "type": "object"
910
+ },
911
+ ":permission": {
912
+ "$ref": "#/definitions/PermissionRecordPermisson"
913
+ },
914
+ ":permission?": {
915
+ "$ref": "#/definitions/ProvidedPermissionRecord"
916
+ },
917
+ ":planning": {
918
+ "$ref": "#/definitions/PlanningRecord"
919
+ },
920
+ ":planning.assignees": {
921
+ "$ref": "#/definitions/PlanningAssigneesRecord"
922
+ },
923
+ ":planning.deadline": {
924
+ "$ref": "#/definitions/PlanningDeadlineRecord"
925
+ },
926
+ ":publish": {
927
+ "$ref": "#/definitions/PublishRecord"
928
+ },
929
+ ":publish.methods?": {
930
+ "$ref": "#/definitions/Record<string,{rpcId:string;rpcData:Record<string,unknown>;}>"
931
+ },
932
+ ":publish.stats?": {
933
+ "$ref": "#/definitions/PublishStatsRecord"
934
+ },
935
+ ":role.tags": {
936
+ "$ref": "#/definitions/RoleTagsRecord"
937
+ },
938
+ ":script.children": {
939
+ "$ref": "#/definitions/ScriptChildrenRecord"
940
+ },
941
+ ":search": {
942
+ "$ref": "#/definitions/SearchRecord"
943
+ },
944
+ ":settings": {
945
+ "$ref": "#/definitions/PartialObjectDeep<Settings,{}>"
946
+ },
947
+ ":template": {
948
+ "$ref": "#/definitions/TemplateRecord"
949
+ }
950
+ },
951
+ "required": [
952
+ ":asset.assignees?",
953
+ ":asset.fileRefs?",
954
+ ":asset.refs?",
955
+ ":asset.tags?",
956
+ ":asset.title?",
957
+ ":asset.types?",
958
+ ":bundle",
959
+ ":bundle.revisions",
960
+ ":connection",
961
+ ":connection.methods?",
962
+ ":connection.stats?",
963
+ ":contact",
964
+ ":event",
965
+ ":event._template?",
966
+ ":file.replicate",
967
+ ":general.created",
968
+ ":general.description",
969
+ ":general.poster",
970
+ ":general.status",
971
+ ":general.tags",
972
+ ":general.title",
973
+ ":media.consolidate",
974
+ ":media.renders?",
975
+ ":media.source",
976
+ ":media.transcriptChanges",
977
+ ":permission",
978
+ ":permission?",
979
+ ":planning",
980
+ ":planning.assignees",
981
+ ":planning.deadline",
982
+ ":publish",
983
+ ":publish.methods?",
984
+ ":publish.stats?",
985
+ ":role.tags",
986
+ ":script.children",
987
+ ":search",
988
+ ":settings",
989
+ ":template"
990
+ ],
991
+ "type": "object"
992
+ },
993
+ "ElectronHubApi": {
994
+ "additionalProperties": false,
995
+ "properties": {
996
+ "clipboard": {},
997
+ "controlDownloadItem": {
998
+ "additionalProperties": false,
999
+ "type": "object"
1000
+ },
1001
+ "getCurrentVersion": {
1002
+ "additionalProperties": false,
1003
+ "type": "object"
1004
+ },
1005
+ "getLatestVersion": {
1006
+ "additionalProperties": false,
1007
+ "type": "object"
1008
+ },
1009
+ "getWebdavPath": {
1010
+ "additionalProperties": false,
1011
+ "type": "object"
1012
+ },
1013
+ "installDavinciPlugin": {
1014
+ "additionalProperties": false,
1015
+ "type": "object"
1016
+ },
1017
+ "openInApp": {
1018
+ "additionalProperties": false,
1019
+ "type": "object"
1020
+ },
1021
+ "showOpenDialog": {
1022
+ "additionalProperties": false,
1023
+ "type": "object"
1024
+ },
1025
+ "startDrag": {
1026
+ "additionalProperties": false,
1027
+ "type": "object"
1028
+ },
1029
+ "triggerUpdate": {
1030
+ "additionalProperties": false,
1031
+ "type": "object"
1032
+ }
1033
+ },
1034
+ "required": [
1035
+ "clipboard",
1036
+ "controlDownloadItem",
1037
+ "getCurrentVersion",
1038
+ "getLatestVersion",
1039
+ "getWebdavPath",
1040
+ "installDavinciPlugin",
1041
+ "openInApp",
1042
+ "showOpenDialog",
1043
+ "startDrag",
1044
+ "triggerUpdate"
1045
+ ],
1046
+ "type": "object"
1047
+ },
1048
+ "EventDomainRecords": {
1049
+ "additionalProperties": false,
1050
+ "properties": {
1051
+ ":event": {
1052
+ "$ref": "#/definitions/EventRecord"
1053
+ },
1054
+ ":event._template?": {
1055
+ "$ref": "#/definitions/Record<string,unknown>"
1056
+ }
1057
+ },
1058
+ "required": [
1059
+ ":event",
1060
+ ":event._template?"
1061
+ ],
1062
+ "type": "object"
1063
+ },
1064
+ "EventRecord": {
1065
+ "additionalProperties": false,
1066
+ "properties": {
1067
+ "duration": {
1068
+ "type": "number"
1069
+ },
1070
+ "end": {
1071
+ "type": "number"
1072
+ },
1073
+ "lang": {
1074
+ "type": "string"
1075
+ },
1076
+ "start": {
1077
+ "type": "number"
1078
+ },
1079
+ "style": {
1080
+ "type": "string"
1081
+ },
1082
+ "styleOverrides": {
1083
+ "$ref": "#/definitions/EventSubtitleStyle"
1084
+ },
1085
+ "text": {
1086
+ "type": "string"
1087
+ }
1088
+ },
1089
+ "type": "object"
1090
+ },
1091
+ "EventSubtitleStyle": {
1092
+ "additionalProperties": false,
1093
+ "properties": {
1094
+ "alignment": {
1095
+ "description": "1 - bottom left\n2 - bottom center\n3 - bottom right\n4 - center left\n5 - center center\n6 - center right\n7 - top left\n8 - top center\n9 - top right",
1096
+ "type": "string"
1097
+ }
1098
+ },
1099
+ "type": "object"
1100
+ },
1101
+ "FacebookConnectionRecord": {
1102
+ "additionalProperties": false,
1103
+ "properties": {
1104
+ "grantedScopes": {
1105
+ "items": {
1106
+ "type": "string"
1107
+ },
1108
+ "type": "array"
1109
+ },
1110
+ "type": {
1111
+ "const": "facebook",
1112
+ "type": "string"
1113
+ }
1114
+ },
1115
+ "required": [
1116
+ "type"
1117
+ ],
1118
+ "type": "object"
1119
+ },
1120
+ "FacebookPublishRecord": {
1121
+ "additionalProperties": false,
1122
+ "properties": {
1123
+ "asset": {
1124
+ "type": "string"
1125
+ },
1126
+ "connection": {
1127
+ "type": "string"
1128
+ },
1129
+ "draft": {
1130
+ "$ref": "#/definitions/Record<string,unknown>"
1131
+ },
1132
+ "error": {
1133
+ "additionalProperties": false,
1134
+ "properties": {
1135
+ "method": {
1136
+ "type": "string"
1137
+ }
1138
+ },
1139
+ "required": [
1140
+ "method"
1141
+ ],
1142
+ "type": "object"
1143
+ },
1144
+ "messages": {
1145
+ "items": {
1146
+ "$ref": "#/definitions/Message"
1147
+ },
1148
+ "type": "array"
1149
+ },
1150
+ "pageId": {
1151
+ "type": "string"
1152
+ },
1153
+ "published": {
1154
+ "$ref": "#/definitions/Record<string,unknown>"
1155
+ },
1156
+ "remote": {
1157
+ "$ref": "#/definitions/Record<string,unknown>"
1158
+ },
1159
+ "render": {},
1160
+ "type": {
1161
+ "const": "facebook",
1162
+ "type": "string"
1163
+ }
1164
+ },
1165
+ "required": [
1166
+ "type"
1167
+ ],
1168
+ "type": "object"
1169
+ },
1170
+ "FacebookPublishStatsRecord": {
1171
+ "additionalProperties": false,
1172
+ "properties": {
1173
+ "defaults": {
1174
+ "$ref": "#/definitions/Record<string,unknown>"
1175
+ },
1176
+ "messages": {
1177
+ "items": {
1178
+ "$ref": "#/definitions/Message"
1179
+ },
1180
+ "type": "array"
1181
+ },
1182
+ "retrieved": {
1183
+ "$ref": "#/definitions/Record<string,unknown>"
1184
+ },
1185
+ "status": {
1186
+ "type": "string"
1187
+ },
1188
+ "substatus": {
1189
+ "type": "string"
1190
+ }
1191
+ },
1192
+ "type": "object"
1193
+ },
1194
+ "File": {
1195
+ "additionalProperties": false,
1196
+ "properties": {
1197
+ "btime": {
1198
+ "additionalProperties": false,
1199
+ "properties": {
1200
+ "typia.tag": {
1201
+ "additionalProperties": false,
1202
+ "description": "This is a dummy property for compilation.\n\nIt does not mean anything in runtime.",
1203
+ "properties": {
1204
+ "exclusive": {
1205
+ "const": true,
1206
+ "type": "boolean"
1207
+ },
1208
+ "kind": {
1209
+ "const": "type",
1210
+ "type": "string"
1211
+ },
1212
+ "schema": {
1213
+ "additionalProperties": false,
1214
+ "properties": {
1215
+ "type": {
1216
+ "const": "integer",
1217
+ "type": "string"
1218
+ }
1219
+ },
1220
+ "required": [
1221
+ "type"
1222
+ ],
1223
+ "type": "object"
1224
+ },
1225
+ "target": {
1226
+ "enum": [
1227
+ "bigint",
1228
+ "number"
1229
+ ],
1230
+ "type": "string"
1231
+ },
1232
+ "validate": {
1233
+ "additionalProperties": false,
1234
+ "properties": {
1235
+ "bigint": {
1236
+ "const": "BigInt(0) <= $input",
1237
+ "type": "string"
1238
+ },
1239
+ "number": {
1240
+ "const": "Math.floor($input) === $input && 0 <= $input && $input <= 18446744073709551615",
1241
+ "type": "string"
1242
+ }
1243
+ },
1244
+ "required": [
1245
+ "bigint",
1246
+ "number"
1247
+ ],
1248
+ "type": "object"
1249
+ },
1250
+ "value": {
1251
+ "const": "uint64",
1252
+ "type": "string"
1253
+ }
1254
+ },
1255
+ "required": [
1256
+ "exclusive",
1257
+ "kind",
1258
+ "schema",
1259
+ "target",
1260
+ "validate",
1261
+ "value"
1262
+ ],
1263
+ "type": "object"
1264
+ }
1265
+ },
1266
+ "type": "object"
1267
+ },
1268
+ "completed": {
1269
+ "type": "boolean"
1270
+ },
1271
+ "deleted": {
1272
+ "type": "boolean"
1273
+ },
1274
+ "error": {
1275
+ "anyOf": [
1276
+ {
1277
+ "$ref": "#/definitions/NxtError"
1278
+ },
1279
+ {
1280
+ "items": {
1281
+ "$ref": "#/definitions/NxtError"
1282
+ },
1283
+ "type": "array"
1284
+ }
1285
+ ]
1286
+ },
1287
+ "hash": {
1288
+ "additionalProperties": false,
1289
+ "properties": {
1290
+ "typia.tag": {
1291
+ "additionalProperties": false,
1292
+ "description": "This is a dummy property for compilation.\n\nIt does not mean anything in runtime.",
1293
+ "properties": {
1294
+ "exclusive": {
1295
+ "items": [
1296
+ {
1297
+ "const": "format",
1298
+ "type": "string"
1299
+ },
1300
+ {
1301
+ "const": "pattern",
1302
+ "type": "string"
1303
+ }
1304
+ ],
1305
+ "maxItems": 2,
1306
+ "minItems": 2,
1307
+ "type": "array"
1308
+ },
1309
+ "kind": {
1310
+ "const": "pattern",
1311
+ "type": "string"
1312
+ },
1313
+ "schema": {
1314
+ "additionalProperties": false,
1315
+ "properties": {
1316
+ "pattern": {
1317
+ "const": "^([A-Fa-f0-9]{32})?$",
1318
+ "type": "string"
1319
+ }
1320
+ },
1321
+ "required": [
1322
+ "pattern"
1323
+ ],
1324
+ "type": "object"
1325
+ },
1326
+ "target": {
1327
+ "const": "string",
1328
+ "type": "string"
1329
+ },
1330
+ "validate": {
1331
+ "const": "/^([A-Fa-f0-9]{32})?$/.test($input)",
1332
+ "type": "string"
1333
+ },
1334
+ "value": {
1335
+ "const": "^([A-Fa-f0-9]{32})?$",
1336
+ "type": "string"
1337
+ }
1338
+ },
1339
+ "required": [
1340
+ "exclusive",
1341
+ "kind",
1342
+ "schema",
1343
+ "target",
1344
+ "validate",
1345
+ "value"
1346
+ ],
1347
+ "type": "object"
1348
+ }
1349
+ },
1350
+ "type": "object"
1351
+ },
1352
+ "id": {
1353
+ "additionalProperties": false,
1354
+ "properties": {
1355
+ "typia.tag": {
1356
+ "additionalProperties": false,
1357
+ "description": "This is a dummy property for compilation.\n\nIt does not mean anything in runtime.",
1358
+ "properties": {
1359
+ "exclusive": {
1360
+ "items": [
1361
+ {
1362
+ "const": "format",
1363
+ "type": "string"
1364
+ },
1365
+ {
1366
+ "const": "pattern",
1367
+ "type": "string"
1368
+ }
1369
+ ],
1370
+ "maxItems": 2,
1371
+ "minItems": 2,
1372
+ "type": "array"
1373
+ },
1374
+ "kind": {
1375
+ "const": "pattern",
1376
+ "type": "string"
1377
+ },
1378
+ "schema": {
1379
+ "additionalProperties": false,
1380
+ "properties": {
1381
+ "pattern": {
1382
+ "const": "^[0-9A-Za-z~][0-9A-Za-z~._: -]*$",
1383
+ "type": "string"
1384
+ }
1385
+ },
1386
+ "required": [
1387
+ "pattern"
1388
+ ],
1389
+ "type": "object"
1390
+ },
1391
+ "target": {
1392
+ "const": "string",
1393
+ "type": "string"
1394
+ },
1395
+ "validate": {
1396
+ "const": "/^[0-9A-Za-z~][0-9A-Za-z~._: -]*$/.test($input)",
1397
+ "type": "string"
1398
+ },
1399
+ "value": {
1400
+ "const": "^[0-9A-Za-z~][0-9A-Za-z~._: -]*$",
1401
+ "type": "string"
1402
+ }
1403
+ },
1404
+ "required": [
1405
+ "exclusive",
1406
+ "kind",
1407
+ "schema",
1408
+ "target",
1409
+ "validate",
1410
+ "value"
1411
+ ],
1412
+ "type": "object"
1413
+ }
1414
+ },
1415
+ "type": "object"
1416
+ },
1417
+ "mimeType": {
1418
+ "type": "string"
1419
+ },
1420
+ "refs": {
1421
+ "items": {
1422
+ "additionalProperties": false,
1423
+ "properties": {
1424
+ "end": {
1425
+ "type": "number"
1426
+ },
1427
+ "file": {
1428
+ "type": "string"
1429
+ },
1430
+ "offset": {
1431
+ "type": "number"
1432
+ },
1433
+ "start": {
1434
+ "type": "number"
1435
+ }
1436
+ },
1437
+ "type": "object"
1438
+ },
1439
+ "type": "array"
1440
+ },
1441
+ "resumable": {
1442
+ "type": "string"
1443
+ },
1444
+ "seekable": {
1445
+ "type": "boolean"
1446
+ },
1447
+ "size": {
1448
+ "additionalProperties": false,
1449
+ "properties": {
1450
+ "typia.tag": {
1451
+ "additionalProperties": false,
1452
+ "description": "This is a dummy property for compilation.\n\nIt does not mean anything in runtime.",
1453
+ "properties": {
1454
+ "exclusive": {
1455
+ "const": true,
1456
+ "type": "boolean"
1457
+ },
1458
+ "kind": {
1459
+ "const": "type",
1460
+ "type": "string"
1461
+ },
1462
+ "schema": {
1463
+ "additionalProperties": false,
1464
+ "properties": {
1465
+ "type": {
1466
+ "const": "integer",
1467
+ "type": "string"
1468
+ }
1469
+ },
1470
+ "required": [
1471
+ "type"
1472
+ ],
1473
+ "type": "object"
1474
+ },
1475
+ "target": {
1476
+ "enum": [
1477
+ "bigint",
1478
+ "number"
1479
+ ],
1480
+ "type": "string"
1481
+ },
1482
+ "validate": {
1483
+ "additionalProperties": false,
1484
+ "properties": {
1485
+ "bigint": {
1486
+ "const": "BigInt(0) <= $input",
1487
+ "type": "string"
1488
+ },
1489
+ "number": {
1490
+ "const": "Math.floor($input) === $input && 0 <= $input && $input <= 18446744073709551615",
1491
+ "type": "string"
1492
+ }
1493
+ },
1494
+ "required": [
1495
+ "bigint",
1496
+ "number"
1497
+ ],
1498
+ "type": "object"
1499
+ },
1500
+ "value": {
1501
+ "const": "uint64",
1502
+ "type": "string"
1503
+ }
1504
+ },
1505
+ "required": [
1506
+ "exclusive",
1507
+ "kind",
1508
+ "schema",
1509
+ "target",
1510
+ "validate",
1511
+ "value"
1512
+ ],
1513
+ "type": "object"
1514
+ }
1515
+ },
1516
+ "type": "object"
1517
+ },
1518
+ "tags": {
1519
+ "items": {
1520
+ "type": "string"
1521
+ },
1522
+ "type": "array"
1523
+ }
1524
+ },
1525
+ "required": [
1526
+ "btime",
1527
+ "completed",
1528
+ "deleted",
1529
+ "error",
1530
+ "hash",
1531
+ "id",
1532
+ "mimeType",
1533
+ "refs",
1534
+ "resumable",
1535
+ "seekable",
1536
+ "size",
1537
+ "tags"
1538
+ ],
1539
+ "type": "object"
1540
+ },
1541
+ "FileDomainRecords": {
1542
+ "additionalProperties": false,
1543
+ "properties": {
1544
+ ":file.replicate": {
1545
+ "$ref": "#/definitions/FileReplicateRecord"
1546
+ }
1547
+ },
1548
+ "required": [
1549
+ ":file.replicate"
1550
+ ],
1551
+ "type": "object"
1552
+ },
1553
+ "FilePublishConnectionRecord": {
1554
+ "additionalProperties": false,
1555
+ "properties": {
1556
+ "concurrency": {
1557
+ "type": "number"
1558
+ },
1559
+ "host": {
1560
+ "type": "string"
1561
+ },
1562
+ "ignoreMissing": {
1563
+ "type": "boolean"
1564
+ },
1565
+ "port": {
1566
+ "type": "number"
1567
+ },
1568
+ "protocol": {
1569
+ "type": "string"
1570
+ },
1571
+ "type": {
1572
+ "const": "file",
1573
+ "type": "string"
1574
+ }
1575
+ },
1576
+ "required": [
1577
+ "protocol",
1578
+ "type"
1579
+ ],
1580
+ "type": "object"
1581
+ },
1582
+ "FilePublishDefaults": {
1583
+ "additionalProperties": false,
1584
+ "properties": {
1585
+ "directory": {
1586
+ "type": "string"
1587
+ },
1588
+ "filename": {
1589
+ "type": "string"
1590
+ },
1591
+ "renders": {
1592
+ "$ref": "#/definitions/Record<string,FilePublishRender>"
1593
+ }
1594
+ },
1595
+ "required": [
1596
+ "directory",
1597
+ "filename",
1598
+ "renders"
1599
+ ],
1600
+ "type": "object"
1601
+ },
1602
+ "FilePublishDraft": {
1603
+ "additionalProperties": false,
1604
+ "properties": {
1605
+ "directory": {
1606
+ "type": "string"
1607
+ },
1608
+ "filename": {
1609
+ "type": "string"
1610
+ }
1611
+ },
1612
+ "type": "object"
1613
+ },
1614
+ "FilePublishPublished": {
1615
+ "additionalProperties": false,
1616
+ "properties": {
1617
+ "directory": {
1618
+ "type": "string"
1619
+ },
1620
+ "filename": {
1621
+ "type": "string"
1622
+ }
1623
+ },
1624
+ "type": "object"
1625
+ },
1626
+ "FilePublishRecord": {
1627
+ "additionalProperties": false,
1628
+ "properties": {
1629
+ "asset": {
1630
+ "type": "string"
1631
+ },
1632
+ "connection": {
1633
+ "type": "string"
1634
+ },
1635
+ "directory": {
1636
+ "type": "string"
1637
+ },
1638
+ "draft": {
1639
+ "$ref": "#/definitions/FilePublishDraft"
1640
+ },
1641
+ "error": {
1642
+ "additionalProperties": false,
1643
+ "properties": {
1644
+ "method": {
1645
+ "type": "string"
1646
+ }
1647
+ },
1648
+ "required": [
1649
+ "method"
1650
+ ],
1651
+ "type": "object"
1652
+ },
1653
+ "filename": {
1654
+ "type": "string"
1655
+ },
1656
+ "messages": {
1657
+ "items": {
1658
+ "$ref": "#/definitions/Message"
1659
+ },
1660
+ "type": "array"
1661
+ },
1662
+ "published": {
1663
+ "$ref": "#/definitions/FilePublishPublished"
1664
+ },
1665
+ "remote": {
1666
+ "$ref": "#/definitions/FilePublishRemote"
1667
+ },
1668
+ "render": {},
1669
+ "renders": {
1670
+ "$ref": "#/definitions/Record<string,FilePublishRender>"
1671
+ },
1672
+ "type": {
1673
+ "const": "file",
1674
+ "type": "string"
1675
+ }
1676
+ },
1677
+ "required": [
1678
+ "type"
1679
+ ],
1680
+ "type": "object"
1681
+ },
1682
+ "FilePublishRemote": {
1683
+ "additionalProperties": false,
1684
+ "properties": {
1685
+ "directory": {
1686
+ "type": "string"
1687
+ },
1688
+ "filename": {
1689
+ "type": "string"
1690
+ },
1691
+ "renders": {
1692
+ "$ref": "#/definitions/Record<string,FilePublishRemoteRender>"
1693
+ }
1694
+ },
1695
+ "type": "object"
1696
+ },
1697
+ "FilePublishRetrieved": {
1698
+ "additionalProperties": false,
1699
+ "properties": {
1700
+ "directory": {
1701
+ "type": "string"
1702
+ },
1703
+ "filename": {
1704
+ "type": "string"
1705
+ },
1706
+ "renders": {
1707
+ "$ref": "#/definitions/Record<string,FilePublishRetrievedRender>"
1708
+ }
1709
+ },
1710
+ "type": "object"
1711
+ },
1712
+ "FilePublishStatsRecord": {
1713
+ "additionalProperties": false,
1714
+ "properties": {
1715
+ "defaults": {
1716
+ "$ref": "#/definitions/FilePublishDefaults"
1717
+ },
1718
+ "messages": {
1719
+ "items": {
1720
+ "$ref": "#/definitions/Message"
1721
+ },
1722
+ "type": "array"
1723
+ },
1724
+ "retrieved": {
1725
+ "$ref": "#/definitions/FilePublishRetrieved"
1726
+ },
1727
+ "status": {
1728
+ "type": "string"
1729
+ },
1730
+ "substatus": {
1731
+ "type": "string"
1732
+ }
1733
+ },
1734
+ "type": "object"
1735
+ },
1736
+ "FileReplica": {
1737
+ "additionalProperties": false,
1738
+ "properties": {
1739
+ "error": {
1740
+ "$ref": "#/definitions/NxtError"
1741
+ },
1742
+ "name": {
1743
+ "type": "string"
1744
+ },
1745
+ "status": {
1746
+ "enum": [
1747
+ "error",
1748
+ "ok"
1749
+ ],
1750
+ "type": "string"
1751
+ }
1752
+ },
1753
+ "required": [
1754
+ "error",
1755
+ "name",
1756
+ "status"
1757
+ ],
1758
+ "type": "object"
1759
+ },
1760
+ "FileReplicateRecord": {
1761
+ "additionalProperties": false,
1762
+ "properties": {
1763
+ "error": {
1764
+ "$ref": "#/definitions/NxtError"
1765
+ },
1766
+ "replicas": {
1767
+ "items": {
1768
+ "type": "string"
1769
+ },
1770
+ "type": "array"
1771
+ }
1772
+ },
1773
+ "required": [
1774
+ "error",
1775
+ "replicas"
1776
+ ],
1777
+ "type": "object"
1778
+ },
1779
+ "FileStats": {
1780
+ "additionalProperties": false,
1781
+ "properties": {
1782
+ "btime": {
1783
+ "additionalProperties": false,
1784
+ "properties": {
1785
+ "typia.tag": {
1786
+ "additionalProperties": false,
1787
+ "description": "This is a dummy property for compilation.\n\nIt does not mean anything in runtime.",
1788
+ "properties": {
1789
+ "exclusive": {
1790
+ "const": true,
1791
+ "type": "boolean"
1792
+ },
1793
+ "kind": {
1794
+ "const": "type",
1795
+ "type": "string"
1796
+ },
1797
+ "schema": {
1798
+ "additionalProperties": false,
1799
+ "properties": {
1800
+ "type": {
1801
+ "const": "integer",
1802
+ "type": "string"
1803
+ }
1804
+ },
1805
+ "required": [
1806
+ "type"
1807
+ ],
1808
+ "type": "object"
1809
+ },
1810
+ "target": {
1811
+ "enum": [
1812
+ "bigint",
1813
+ "number"
1814
+ ],
1815
+ "type": "string"
1816
+ },
1817
+ "validate": {
1818
+ "additionalProperties": false,
1819
+ "properties": {
1820
+ "bigint": {
1821
+ "const": "BigInt(0) <= $input",
1822
+ "type": "string"
1823
+ },
1824
+ "number": {
1825
+ "const": "Math.floor($input) === $input && 0 <= $input && $input <= 18446744073709551615",
1826
+ "type": "string"
1827
+ }
1828
+ },
1829
+ "required": [
1830
+ "bigint",
1831
+ "number"
1832
+ ],
1833
+ "type": "object"
1834
+ },
1835
+ "value": {
1836
+ "const": "uint64",
1837
+ "type": "string"
1838
+ }
1839
+ },
1840
+ "required": [
1841
+ "exclusive",
1842
+ "kind",
1843
+ "schema",
1844
+ "target",
1845
+ "validate",
1846
+ "value"
1847
+ ],
1848
+ "type": "object"
1849
+ }
1850
+ },
1851
+ "type": "object"
1852
+ },
1853
+ "completed": {
1854
+ "type": "boolean"
1855
+ },
1856
+ "deleted": {
1857
+ "type": "boolean"
1858
+ },
1859
+ "error": {
1860
+ "anyOf": [
1861
+ {
1862
+ "$ref": "#/definitions/NxtError"
1863
+ },
1864
+ {
1865
+ "items": {
1866
+ "$ref": "#/definitions/NxtError"
1867
+ },
1868
+ "type": "array"
1869
+ }
1870
+ ]
1871
+ },
1872
+ "hash": {
1873
+ "additionalProperties": false,
1874
+ "properties": {
1875
+ "typia.tag": {
1876
+ "additionalProperties": false,
1877
+ "description": "This is a dummy property for compilation.\n\nIt does not mean anything in runtime.",
1878
+ "properties": {
1879
+ "exclusive": {
1880
+ "items": [
1881
+ {
1882
+ "const": "format",
1883
+ "type": "string"
1884
+ },
1885
+ {
1886
+ "const": "pattern",
1887
+ "type": "string"
1888
+ }
1889
+ ],
1890
+ "maxItems": 2,
1891
+ "minItems": 2,
1892
+ "type": "array"
1893
+ },
1894
+ "kind": {
1895
+ "const": "pattern",
1896
+ "type": "string"
1897
+ },
1898
+ "schema": {
1899
+ "additionalProperties": false,
1900
+ "properties": {
1901
+ "pattern": {
1902
+ "const": "^([A-Fa-f0-9]{32})?$",
1903
+ "type": "string"
1904
+ }
1905
+ },
1906
+ "required": [
1907
+ "pattern"
1908
+ ],
1909
+ "type": "object"
1910
+ },
1911
+ "target": {
1912
+ "const": "string",
1913
+ "type": "string"
1914
+ },
1915
+ "validate": {
1916
+ "const": "/^([A-Fa-f0-9]{32})?$/.test($input)",
1917
+ "type": "string"
1918
+ },
1919
+ "value": {
1920
+ "const": "^([A-Fa-f0-9]{32})?$",
1921
+ "type": "string"
1922
+ }
1923
+ },
1924
+ "required": [
1925
+ "exclusive",
1926
+ "kind",
1927
+ "schema",
1928
+ "target",
1929
+ "validate",
1930
+ "value"
1931
+ ],
1932
+ "type": "object"
1933
+ }
1934
+ },
1935
+ "type": "object"
1936
+ },
1937
+ "id": {
1938
+ "additionalProperties": false,
1939
+ "properties": {
1940
+ "typia.tag": {
1941
+ "additionalProperties": false,
1942
+ "description": "This is a dummy property for compilation.\n\nIt does not mean anything in runtime.",
1943
+ "properties": {
1944
+ "exclusive": {
1945
+ "items": [
1946
+ {
1947
+ "const": "format",
1948
+ "type": "string"
1949
+ },
1950
+ {
1951
+ "const": "pattern",
1952
+ "type": "string"
1953
+ }
1954
+ ],
1955
+ "maxItems": 2,
1956
+ "minItems": 2,
1957
+ "type": "array"
1958
+ },
1959
+ "kind": {
1960
+ "const": "pattern",
1961
+ "type": "string"
1962
+ },
1963
+ "schema": {
1964
+ "additionalProperties": false,
1965
+ "properties": {
1966
+ "pattern": {
1967
+ "const": "^[0-9A-Za-z~][0-9A-Za-z~._: -]*$",
1968
+ "type": "string"
1969
+ }
1970
+ },
1971
+ "required": [
1972
+ "pattern"
1973
+ ],
1974
+ "type": "object"
1975
+ },
1976
+ "target": {
1977
+ "const": "string",
1978
+ "type": "string"
1979
+ },
1980
+ "validate": {
1981
+ "const": "/^[0-9A-Za-z~][0-9A-Za-z~._: -]*$/.test($input)",
1982
+ "type": "string"
1983
+ },
1984
+ "value": {
1985
+ "const": "^[0-9A-Za-z~][0-9A-Za-z~._: -]*$",
1986
+ "type": "string"
1987
+ }
1988
+ },
1989
+ "required": [
1990
+ "exclusive",
1991
+ "kind",
1992
+ "schema",
1993
+ "target",
1994
+ "validate",
1995
+ "value"
1996
+ ],
1997
+ "type": "object"
1998
+ }
1999
+ },
2000
+ "type": "object"
2001
+ },
2002
+ "locations": {
2003
+ "items": {
2004
+ "type": "string"
2005
+ },
2006
+ "type": "array"
2007
+ },
2008
+ "mimeType": {
2009
+ "type": "string"
2010
+ },
2011
+ "position": {
2012
+ "additionalProperties": false,
2013
+ "properties": {
2014
+ "typia.tag": {
2015
+ "additionalProperties": false,
2016
+ "description": "This is a dummy property for compilation.\n\nIt does not mean anything in runtime.",
2017
+ "properties": {
2018
+ "exclusive": {
2019
+ "const": true,
2020
+ "type": "boolean"
2021
+ },
2022
+ "kind": {
2023
+ "const": "type",
2024
+ "type": "string"
2025
+ },
2026
+ "schema": {
2027
+ "additionalProperties": false,
2028
+ "properties": {
2029
+ "type": {
2030
+ "const": "integer",
2031
+ "type": "string"
2032
+ }
2033
+ },
2034
+ "required": [
2035
+ "type"
2036
+ ],
2037
+ "type": "object"
2038
+ },
2039
+ "target": {
2040
+ "enum": [
2041
+ "bigint",
2042
+ "number"
2043
+ ],
2044
+ "type": "string"
2045
+ },
2046
+ "validate": {
2047
+ "additionalProperties": false,
2048
+ "properties": {
2049
+ "bigint": {
2050
+ "const": "BigInt(0) <= $input",
2051
+ "type": "string"
2052
+ },
2053
+ "number": {
2054
+ "const": "Math.floor($input) === $input && 0 <= $input && $input <= 18446744073709551615",
2055
+ "type": "string"
2056
+ }
2057
+ },
2058
+ "required": [
2059
+ "bigint",
2060
+ "number"
2061
+ ],
2062
+ "type": "object"
2063
+ },
2064
+ "value": {
2065
+ "const": "uint64",
2066
+ "type": "string"
2067
+ }
2068
+ },
2069
+ "required": [
2070
+ "exclusive",
2071
+ "kind",
2072
+ "schema",
2073
+ "target",
2074
+ "validate",
2075
+ "value"
2076
+ ],
2077
+ "type": "object"
2078
+ }
2079
+ },
2080
+ "type": "object"
2081
+ },
2082
+ "ranges": {
2083
+ "items": {
2084
+ "items": [
2085
+ {
2086
+ "additionalProperties": false,
2087
+ "properties": {
2088
+ "typia.tag": {
2089
+ "additionalProperties": false,
2090
+ "description": "This is a dummy property for compilation.\n\nIt does not mean anything in runtime.",
2091
+ "properties": {
2092
+ "exclusive": {
2093
+ "items": [
2094
+ {
2095
+ "const": "minimum",
2096
+ "type": "string"
2097
+ },
2098
+ {
2099
+ "const": "exclusiveMinimum",
2100
+ "type": "string"
2101
+ }
2102
+ ],
2103
+ "maxItems": 2,
2104
+ "minItems": 2,
2105
+ "type": "array"
2106
+ },
2107
+ "kind": {
2108
+ "const": "minimum",
2109
+ "type": "string"
2110
+ },
2111
+ "schema": {
2112
+ "additionalProperties": false,
2113
+ "properties": {
2114
+ "minimum": {
2115
+ "const": 0,
2116
+ "type": "number"
2117
+ }
2118
+ },
2119
+ "required": [
2120
+ "minimum"
2121
+ ],
2122
+ "type": "object"
2123
+ },
2124
+ "target": {
2125
+ "const": "number",
2126
+ "type": "string"
2127
+ },
2128
+ "validate": {
2129
+ "const": "0 <= $input",
2130
+ "type": "string"
2131
+ },
2132
+ "value": {
2133
+ "const": 0,
2134
+ "type": "number"
2135
+ }
2136
+ },
2137
+ "required": [
2138
+ "exclusive",
2139
+ "kind",
2140
+ "schema",
2141
+ "target",
2142
+ "validate",
2143
+ "value"
2144
+ ],
2145
+ "type": "object"
2146
+ }
2147
+ },
2148
+ "type": "object"
2149
+ },
2150
+ {
2151
+ "additionalProperties": false,
2152
+ "properties": {
2153
+ "typia.tag": {
2154
+ "additionalProperties": false,
2155
+ "description": "This is a dummy property for compilation.\n\nIt does not mean anything in runtime.",
2156
+ "properties": {
2157
+ "exclusive": {
2158
+ "items": [
2159
+ {
2160
+ "const": "minimum",
2161
+ "type": "string"
2162
+ },
2163
+ {
2164
+ "const": "exclusiveMinimum",
2165
+ "type": "string"
2166
+ }
2167
+ ],
2168
+ "maxItems": 2,
2169
+ "minItems": 2,
2170
+ "type": "array"
2171
+ },
2172
+ "kind": {
2173
+ "const": "minimum",
2174
+ "type": "string"
2175
+ },
2176
+ "schema": {
2177
+ "additionalProperties": false,
2178
+ "properties": {
2179
+ "minimum": {
2180
+ "const": 0,
2181
+ "type": "number"
2182
+ }
2183
+ },
2184
+ "required": [
2185
+ "minimum"
2186
+ ],
2187
+ "type": "object"
2188
+ },
2189
+ "target": {
2190
+ "const": "number",
2191
+ "type": "string"
2192
+ },
2193
+ "validate": {
2194
+ "const": "0 <= $input",
2195
+ "type": "string"
2196
+ },
2197
+ "value": {
2198
+ "const": 0,
2199
+ "type": "number"
2200
+ }
2201
+ },
2202
+ "required": [
2203
+ "exclusive",
2204
+ "kind",
2205
+ "schema",
2206
+ "target",
2207
+ "validate",
2208
+ "value"
2209
+ ],
2210
+ "type": "object"
2211
+ }
2212
+ },
2213
+ "type": "object"
2214
+ }
2215
+ ],
2216
+ "maxItems": 2,
2217
+ "minItems": 2,
2218
+ "type": "array"
2219
+ },
2220
+ "type": "array"
2221
+ },
2222
+ "refs": {
2223
+ "items": {
2224
+ "additionalProperties": false,
2225
+ "properties": {
2226
+ "end": {
2227
+ "type": "number"
2228
+ },
2229
+ "file": {
2230
+ "type": "string"
2231
+ },
2232
+ "offset": {
2233
+ "type": "number"
2234
+ },
2235
+ "start": {
2236
+ "type": "number"
2237
+ }
2238
+ },
2239
+ "type": "object"
2240
+ },
2241
+ "type": "array"
2242
+ },
2243
+ "replicas": {
2244
+ "items": {
2245
+ "type": "string"
2246
+ },
2247
+ "type": "array"
2248
+ },
2249
+ "resumable": {
2250
+ "type": "string"
2251
+ },
2252
+ "seekable": {
2253
+ "type": "boolean"
2254
+ },
2255
+ "size": {
2256
+ "additionalProperties": false,
2257
+ "properties": {
2258
+ "typia.tag": {
2259
+ "additionalProperties": false,
2260
+ "description": "This is a dummy property for compilation.\n\nIt does not mean anything in runtime.",
2261
+ "properties": {
2262
+ "exclusive": {
2263
+ "const": true,
2264
+ "type": "boolean"
2265
+ },
2266
+ "kind": {
2267
+ "const": "type",
2268
+ "type": "string"
2269
+ },
2270
+ "schema": {
2271
+ "additionalProperties": false,
2272
+ "properties": {
2273
+ "type": {
2274
+ "const": "integer",
2275
+ "type": "string"
2276
+ }
2277
+ },
2278
+ "required": [
2279
+ "type"
2280
+ ],
2281
+ "type": "object"
2282
+ },
2283
+ "target": {
2284
+ "enum": [
2285
+ "bigint",
2286
+ "number"
2287
+ ],
2288
+ "type": "string"
2289
+ },
2290
+ "validate": {
2291
+ "additionalProperties": false,
2292
+ "properties": {
2293
+ "bigint": {
2294
+ "const": "BigInt(0) <= $input",
2295
+ "type": "string"
2296
+ },
2297
+ "number": {
2298
+ "const": "Math.floor($input) === $input && 0 <= $input && $input <= 18446744073709551615",
2299
+ "type": "string"
2300
+ }
2301
+ },
2302
+ "required": [
2303
+ "bigint",
2304
+ "number"
2305
+ ],
2306
+ "type": "object"
2307
+ },
2308
+ "value": {
2309
+ "const": "uint64",
2310
+ "type": "string"
2311
+ }
2312
+ },
2313
+ "required": [
2314
+ "exclusive",
2315
+ "kind",
2316
+ "schema",
2317
+ "target",
2318
+ "validate",
2319
+ "value"
2320
+ ],
2321
+ "type": "object"
2322
+ }
2323
+ },
2324
+ "type": "object"
2325
+ },
2326
+ "tags": {
2327
+ "items": {
2328
+ "type": "string"
2329
+ },
2330
+ "type": "array"
2331
+ },
2332
+ "uploading": {
2333
+ "type": "boolean"
2334
+ },
2335
+ "zones": {
2336
+ "items": {
2337
+ "type": "string"
2338
+ },
2339
+ "type": "array"
2340
+ }
2341
+ },
2342
+ "required": [
2343
+ "btime",
2344
+ "completed",
2345
+ "deleted",
2346
+ "error",
2347
+ "hash",
2348
+ "id",
2349
+ "locations",
2350
+ "mimeType",
2351
+ "position",
2352
+ "ranges",
2353
+ "refs",
2354
+ "replicas",
2355
+ "resumable",
2356
+ "seekable",
2357
+ "size",
2358
+ "tags",
2359
+ "uploading",
2360
+ "zones"
2361
+ ],
2362
+ "type": "object"
2363
+ },
2364
+ "GeneralCreatedRecord": {
2365
+ "additionalProperties": false,
2366
+ "properties": {
2367
+ "origin": {
2368
+ "type": "string"
2369
+ },
2370
+ "time": {
2371
+ "type": "string"
2372
+ },
2373
+ "user": {
2374
+ "type": "string"
2375
+ }
2376
+ },
2377
+ "type": "object"
2378
+ },
2379
+ "GeneralDescriptionRecord": {
2380
+ "additionalProperties": false,
2381
+ "properties": {
2382
+ "value": {
2383
+ "type": "string"
2384
+ }
2385
+ },
2386
+ "type": "object"
2387
+ },
2388
+ "GeneralDomainRecords": {
2389
+ "additionalProperties": false,
2390
+ "properties": {
2391
+ ":general.created": {
2392
+ "$ref": "#/definitions/GeneralCreatedRecord"
2393
+ },
2394
+ ":general.description": {
2395
+ "$ref": "#/definitions/GeneralDescriptionRecord"
2396
+ },
2397
+ ":general.poster": {
2398
+ "$ref": "#/definitions/GeneralPosterRecord"
2399
+ },
2400
+ ":general.status": {
2401
+ "additionalProperties": {
2402
+ "$ref": "#/definitions/GeneralStatusRecordValue"
2403
+ },
2404
+ "type": "object"
2405
+ },
2406
+ ":general.tags": {
2407
+ "$ref": "#/definitions/GeneralTagsRecord"
2408
+ },
2409
+ ":general.title": {
2410
+ "$ref": "#/definitions/GeneralTitleRecord"
2411
+ }
2412
+ },
2413
+ "required": [
2414
+ ":general.created",
2415
+ ":general.description",
2416
+ ":general.poster",
2417
+ ":general.status",
2418
+ ":general.tags",
2419
+ ":general.title"
2420
+ ],
2421
+ "type": "object"
2422
+ },
2423
+ "GeneralPosterRecord": {
2424
+ "additionalProperties": false,
2425
+ "properties": {
2426
+ "input": {
2427
+ "additionalProperties": false,
2428
+ "properties": {
2429
+ "file": {
2430
+ "type": "string"
2431
+ },
2432
+ "type": {
2433
+ "type": "string"
2434
+ }
2435
+ },
2436
+ "type": "object"
2437
+ },
2438
+ "preset": {
2439
+ "type": "string"
2440
+ }
2441
+ },
2442
+ "type": "object"
2443
+ },
2444
+ "GeneralStatusRecord": {
2445
+ "additionalProperties": {
2446
+ "$ref": "#/definitions/GeneralStatusRecordValue"
2447
+ },
2448
+ "type": "object"
2449
+ },
2450
+ "GeneralStatusRecordValue": {
2451
+ "additionalProperties": false,
2452
+ "properties": {
2453
+ "expose": {
2454
+ "type": "boolean"
2455
+ }
2456
+ },
2457
+ "type": "object"
2458
+ },
2459
+ "GeneralTagsRecord": {
2460
+ "additionalProperties": false,
2461
+ "properties": {
2462
+ "value": {
2463
+ "items": {
2464
+ "type": "string"
2465
+ },
2466
+ "type": "array"
2467
+ }
2468
+ },
2469
+ "type": "object"
2470
+ },
2471
+ "GeneralTitleRecord": {
2472
+ "additionalProperties": false,
2473
+ "properties": {
2474
+ "value": {
2475
+ "type": "string"
2476
+ }
2477
+ },
2478
+ "type": "object"
2479
+ },
2480
+ "MediaConsolidateRecord": {
2481
+ "additionalProperties": false,
2482
+ "properties": {
2483
+ "error": {},
2484
+ "profile": {},
2485
+ "source": {},
2486
+ "target": {}
2487
+ },
2488
+ "type": "object"
2489
+ },
2490
+ "MediaRenderRecordValue": {
2491
+ "additionalProperties": false,
2492
+ "properties": {
2493
+ "children": {
2494
+ "items": {
2495
+ "$ref": "#/definitions/MediaRenderRecordValue"
2496
+ },
2497
+ "type": "array"
2498
+ },
2499
+ "id": {
2500
+ "type": "string"
2501
+ },
2502
+ "title": {
2503
+ "type": "string"
2504
+ }
2505
+ },
2506
+ "type": "object"
2507
+ },
2508
+ "MediaRendersRecord": {
2509
+ "additionalProperties": false,
2510
+ "properties": {
2511
+ "children": {
2512
+ "items": {
2513
+ "$ref": "#/definitions/MediaRenderRecordValue"
2514
+ },
2515
+ "type": "array"
2516
+ }
2517
+ },
2518
+ "required": [
2519
+ "children"
2520
+ ],
2521
+ "type": "object"
2522
+ },
2523
+ "MediaSourceRecord": {
2524
+ "additionalProperties": false,
2525
+ "properties": {
2526
+ "end": {
2527
+ "type": "number"
2528
+ },
2529
+ "input": {
2530
+ "additionalProperties": false,
2531
+ "properties": {
2532
+ "file": {
2533
+ "type": "string"
2534
+ },
2535
+ "type": {
2536
+ "type": "string"
2537
+ }
2538
+ },
2539
+ "type": "object"
2540
+ },
2541
+ "lang": {
2542
+ "type": "string"
2543
+ },
2544
+ "start": {
2545
+ "type": "number"
2546
+ },
2547
+ "subtitle": {
2548
+ "type": "string"
2549
+ },
2550
+ "transcribe": {
2551
+ "additionalProperties": false,
2552
+ "properties": {
2553
+ "language": {
2554
+ "type": "string"
2555
+ },
2556
+ "pan": {
2557
+ "items": {
2558
+ "type": "number"
2559
+ },
2560
+ "type": "array"
2561
+ }
2562
+ },
2563
+ "type": "object"
2564
+ },
2565
+ "video": {
2566
+ "additionalProperties": false,
2567
+ "properties": {
2568
+ "crop": {
2569
+ "additionalProperties": false,
2570
+ "properties": {
2571
+ "height": {
2572
+ "type": "number"
2573
+ },
2574
+ "width": {
2575
+ "type": "number"
2576
+ },
2577
+ "x": {
2578
+ "type": "number"
2579
+ },
2580
+ "y": {
2581
+ "type": "number"
2582
+ }
2583
+ },
2584
+ "type": "object"
2585
+ }
2586
+ },
2587
+ "type": "object"
2588
+ }
2589
+ },
2590
+ "type": "object"
2591
+ },
2592
+ "MediaTranscriptChangesRecordValue": {
2593
+ "additionalProperties": false,
2594
+ "properties": {
2595
+ "patch": {
2596
+ "items": {
2597
+ "$ref": "#/definitions/Operation"
2598
+ },
2599
+ "type": "array"
2600
+ }
2601
+ },
2602
+ "type": "object"
2603
+ },
2604
+ "Message": {
2605
+ "additionalProperties": false,
2606
+ "properties": {
2607
+ "code": {
2608
+ "type": "string"
2609
+ },
2610
+ "level": {
2611
+ "type": "number"
2612
+ },
2613
+ "msg": {
2614
+ "type": "string"
2615
+ }
2616
+ },
2617
+ "required": [
2618
+ "code",
2619
+ "level",
2620
+ "msg"
2621
+ ],
2622
+ "type": "object"
2623
+ },
2624
+ "MoveOperation": {
2625
+ "additionalProperties": false,
2626
+ "properties": {
2627
+ "from": {
2628
+ "type": "string"
2629
+ },
2630
+ "op": {
2631
+ "const": "move",
2632
+ "type": "string"
2633
+ },
2634
+ "path": {
2635
+ "type": "string"
2636
+ }
2637
+ },
2638
+ "required": [
2639
+ "from",
2640
+ "op",
2641
+ "path"
2642
+ ],
2643
+ "type": "object"
2644
+ },
2645
+ "NxtError": {
2646
+ "additionalProperties": false,
2647
+ "properties": {
2648
+ "cause": {
2649
+ "$ref": "#/definitions/NxtError"
2650
+ },
2651
+ "code": {
2652
+ "type": "string"
2653
+ },
2654
+ "data": {
2655
+ "additionalProperties": true,
2656
+ "properties": {},
2657
+ "type": "object"
2658
+ },
2659
+ "errors": {
2660
+ "items": {
2661
+ "$ref": "#/definitions/NxtError"
2662
+ },
2663
+ "type": "array"
2664
+ },
2665
+ "exitCode": {
2666
+ "type": "number"
2667
+ },
2668
+ "headers": {
2669
+ "$ref": "#/definitions/Record<string,string>"
2670
+ },
2671
+ "message": {
2672
+ "type": "string"
2673
+ },
2674
+ "signalCode": {
2675
+ "type": "number"
2676
+ },
2677
+ "statusCode": {
2678
+ "type": "number"
2679
+ },
2680
+ "type": {
2681
+ "type": "string"
2682
+ }
2683
+ },
2684
+ "required": [
2685
+ "message"
2686
+ ],
2687
+ "type": "object"
2688
+ },
2689
+ "Operation": {
2690
+ "anyOf": [
2691
+ {
2692
+ "$ref": "#/definitions/AddOperation"
2693
+ },
2694
+ {
2695
+ "$ref": "#/definitions/RemoveOperation"
2696
+ },
2697
+ {
2698
+ "$ref": "#/definitions/ReplaceOperation"
2699
+ },
2700
+ {
2701
+ "$ref": "#/definitions/MoveOperation"
2702
+ },
2703
+ {
2704
+ "$ref": "#/definitions/CopyOperation"
2705
+ },
2706
+ {
2707
+ "$ref": "#/definitions/TestOperation"
2708
+ }
2709
+ ]
2710
+ },
2711
+ "PartialObjectDeep<ModuleTabs,{}>": {
2712
+ "additionalProperties": false,
2713
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
2714
+ "properties": {
2715
+ "settingsPanelStore": {
2716
+ "$ref": "#/definitions/PartialObjectDeep<SettingsPanelStoreTab,{}>"
2717
+ }
2718
+ },
2719
+ "type": "object"
2720
+ },
2721
+ "PartialObjectDeep<Settings,{}>": {
2722
+ "additionalProperties": false,
2723
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
2724
+ "properties": {
2725
+ "assignees": {
2726
+ "$ref": "#/definitions/PartialObjectDeep<{include:string[];},{}>_1"
2727
+ },
2728
+ "autoLogoutTime": {
2729
+ "type": "number"
2730
+ },
2731
+ "browser": {
2732
+ "$ref": "#/definitions/PartialObjectDeep<{createMenu:{sortOrder:string[];};},{}>"
2733
+ },
2734
+ "clock": {
2735
+ "$ref": "#/definitions/PartialObjectDeep<{enable:boolean;show24Hours:boolean;showAmPm:boolean;showSeconds:boolean;showDayOfWeek:boolean;showDate:boolean;format?:string;},{}>"
2736
+ },
2737
+ "crashScreen": {
2738
+ "type": "boolean"
2739
+ },
2740
+ "dashboard": {
2741
+ "$ref": "#/definitions/PartialObjectDeep<{maxMru:number;maxTabs:number;},{}>"
2742
+ },
2743
+ "deadlines": {
2744
+ "$ref": "#/definitions/PartialObjectDeep<{include:string[];},{}>"
2745
+ },
2746
+ "debug": {
2747
+ "type": "boolean"
2748
+ },
2749
+ "events": {
2750
+ "$ref": "#/definitions/PartialObjectDeep<{graphicBaseTemplate?:string;},{}>"
2751
+ },
2752
+ "flags": {
2753
+ "$ref": "#/definitions/PartialObjectDeep<{utils:boolean;history:boolean;refs:boolean;access:boolean;files:boolean;export:boolean;json:boolean;hlsjs:boolean;resetRenders?:boolean;resetReplicas?:boolean;assetStatus?:boolean;consolidateMedia?:boolean;hideInAssetMenu?:boolean;assetRoute?:boolean;},{}>"
2754
+ },
2755
+ "gallery": {
2756
+ "$ref": "#/definitions/PartialObjectDeep<{dimOnBlur:boolean;},{}>"
2757
+ },
2758
+ "history": {
2759
+ "type": "boolean"
2760
+ },
2761
+ "keymap": {},
2762
+ "media": {
2763
+ "$ref": "#/definitions/PartialObjectDeep<{guide?:{mask?:boolean;};stepManyFrames:number;liveZoomDuration:number;importTitleTemplate:string;tile:{preview:string;showRenderProgress:boolean;};timecodeReference:string;maxSubclipDuration:number;rewindStep:number;forwardStep:number;interlacedPlayback:string;playbackRates:number[];subtitles:{spacing:number;maxCharactersPerLine:number;};subtitleTemplateId?:string;initialVolume:string;guides:{label:string;aspectRatio:string;}[];download:boolean;transcribe?:{subtitleDisclaimer?:{isUserConfigurable?:boolean;defaultValue?:{enabled?:false;text?:{language:string;value:string;}[];offset?:number;duration?:number;};};};},{}>"
2764
+ },
2765
+ "module": {
2766
+ "$ref": "#/definitions/PartialObjectDeep<{tabs?:ModuleTabs;},{}>"
2767
+ },
2768
+ "permission": {
2769
+ "$ref": "#/definitions/PartialObjectDeep<{overrideUserContact:boolean;overrideUserLogin:boolean;},{}>"
2770
+ },
2771
+ "plugins": {
2772
+ "$ref": "#/definitions/PartialObjectDeep<{adobe:{useProxies:boolean;};},{}>"
2773
+ },
2774
+ "predefinedTags": {
2775
+ "items": {
2776
+ "type": "string"
2777
+ },
2778
+ "type": "array"
2779
+ },
2780
+ "rundown": {
2781
+ "$ref": "#/definitions/PartialObjectDeep<{eventThumbnails:boolean;},{}>"
2782
+ },
2783
+ "script": {
2784
+ "$ref": "#/definitions/PartialObjectDeep<{createMenu:{showPreview:boolean;};colorTags:PromotedTag[];},{}>"
2785
+ },
2786
+ "storyboard": {
2787
+ "$ref": "#/definitions/PartialObjectDeep<{assets:{story:{excerpt:{maxLines:number;mode:string;};};};pipeline:{search:{maxItemsDisplayed:number;};};item:{maxHeight:number;};},{}>"
2788
+ },
2789
+ "swarm": {
2790
+ "$ref": "#/definitions/PartialObjectDeep<{color?:string;name?:string;},{}>"
2791
+ },
2792
+ "toolbarTags": {
2793
+ "$ref": "#/definitions/PartialObjectDeep<{exclude:string[];},{}>"
2794
+ }
2795
+ },
2796
+ "type": "object"
2797
+ },
2798
+ "PartialObjectDeep<SettingsPanelStoreTab,{}>": {
2799
+ "additionalProperties": false,
2800
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
2801
+ "properties": {
2802
+ "activeSectionIndex": {
2803
+ "type": "number"
2804
+ },
2805
+ "activeTab": {
2806
+ "type": "string"
2807
+ }
2808
+ },
2809
+ "type": "object"
2810
+ },
2811
+ "PartialObjectDeep<{adobe:{useProxies:boolean;};},{}>": {
2812
+ "additionalProperties": false,
2813
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
2814
+ "properties": {
2815
+ "adobe": {
2816
+ "$ref": "#/definitions/PartialObjectDeep<{useProxies:boolean;},{}>"
2817
+ }
2818
+ },
2819
+ "type": "object"
2820
+ },
2821
+ "PartialObjectDeep<{assets:{story:{excerpt:{maxLines:number;mode:string;};};};pipeline:{search:{maxItemsDisplayed:number;};};item:{maxHeight:number;};},{}>": {
2822
+ "additionalProperties": false,
2823
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
2824
+ "properties": {
2825
+ "assets": {
2826
+ "$ref": "#/definitions/PartialObjectDeep<{story:{excerpt:{maxLines:number;mode:string;};};},{}>"
2827
+ },
2828
+ "item": {
2829
+ "$ref": "#/definitions/PartialObjectDeep<{maxHeight:number;},{}>"
2830
+ },
2831
+ "pipeline": {
2832
+ "$ref": "#/definitions/PartialObjectDeep<{search:{maxItemsDisplayed:number;};},{}>"
2833
+ }
2834
+ },
2835
+ "type": "object"
2836
+ },
2837
+ "PartialObjectDeep<{color?:string;name?:string;},{}>": {
2838
+ "additionalProperties": false,
2839
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
2840
+ "properties": {
2841
+ "color": {
2842
+ "type": "string"
2843
+ },
2844
+ "name": {
2845
+ "type": "string"
2846
+ }
2847
+ },
2848
+ "type": "object"
2849
+ },
2850
+ "PartialObjectDeep<{createMenu:{showPreview:boolean;};colorTags:PromotedTag[];},{}>": {
2851
+ "additionalProperties": false,
2852
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
2853
+ "properties": {
2854
+ "colorTags": {
2855
+ "items": {
2856
+ "$ref": "#/definitions/PromotedTag"
2857
+ },
2858
+ "type": "array"
2859
+ },
2860
+ "createMenu": {
2861
+ "$ref": "#/definitions/PartialObjectDeep<{showPreview:boolean;},{}>"
2862
+ }
2863
+ },
2864
+ "type": "object"
2865
+ },
2866
+ "PartialObjectDeep<{createMenu:{sortOrder:string[];};},{}>": {
2867
+ "additionalProperties": false,
2868
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
2869
+ "properties": {
2870
+ "createMenu": {
2871
+ "$ref": "#/definitions/PartialObjectDeep<{sortOrder:string[];},{}>"
2872
+ }
2873
+ },
2874
+ "type": "object"
2875
+ },
2876
+ "PartialObjectDeep<{dimOnBlur:boolean;},{}>": {
2877
+ "additionalProperties": false,
2878
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
2879
+ "properties": {
2880
+ "dimOnBlur": {
2881
+ "type": "boolean"
2882
+ }
2883
+ },
2884
+ "type": "object"
2885
+ },
2886
+ "PartialObjectDeep<{enable:boolean;show24Hours:boolean;showAmPm:boolean;showSeconds:boolean;showDayOfWeek:boolean;showDate:boolean;format?:string;},{}>": {
2887
+ "additionalProperties": false,
2888
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
2889
+ "properties": {
2890
+ "enable": {
2891
+ "type": "boolean"
2892
+ },
2893
+ "format": {
2894
+ "type": "string"
2895
+ },
2896
+ "show24Hours": {
2897
+ "type": "boolean"
2898
+ },
2899
+ "showAmPm": {
2900
+ "type": "boolean"
2901
+ },
2902
+ "showDate": {
2903
+ "type": "boolean"
2904
+ },
2905
+ "showDayOfWeek": {
2906
+ "type": "boolean"
2907
+ },
2908
+ "showSeconds": {
2909
+ "type": "boolean"
2910
+ }
2911
+ },
2912
+ "type": "object"
2913
+ },
2914
+ "PartialObjectDeep<{enabled?:false;text?:{language:string;value:string;}[];offset?:number;duration?:number;},{}>": {
2915
+ "additionalProperties": false,
2916
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
2917
+ "properties": {
2918
+ "duration": {
2919
+ "type": "number"
2920
+ },
2921
+ "enabled": {
2922
+ "const": false,
2923
+ "type": "boolean"
2924
+ },
2925
+ "offset": {
2926
+ "type": "number"
2927
+ },
2928
+ "text": {
2929
+ "items": {
2930
+ "additionalProperties": false,
2931
+ "properties": {
2932
+ "language": {
2933
+ "type": "string"
2934
+ },
2935
+ "value": {
2936
+ "type": "string"
2937
+ }
2938
+ },
2939
+ "required": [
2940
+ "language",
2941
+ "value"
2942
+ ],
2943
+ "type": "object"
2944
+ },
2945
+ "type": "array"
2946
+ }
2947
+ },
2948
+ "type": "object"
2949
+ },
2950
+ "PartialObjectDeep<{eventThumbnails:boolean;},{}>": {
2951
+ "additionalProperties": false,
2952
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
2953
+ "properties": {
2954
+ "eventThumbnails": {
2955
+ "type": "boolean"
2956
+ }
2957
+ },
2958
+ "type": "object"
2959
+ },
2960
+ "PartialObjectDeep<{excerpt:{maxLines:number;mode:string;};},{}>": {
2961
+ "additionalProperties": false,
2962
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
2963
+ "properties": {
2964
+ "excerpt": {
2965
+ "$ref": "#/definitions/PartialObjectDeep<{maxLines:number;mode:string;},{}>"
2966
+ }
2967
+ },
2968
+ "type": "object"
2969
+ },
2970
+ "PartialObjectDeep<{exclude:string[];},{}>": {
2971
+ "additionalProperties": false,
2972
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
2973
+ "properties": {
2974
+ "exclude": {
2975
+ "items": {
2976
+ "type": "string"
2977
+ },
2978
+ "type": "array"
2979
+ }
2980
+ },
2981
+ "type": "object"
2982
+ },
2983
+ "PartialObjectDeep<{graphicBaseTemplate?:string;},{}>": {
2984
+ "additionalProperties": false,
2985
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
2986
+ "properties": {
2987
+ "graphicBaseTemplate": {
2988
+ "type": "string"
2989
+ }
2990
+ },
2991
+ "type": "object"
2992
+ },
2993
+ "PartialObjectDeep<{guide?:{mask?:boolean;};stepManyFrames:number;liveZoomDuration:number;importTitleTemplate:string;tile:{preview:string;showRenderProgress:boolean;};timecodeReference:string;maxSubclipDuration:number;rewindStep:number;forwardStep:number;interlacedPlayback:string;playbackRates:number[];subtitles:{spacing:number;maxCharactersPerLine:number;};subtitleTemplateId?:string;initialVolume:string;guides:{label:string;aspectRatio:string;}[];download:boolean;transcribe?:{subtitleDisclaimer?:{isUserConfigurable?:boolean;defaultValue?:{enabled?:false;text?:{language:string;value:string;}[];offset?:number;duration?:number;};};};},{}>": {
2994
+ "additionalProperties": false,
2995
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
2996
+ "properties": {
2997
+ "download": {
2998
+ "type": "boolean"
2999
+ },
3000
+ "forwardStep": {
3001
+ "type": "number"
3002
+ },
3003
+ "guide": {
3004
+ "$ref": "#/definitions/PartialObjectDeep<{mask?:boolean;},{}>"
3005
+ },
3006
+ "guides": {
3007
+ "items": {
3008
+ "additionalProperties": false,
3009
+ "properties": {
3010
+ "aspectRatio": {
3011
+ "type": "string"
3012
+ },
3013
+ "label": {
3014
+ "type": "string"
3015
+ }
3016
+ },
3017
+ "required": [
3018
+ "aspectRatio",
3019
+ "label"
3020
+ ],
3021
+ "type": "object"
3022
+ },
3023
+ "type": "array"
3024
+ },
3025
+ "importTitleTemplate": {
3026
+ "type": "string"
3027
+ },
3028
+ "initialVolume": {
3029
+ "type": "string"
3030
+ },
3031
+ "interlacedPlayback": {
3032
+ "type": "string"
3033
+ },
3034
+ "liveZoomDuration": {
3035
+ "type": "number"
3036
+ },
3037
+ "maxSubclipDuration": {
3038
+ "type": "number"
3039
+ },
3040
+ "playbackRates": {
3041
+ "items": {
3042
+ "type": "number"
3043
+ },
3044
+ "type": "array"
3045
+ },
3046
+ "rewindStep": {
3047
+ "type": "number"
3048
+ },
3049
+ "stepManyFrames": {
3050
+ "type": "number"
3051
+ },
3052
+ "subtitleTemplateId": {
3053
+ "type": "string"
3054
+ },
3055
+ "subtitles": {
3056
+ "$ref": "#/definitions/PartialObjectDeep<{spacing:number;maxCharactersPerLine:number;},{}>"
3057
+ },
3058
+ "tile": {
3059
+ "$ref": "#/definitions/PartialObjectDeep<{preview:string;showRenderProgress:boolean;},{}>"
3060
+ },
3061
+ "timecodeReference": {
3062
+ "type": "string"
3063
+ },
3064
+ "transcribe": {
3065
+ "$ref": "#/definitions/PartialObjectDeep<{subtitleDisclaimer?:{isUserConfigurable?:boolean;defaultValue?:{enabled?:false;text?:{language:string;value:string;}[];offset?:number;duration?:number;};};},{}>"
3066
+ }
3067
+ },
3068
+ "type": "object"
3069
+ },
3070
+ "PartialObjectDeep<{include:string[];},{}>": {
3071
+ "additionalProperties": false,
3072
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
3073
+ "properties": {
3074
+ "include": {
3075
+ "items": {
3076
+ "type": "string"
3077
+ },
3078
+ "type": "array"
3079
+ }
3080
+ },
3081
+ "type": "object"
3082
+ },
3083
+ "PartialObjectDeep<{include:string[];},{}>_1": {
3084
+ "additionalProperties": false,
3085
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
3086
+ "properties": {
3087
+ "include": {
3088
+ "items": {
3089
+ "type": "string"
3090
+ },
3091
+ "type": "array"
3092
+ }
3093
+ },
3094
+ "type": "object"
3095
+ },
3096
+ "PartialObjectDeep<{isUserConfigurable?:boolean;defaultValue?:{enabled?:false;text?:{language:string;value:string;}[];offset?:number;duration?:number;};},{}>": {
3097
+ "additionalProperties": false,
3098
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
3099
+ "properties": {
3100
+ "defaultValue": {
3101
+ "$ref": "#/definitions/PartialObjectDeep<{enabled?:false;text?:{language:string;value:string;}[];offset?:number;duration?:number;},{}>"
3102
+ },
3103
+ "isUserConfigurable": {
3104
+ "type": "boolean"
3105
+ }
3106
+ },
3107
+ "type": "object"
3108
+ },
3109
+ "PartialObjectDeep<{mask?:boolean;},{}>": {
3110
+ "additionalProperties": false,
3111
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
3112
+ "properties": {
3113
+ "mask": {
3114
+ "type": "boolean"
3115
+ }
3116
+ },
3117
+ "type": "object"
3118
+ },
3119
+ "PartialObjectDeep<{maxHeight:number;},{}>": {
3120
+ "additionalProperties": false,
3121
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
3122
+ "properties": {
3123
+ "maxHeight": {
3124
+ "type": "number"
3125
+ }
3126
+ },
3127
+ "type": "object"
3128
+ },
3129
+ "PartialObjectDeep<{maxItemsDisplayed:number;},{}>": {
3130
+ "additionalProperties": false,
3131
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
3132
+ "properties": {
3133
+ "maxItemsDisplayed": {
3134
+ "type": "number"
3135
+ }
3136
+ },
3137
+ "type": "object"
3138
+ },
3139
+ "PartialObjectDeep<{maxLines:number;mode:string;},{}>": {
3140
+ "additionalProperties": false,
3141
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
3142
+ "properties": {
3143
+ "maxLines": {
3144
+ "type": "number"
3145
+ },
3146
+ "mode": {
3147
+ "type": "string"
3148
+ }
3149
+ },
3150
+ "type": "object"
3151
+ },
3152
+ "PartialObjectDeep<{maxMru:number;maxTabs:number;},{}>": {
3153
+ "additionalProperties": false,
3154
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
3155
+ "properties": {
3156
+ "maxMru": {
3157
+ "type": "number"
3158
+ },
3159
+ "maxTabs": {
3160
+ "type": "number"
3161
+ }
3162
+ },
3163
+ "type": "object"
3164
+ },
3165
+ "PartialObjectDeep<{overrideUserContact:boolean;overrideUserLogin:boolean;},{}>": {
3166
+ "additionalProperties": false,
3167
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
3168
+ "properties": {
3169
+ "overrideUserContact": {
3170
+ "type": "boolean"
3171
+ },
3172
+ "overrideUserLogin": {
3173
+ "type": "boolean"
3174
+ }
3175
+ },
3176
+ "type": "object"
3177
+ },
3178
+ "PartialObjectDeep<{preview:string;showRenderProgress:boolean;},{}>": {
3179
+ "additionalProperties": false,
3180
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
3181
+ "properties": {
3182
+ "preview": {
3183
+ "type": "string"
3184
+ },
3185
+ "showRenderProgress": {
3186
+ "type": "boolean"
3187
+ }
3188
+ },
3189
+ "type": "object"
3190
+ },
3191
+ "PartialObjectDeep<{search:{maxItemsDisplayed:number;};},{}>": {
3192
+ "additionalProperties": false,
3193
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
3194
+ "properties": {
3195
+ "search": {
3196
+ "$ref": "#/definitions/PartialObjectDeep<{maxItemsDisplayed:number;},{}>"
3197
+ }
3198
+ },
3199
+ "type": "object"
3200
+ },
3201
+ "PartialObjectDeep<{showPreview:boolean;},{}>": {
3202
+ "additionalProperties": false,
3203
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
3204
+ "properties": {
3205
+ "showPreview": {
3206
+ "type": "boolean"
3207
+ }
3208
+ },
3209
+ "type": "object"
3210
+ },
3211
+ "PartialObjectDeep<{sortOrder:string[];},{}>": {
3212
+ "additionalProperties": false,
3213
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
3214
+ "properties": {
3215
+ "sortOrder": {
3216
+ "items": {
3217
+ "type": "string"
3218
+ },
3219
+ "type": "array"
3220
+ }
3221
+ },
3222
+ "type": "object"
3223
+ },
3224
+ "PartialObjectDeep<{spacing:number;maxCharactersPerLine:number;},{}>": {
3225
+ "additionalProperties": false,
3226
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
3227
+ "properties": {
3228
+ "maxCharactersPerLine": {
3229
+ "type": "number"
3230
+ },
3231
+ "spacing": {
3232
+ "type": "number"
3233
+ }
3234
+ },
3235
+ "type": "object"
3236
+ },
3237
+ "PartialObjectDeep<{story:{excerpt:{maxLines:number;mode:string;};};},{}>": {
3238
+ "additionalProperties": false,
3239
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
3240
+ "properties": {
3241
+ "story": {
3242
+ "$ref": "#/definitions/PartialObjectDeep<{excerpt:{maxLines:number;mode:string;};},{}>"
3243
+ }
3244
+ },
3245
+ "type": "object"
3246
+ },
3247
+ "PartialObjectDeep<{subtitleDisclaimer?:{isUserConfigurable?:boolean;defaultValue?:{enabled?:false;text?:{language:string;value:string;}[];offset?:number;duration?:number;};};},{}>": {
3248
+ "additionalProperties": false,
3249
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
3250
+ "properties": {
3251
+ "subtitleDisclaimer": {
3252
+ "$ref": "#/definitions/PartialObjectDeep<{isUserConfigurable?:boolean;defaultValue?:{enabled?:false;text?:{language:string;value:string;}[];offset?:number;duration?:number;};},{}>"
3253
+ }
3254
+ },
3255
+ "type": "object"
3256
+ },
3257
+ "PartialObjectDeep<{tabs?:ModuleTabs;},{}>": {
3258
+ "additionalProperties": false,
3259
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
3260
+ "properties": {
3261
+ "tabs": {
3262
+ "$ref": "#/definitions/PartialObjectDeep<ModuleTabs,{}>"
3263
+ }
3264
+ },
3265
+ "type": "object"
3266
+ },
3267
+ "PartialObjectDeep<{useProxies:boolean;},{}>": {
3268
+ "additionalProperties": false,
3269
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
3270
+ "properties": {
3271
+ "useProxies": {
3272
+ "type": "boolean"
3273
+ }
3274
+ },
3275
+ "type": "object"
3276
+ },
3277
+ "PartialObjectDeep<{utils:boolean;history:boolean;refs:boolean;access:boolean;files:boolean;export:boolean;json:boolean;hlsjs:boolean;resetRenders?:boolean;resetReplicas?:boolean;assetStatus?:boolean;consolidateMedia?:boolean;hideInAssetMenu?:boolean;assetRoute?:boolean;},{}>": {
3278
+ "additionalProperties": false,
3279
+ "description": "Same as `PartialDeep`, but accepts only `object`s as inputs. Internal helper for `PartialDeep`.",
3280
+ "properties": {
3281
+ "access": {
3282
+ "type": "boolean"
3283
+ },
3284
+ "assetRoute": {
3285
+ "type": "boolean"
3286
+ },
3287
+ "assetStatus": {
3288
+ "type": "boolean"
3289
+ },
3290
+ "consolidateMedia": {
3291
+ "type": "boolean"
3292
+ },
3293
+ "export": {
3294
+ "type": "boolean"
3295
+ },
3296
+ "files": {
3297
+ "type": "boolean"
3298
+ },
3299
+ "hideInAssetMenu": {
3300
+ "type": "boolean"
3301
+ },
3302
+ "history": {
3303
+ "type": "boolean"
3304
+ },
3305
+ "hlsjs": {
3306
+ "type": "boolean"
3307
+ },
3308
+ "json": {
3309
+ "type": "boolean"
3310
+ },
3311
+ "refs": {
3312
+ "type": "boolean"
3313
+ },
3314
+ "resetRenders": {
3315
+ "type": "boolean"
3316
+ },
3317
+ "resetReplicas": {
3318
+ "type": "boolean"
3319
+ },
3320
+ "utils": {
3321
+ "type": "boolean"
3322
+ }
3323
+ },
3324
+ "type": "object"
3325
+ },
3326
+ "PermissionRecordPermisson": {
3327
+ "anyOf": [
3328
+ {
3329
+ "$ref": "#/definitions/TagPermission"
3330
+ },
3331
+ {
3332
+ "$ref": "#/definitions/AssetPermission"
3333
+ },
3334
+ {
3335
+ "$ref": "#/definitions/RpcPermission"
3336
+ }
3337
+ ]
3338
+ },
3339
+ "PlanningAssigneesRecord": {
3340
+ "additionalProperties": false,
3341
+ "properties": {
3342
+ "value": {
3343
+ "items": {
3344
+ "type": "string"
3345
+ },
3346
+ "type": "array"
3347
+ }
3348
+ },
3349
+ "required": [
3350
+ "value"
3351
+ ],
3352
+ "type": "object"
3353
+ },
3354
+ "PlanningDeadlineRecord": {
3355
+ "additionalProperties": false,
3356
+ "properties": {
3357
+ "value": {
3358
+ "type": "string"
3359
+ }
3360
+ },
3361
+ "required": [
3362
+ "value"
3363
+ ],
3364
+ "type": "object"
3365
+ },
3366
+ "PlanningRecord": {
3367
+ "additionalProperties": false,
3368
+ "properties": {
3369
+ "deadline": {
3370
+ "type": "string"
3371
+ }
3372
+ },
3373
+ "type": "object"
3374
+ },
3375
+ "PromotedTag": {
3376
+ "additionalProperties": false,
3377
+ "properties": {
3378
+ "color": {
3379
+ "type": "string"
3380
+ },
3381
+ "description": {
3382
+ "type": "string"
3383
+ },
3384
+ "icon": {
3385
+ "type": "string"
3386
+ },
3387
+ "name": {
3388
+ "type": "string"
3389
+ }
3390
+ },
3391
+ "required": [
3392
+ "color",
3393
+ "description",
3394
+ "icon",
3395
+ "name"
3396
+ ],
3397
+ "type": "object"
3398
+ },
3399
+ "ProvidedPermissionRecord": {
3400
+ "additionalProperties": false,
3401
+ "properties": {
3402
+ "permissions": {
3403
+ "items": {
3404
+ "$ref": "#/definitions/PermissionRecordPermisson"
3405
+ },
3406
+ "type": "array"
3407
+ }
3408
+ },
3409
+ "required": [
3410
+ "permissions"
3411
+ ],
3412
+ "type": "object"
3413
+ },
3414
+ "PublishRecord": {
3415
+ "anyOf": [
3416
+ {
3417
+ "$ref": "#/definitions/YoutubePublishRecord"
3418
+ },
3419
+ {
3420
+ "$ref": "#/definitions/FacebookPublishRecord"
3421
+ },
3422
+ {
3423
+ "$ref": "#/definitions/FilePublishRecord"
3424
+ }
3425
+ ]
3426
+ },
3427
+ "PublishStatsRecord": {
3428
+ "anyOf": [
3429
+ {
3430
+ "$ref": "#/definitions/YoutubePublishStatsRecord"
3431
+ },
3432
+ {
3433
+ "$ref": "#/definitions/FacebookPublishStatsRecord"
3434
+ },
3435
+ {
3436
+ "$ref": "#/definitions/FilePublishStatsRecord"
3437
+ }
3438
+ ]
3439
+ },
3440
+ "Record<string,FilePublishRemoteRender>": {
3441
+ "additionalProperties": false,
3442
+ "type": "object"
3443
+ },
3444
+ "Record<string,FilePublishRender>": {
3445
+ "additionalProperties": false,
3446
+ "type": "object"
3447
+ },
3448
+ "Record<string,FilePublishRetrievedRender>": {
3449
+ "additionalProperties": false,
3450
+ "type": "object"
3451
+ },
3452
+ "Record<string,TemplateProperty>": {
3453
+ "additionalProperties": false,
3454
+ "type": "object"
3455
+ },
3456
+ "Record<string,object>": {
3457
+ "additionalProperties": false,
3458
+ "type": "object"
3459
+ },
3460
+ "Record<string,string>": {
3461
+ "additionalProperties": false,
3462
+ "type": "object"
3463
+ },
3464
+ "Record<string,unknown>": {
3465
+ "additionalProperties": false,
3466
+ "type": "object"
3467
+ },
3468
+ "Record<string,{rpcId:string;rpcData:Record<string,unknown>;}>": {
3469
+ "additionalProperties": false,
3470
+ "type": "object"
3471
+ },
3472
+ "Records": {
3473
+ "additionalProperties": false,
3474
+ "properties": {
3475
+ ":permission": {
3476
+ "additionalProperties": false,
3477
+ "properties": {
3478
+ "rows": {
3479
+ "items": {
3480
+ "type": "string"
3481
+ },
3482
+ "type": "array"
3483
+ }
3484
+ },
3485
+ "required": [
3486
+ "rows"
3487
+ ],
3488
+ "type": "object"
3489
+ },
3490
+ "hub-transcribe:render-profile": {
3491
+ "additionalProperties": false,
3492
+ "properties": {
3493
+ "format": {
3494
+ "type": "string"
3495
+ },
3496
+ "pick": {
3497
+ "items": {
3498
+ "type": "string"
3499
+ },
3500
+ "type": "array"
3501
+ },
3502
+ "transcribe": {
3503
+ "additionalProperties": false,
3504
+ "properties": {
3505
+ "engine": {
3506
+ "type": "string"
3507
+ }
3508
+ },
3509
+ "required": [
3510
+ "engine"
3511
+ ],
3512
+ "type": "object"
3513
+ }
3514
+ },
3515
+ "required": [
3516
+ "format",
3517
+ "pick",
3518
+ "transcribe"
3519
+ ],
3520
+ "type": "object"
3521
+ },
3522
+ "media.subtitles?": {
3523
+ "additionalProperties": false,
3524
+ "properties": {
3525
+ "languages": {
3526
+ "$ref": "#/definitions/Record<string,string>"
3527
+ }
3528
+ },
3529
+ "required": [
3530
+ "languages"
3531
+ ],
3532
+ "type": "object"
3533
+ },
3534
+ "media.transcribe?": {
3535
+ "additionalProperties": false,
3536
+ "properties": {
3537
+ "engines": {
3538
+ "$ref": "#/definitions/Record<string,string>"
3539
+ },
3540
+ "languages": {
3541
+ "$ref": "#/definitions/Record<string,string>"
3542
+ },
3543
+ "translate": {
3544
+ "additionalProperties": false,
3545
+ "properties": {
3546
+ "languages": {
3547
+ "$ref": "#/definitions/Record<string,string>"
3548
+ }
3549
+ },
3550
+ "required": [
3551
+ "languages"
3552
+ ],
3553
+ "type": "object"
3554
+ }
3555
+ },
3556
+ "required": [
3557
+ "engines",
3558
+ "languages"
3559
+ ],
3560
+ "type": "object"
3561
+ }
3562
+ },
3563
+ "required": [
3564
+ ":permission",
3565
+ "hub-transcribe:render-profile",
3566
+ "media.subtitles?",
3567
+ "media.transcribe?"
3568
+ ],
3569
+ "type": "object"
3570
+ },
3571
+ "RemoveOperation": {
3572
+ "additionalProperties": false,
3573
+ "properties": {
3574
+ "op": {
3575
+ "const": "remove",
3576
+ "type": "string"
3577
+ },
3578
+ "path": {
3579
+ "type": "string"
3580
+ }
3581
+ },
3582
+ "required": [
3583
+ "op",
3584
+ "path"
3585
+ ],
3586
+ "type": "object"
3587
+ },
3588
+ "ReplaceOperation": {
3589
+ "additionalProperties": false,
3590
+ "properties": {
3591
+ "op": {
3592
+ "const": "replace",
3593
+ "type": "string"
3594
+ },
3595
+ "path": {
3596
+ "type": "string"
3597
+ },
3598
+ "value": {}
3599
+ },
3600
+ "required": [
3601
+ "op",
3602
+ "path",
3603
+ "value"
3604
+ ],
3605
+ "type": "object"
3606
+ },
3607
+ "ReutersConnectionRecord": {
3608
+ "additionalProperties": false,
3609
+ "properties": {
3610
+ "audience": {
3611
+ "type": "string"
3612
+ },
3613
+ "clientId": {
3614
+ "type": "string"
3615
+ },
3616
+ "clientSecret": {
3617
+ "type": "string"
3618
+ },
3619
+ "type": {
3620
+ "const": "reuters",
3621
+ "type": "string"
3622
+ }
3623
+ },
3624
+ "required": [
3625
+ "type"
3626
+ ],
3627
+ "type": "object"
3628
+ },
3629
+ "RoleTagsRecord": {
3630
+ "additionalProperties": false,
3631
+ "properties": {
3632
+ "value": {
3633
+ "items": {
3634
+ "type": "string"
3635
+ },
3636
+ "type": "array"
3637
+ }
3638
+ },
3639
+ "required": [
3640
+ "value"
3641
+ ],
3642
+ "type": "object"
3643
+ },
3644
+ "RpcPermission": {
3645
+ "additionalProperties": false,
3646
+ "properties": {
3647
+ "method": {
3648
+ "type": "string"
3649
+ },
3650
+ "type": {
3651
+ "const": "rpc",
3652
+ "type": "string"
3653
+ }
3654
+ },
3655
+ "required": [
3656
+ "method",
3657
+ "type"
3658
+ ],
3659
+ "type": "object"
3660
+ },
3661
+ "ScriptChildrenRecord": {
3662
+ "additionalProperties": false,
3663
+ "properties": {
3664
+ "value": {
3665
+ "items": {
3666
+ "type": "string"
3667
+ },
3668
+ "type": "array"
3669
+ }
3670
+ },
3671
+ "type": "object"
3672
+ },
3673
+ "SearchRecord": {
3674
+ "additionalProperties": false,
3675
+ "properties": {
3676
+ "hits": {
3677
+ "items": {
3678
+ "type": "string"
3679
+ },
3680
+ "type": "array"
3681
+ }
3682
+ },
3683
+ "required": [
3684
+ "hits"
3685
+ ],
3686
+ "type": "object"
3687
+ },
3688
+ "TagPermission": {
3689
+ "additionalProperties": false,
3690
+ "properties": {
3691
+ "tags": {
3692
+ "items": {
3693
+ "type": "string"
3694
+ },
3695
+ "type": "array"
3696
+ },
3697
+ "type": {
3698
+ "const": "tag",
3699
+ "type": "string"
3700
+ }
3701
+ },
3702
+ "required": [
3703
+ "tags",
3704
+ "type"
3705
+ ],
3706
+ "type": "object"
3707
+ },
3708
+ "TemplateRecord": {
3709
+ "additionalProperties": false,
3710
+ "properties": {
3711
+ "mixin": {
3712
+ "items": {
3713
+ "type": "string"
3714
+ },
3715
+ "type": "array"
3716
+ },
3717
+ "properties": {
3718
+ "$ref": "#/definitions/Record<string,TemplateProperty>"
3719
+ }
3720
+ },
3721
+ "type": "object"
3722
+ },
3723
+ "TestOperation": {
3724
+ "additionalProperties": false,
3725
+ "properties": {
3726
+ "op": {
3727
+ "const": "test",
3728
+ "type": "string"
3729
+ },
3730
+ "path": {
3731
+ "type": "string"
3732
+ },
3733
+ "value": {}
3734
+ },
3735
+ "required": [
3736
+ "op",
3737
+ "path",
3738
+ "value"
3739
+ ],
3740
+ "type": "object"
3741
+ },
3742
+ "YoutubePublishRecord": {
3743
+ "additionalProperties": false,
3744
+ "properties": {
3745
+ "asset": {
3746
+ "type": "string"
3747
+ },
3748
+ "connection": {
3749
+ "type": "string"
3750
+ },
3751
+ "draft": {
3752
+ "additionalProperties": false,
3753
+ "properties": {
3754
+ "snippet": {
3755
+ "additionalProperties": false,
3756
+ "properties": {
3757
+ "description": {
3758
+ "type": "string"
3759
+ },
3760
+ "tags": {
3761
+ "items": {
3762
+ "type": "string"
3763
+ },
3764
+ "type": "array"
3765
+ },
3766
+ "title": {
3767
+ "type": "string"
3768
+ }
3769
+ },
3770
+ "type": "object"
3771
+ }
3772
+ },
3773
+ "type": "object"
3774
+ },
3775
+ "error": {
3776
+ "additionalProperties": false,
3777
+ "properties": {
3778
+ "method": {
3779
+ "type": "string"
3780
+ }
3781
+ },
3782
+ "required": [
3783
+ "method"
3784
+ ],
3785
+ "type": "object"
3786
+ },
3787
+ "messages": {
3788
+ "items": {
3789
+ "$ref": "#/definitions/Message"
3790
+ },
3791
+ "type": "array"
3792
+ },
3793
+ "published": {
3794
+ "$ref": "#/definitions/Record<string,unknown>"
3795
+ },
3796
+ "remote": {
3797
+ "$ref": "#/definitions/Record<string,unknown>"
3798
+ },
3799
+ "render": {},
3800
+ "type": {
3801
+ "const": "youtube",
3802
+ "type": "string"
3803
+ }
3804
+ },
3805
+ "required": [
3806
+ "type"
3807
+ ],
3808
+ "type": "object"
3809
+ },
3810
+ "YoutubePublishStatsRecord": {
3811
+ "additionalProperties": false,
3812
+ "properties": {
3813
+ "defaults": {
3814
+ "$ref": "#/definitions/Record<string,unknown>"
3815
+ },
3816
+ "messages": {
3817
+ "items": {
3818
+ "$ref": "#/definitions/Message"
3819
+ },
3820
+ "type": "array"
3821
+ },
3822
+ "retrieved": {
3823
+ "$ref": "#/definitions/Record<string,unknown>"
3824
+ },
3825
+ "status": {
3826
+ "type": "string"
3827
+ },
3828
+ "substatus": {
3829
+ "type": "string"
3830
+ }
3831
+ },
3832
+ "type": "object"
3833
+ }
3834
+ }
3835
+ }
3836
+