@nxtedition/types 23.1.7 → 23.1.9

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.
@@ -7101,118 +7101,831 @@ function _schemaDomainRecord(domain) {
7101
7101
  }
7102
7102
  };
7103
7103
  }
7104
+ case ":template": {
7105
+ return {
7106
+ version: "3.1",
7107
+ components: {
7108
+ schemas: {
7109
+ TemplateRecord: {
7110
+ type: "object",
7111
+ properties: {
7112
+ source: {
7113
+ type: "string"
7114
+ },
7115
+ controller: {
7116
+ type: "string"
7117
+ },
7118
+ type: {
7119
+ type: "string"
7120
+ },
7121
+ mixin: {
7122
+ type: "array",
7123
+ items: {
7124
+ type: "string"
7125
+ }
7126
+ },
7127
+ properties: {
7128
+ $ref: "#/components/schemas/RecordstringTemplateProperty"
7129
+ }
7130
+ },
7131
+ required: []
7132
+ },
7133
+ RecordstringTemplateProperty: {
7134
+ type: "object",
7135
+ properties: {},
7136
+ required: [],
7137
+ description: "Construct a type with a set of properties K of type T",
7138
+ additionalProperties: {
7139
+ $ref: "#/components/schemas/TemplateProperty"
7140
+ }
7141
+ },
7142
+ TemplateProperty: {
7143
+ type: "object",
7144
+ properties: {
7145
+ path: {
7146
+ type: "string"
7147
+ },
7148
+ render: {
7149
+ type: "object",
7150
+ properties: {
7151
+ type: {
7152
+ "const": "image"
7153
+ },
7154
+ profile: {
7155
+ type: "object",
7156
+ properties: {
7157
+ format: {
7158
+ type: "string"
7159
+ },
7160
+ video: {
7161
+ type: "object",
7162
+ properties: {
7163
+ width: {
7164
+ type: "number"
7165
+ },
7166
+ height: {
7167
+ type: "number"
7168
+ },
7169
+ fit: {
7170
+ "const": "cover"
7171
+ }
7172
+ },
7173
+ required: [
7174
+ "width",
7175
+ "height",
7176
+ "fit"
7177
+ ]
7178
+ }
7179
+ },
7180
+ required: []
7181
+ }
7182
+ },
7183
+ required: [
7184
+ "type"
7185
+ ]
7186
+ },
7187
+ type: {
7188
+ oneOf: [
7189
+ {
7190
+ "const": "string"
7191
+ },
7192
+ {
7193
+ "const": "number"
7194
+ },
7195
+ {
7196
+ "const": "boolean"
7197
+ },
7198
+ {
7199
+ "const": "object"
7200
+ },
7201
+ {
7202
+ "const": "array"
7203
+ },
7204
+ {
7205
+ "const": "asset"
7206
+ },
7207
+ {
7208
+ "const": "datetime"
7209
+ },
7210
+ {
7211
+ "const": "rpc"
7212
+ }
7213
+ ],
7214
+ description: "Specifying what type of data will be entered into the field."
7215
+ },
7216
+ title: {
7217
+ type: "string",
7218
+ description: "User-friendly title of the property. This will be used as the field's label in the UI."
7219
+ },
7220
+ description: {
7221
+ type: "string"
7222
+ },
7223
+ required: {
7224
+ type: "boolean",
7225
+ description: "If present, indicates that the user must specify a value for the asset to be treated as valid."
7226
+ },
7227
+ oneOf: {
7228
+ type: "array",
7229
+ items: {
7230
+ $ref: "#/components/schemas/SchemaPropertyunknown"
7231
+ }
7232
+ },
7233
+ anyOf: {
7234
+ type: "array",
7235
+ items: {
7236
+ $ref: "#/components/schemas/SchemaPropertyunknown"
7237
+ }
7238
+ },
7239
+ "enum": {
7240
+ type: "array",
7241
+ items: {}
7242
+ },
7243
+ minItems: {
7244
+ type: "number"
7245
+ },
7246
+ maxItems: {
7247
+ type: "number"
7248
+ },
7249
+ items: {
7250
+ $ref: "#/components/schemas/SchemaPropertyunknown"
7251
+ },
7252
+ properties: {
7253
+ $ref: "#/components/schemas/RecordstringSchemaPropertyunknown"
7254
+ },
7255
+ "default": {},
7256
+ "const": {},
7257
+ widget: {
7258
+ oneOf: [
7259
+ {
7260
+ type: "string"
7261
+ },
7262
+ {
7263
+ $ref: "#/components/schemas/WidgetOptions"
7264
+ }
7265
+ ]
7266
+ },
7267
+ placeholder: {
7268
+ type: "string"
7269
+ },
7270
+ helpText: {
7271
+ type: "string"
7272
+ },
7273
+ invalid: {
7274
+ type: "boolean"
7275
+ },
7276
+ emptyValue: {}
7277
+ },
7278
+ required: []
7279
+ },
7280
+ SchemaPropertyunknown: {
7281
+ type: "object",
7282
+ properties: {
7283
+ type: {
7284
+ oneOf: [
7285
+ {
7286
+ "const": "string"
7287
+ },
7288
+ {
7289
+ "const": "number"
7290
+ },
7291
+ {
7292
+ "const": "boolean"
7293
+ },
7294
+ {
7295
+ "const": "object"
7296
+ },
7297
+ {
7298
+ "const": "array"
7299
+ },
7300
+ {
7301
+ "const": "asset"
7302
+ },
7303
+ {
7304
+ "const": "datetime"
7305
+ },
7306
+ {
7307
+ "const": "rpc"
7308
+ }
7309
+ ],
7310
+ description: "Specifying what type of data will be entered into the field."
7311
+ },
7312
+ title: {
7313
+ type: "string",
7314
+ description: "User-friendly title of the property. This will be used as the field's label in the UI."
7315
+ },
7316
+ description: {
7317
+ type: "string"
7318
+ },
7319
+ required: {
7320
+ type: "boolean",
7321
+ description: "If present, indicates that the user must specify a value for the asset to be treated as valid."
7322
+ },
7323
+ oneOf: {
7324
+ type: "array",
7325
+ items: {
7326
+ $ref: "#/components/schemas/SchemaPropertyunknown"
7327
+ }
7328
+ },
7329
+ anyOf: {
7330
+ type: "array",
7331
+ items: {
7332
+ $ref: "#/components/schemas/SchemaPropertyunknown"
7333
+ }
7334
+ },
7335
+ "enum": {
7336
+ type: "array",
7337
+ items: {}
7338
+ },
7339
+ minItems: {
7340
+ type: "number"
7341
+ },
7342
+ maxItems: {
7343
+ type: "number"
7344
+ },
7345
+ items: {
7346
+ $ref: "#/components/schemas/SchemaPropertyunknown"
7347
+ },
7348
+ properties: {
7349
+ $ref: "#/components/schemas/RecordstringSchemaPropertyunknown"
7350
+ },
7351
+ "default": {},
7352
+ "const": {},
7353
+ widget: {
7354
+ oneOf: [
7355
+ {
7356
+ type: "string"
7357
+ },
7358
+ {
7359
+ $ref: "#/components/schemas/WidgetOptions"
7360
+ }
7361
+ ]
7362
+ },
7363
+ placeholder: {
7364
+ type: "string"
7365
+ },
7366
+ helpText: {
7367
+ type: "string"
7368
+ },
7369
+ invalid: {
7370
+ type: "boolean"
7371
+ },
7372
+ emptyValue: {}
7373
+ },
7374
+ required: []
7375
+ },
7376
+ RecordstringSchemaPropertyunknown: {
7377
+ type: "object",
7378
+ properties: {},
7379
+ required: [],
7380
+ description: "Construct a type with a set of properties K of type T",
7381
+ additionalProperties: {
7382
+ $ref: "#/components/schemas/SchemaPropertyunknown"
7383
+ }
7384
+ },
7385
+ WidgetOptions: {
7386
+ type: "object",
7387
+ properties: {
7388
+ type: {
7389
+ type: "string"
7390
+ },
7391
+ readOnly: {
7392
+ type: "boolean"
7393
+ }
7394
+ },
7395
+ required: [],
7396
+ additionalProperties: {}
7397
+ }
7398
+ }
7399
+ },
7400
+ schema: {
7401
+ $ref: "#/components/schemas/TemplateRecord"
7402
+ }
7403
+ };
7404
+ }
7104
7405
  case ":event": {
7105
7406
  return {
7106
7407
  version: "3.1",
7107
7408
  components: {
7108
7409
  schemas: {
7109
- EventRecord: {
7410
+ EventRecord: {
7411
+ type: "object",
7412
+ properties: {
7413
+ start: {
7414
+ oneOf: [
7415
+ {
7416
+ type: "null"
7417
+ },
7418
+ {
7419
+ type: "number"
7420
+ }
7421
+ ]
7422
+ },
7423
+ end: {
7424
+ oneOf: [
7425
+ {
7426
+ type: "null"
7427
+ },
7428
+ {
7429
+ type: "number"
7430
+ }
7431
+ ]
7432
+ },
7433
+ duration: {
7434
+ oneOf: [
7435
+ {
7436
+ type: "null"
7437
+ },
7438
+ {
7439
+ type: "number"
7440
+ }
7441
+ ]
7442
+ },
7443
+ position: {
7444
+ type: "string"
7445
+ },
7446
+ text: {
7447
+ type: "string"
7448
+ },
7449
+ lang: {
7450
+ type: "string"
7451
+ },
7452
+ style: {
7453
+ type: "string"
7454
+ },
7455
+ styleOverrides: {
7456
+ $ref: "#/components/schemas/SubtitleEventStyleOverrides"
7457
+ }
7458
+ },
7459
+ required: []
7460
+ },
7461
+ SubtitleEventStyleOverrides: {
7462
+ type: "object",
7463
+ properties: {
7464
+ marginL: {
7465
+ type: "string"
7466
+ },
7467
+ marginR: {
7468
+ type: "string"
7469
+ },
7470
+ marginV: {
7471
+ type: "string"
7472
+ },
7473
+ alignment: {
7474
+ type: "string"
7475
+ },
7476
+ fontname: {
7477
+ type: "string"
7478
+ },
7479
+ fontsize: {
7480
+ type: "string"
7481
+ },
7482
+ primaryColour: {
7483
+ type: "string"
7484
+ },
7485
+ secondaryColour: {
7486
+ type: "string"
7487
+ },
7488
+ outlineColour: {
7489
+ type: "string"
7490
+ },
7491
+ backColour: {
7492
+ type: "string"
7493
+ },
7494
+ bold: {
7495
+ type: "string"
7496
+ },
7497
+ italic: {
7498
+ type: "string"
7499
+ },
7500
+ underline: {
7501
+ type: "string"
7502
+ },
7503
+ strikeOut: {
7504
+ type: "string"
7505
+ }
7506
+ },
7507
+ required: []
7508
+ }
7509
+ }
7510
+ },
7511
+ schema: {
7512
+ $ref: "#/components/schemas/EventRecord"
7513
+ }
7514
+ };
7515
+ }
7516
+ case ":event._template?": {
7517
+ return {
7518
+ version: "3.1",
7519
+ components: {
7520
+ schemas: {
7521
+ EventTemplateRecord: {
7522
+ type: "object",
7523
+ properties: {
7524
+ mixin: {
7525
+ type: "array",
7526
+ items: {
7527
+ type: "string"
7528
+ }
7529
+ },
7530
+ properties: {
7531
+ $ref: "#/components/schemas/RecordstringTemplateProperty"
7532
+ },
7533
+ layout: {
7534
+ type: "object",
7535
+ properties: {
7536
+ title: {
7537
+ type: "string"
7538
+ }
7539
+ },
7540
+ required: []
7541
+ },
7542
+ controller: {
7543
+ type: "string"
7544
+ }
7545
+ },
7546
+ required: []
7547
+ },
7548
+ RecordstringTemplateProperty: {
7549
+ type: "object",
7550
+ properties: {},
7551
+ required: [],
7552
+ description: "Construct a type with a set of properties K of type T",
7553
+ additionalProperties: {
7554
+ $ref: "#/components/schemas/TemplateProperty"
7555
+ }
7556
+ },
7557
+ TemplateProperty: {
7558
+ type: "object",
7559
+ properties: {
7560
+ path: {
7561
+ type: "string"
7562
+ },
7563
+ render: {
7564
+ type: "object",
7565
+ properties: {
7566
+ type: {
7567
+ "const": "image"
7568
+ },
7569
+ profile: {
7570
+ type: "object",
7571
+ properties: {
7572
+ format: {
7573
+ type: "string"
7574
+ },
7575
+ video: {
7576
+ type: "object",
7577
+ properties: {
7578
+ width: {
7579
+ type: "number"
7580
+ },
7581
+ height: {
7582
+ type: "number"
7583
+ },
7584
+ fit: {
7585
+ "const": "cover"
7586
+ }
7587
+ },
7588
+ required: [
7589
+ "width",
7590
+ "height",
7591
+ "fit"
7592
+ ]
7593
+ }
7594
+ },
7595
+ required: []
7596
+ }
7597
+ },
7598
+ required: [
7599
+ "type"
7600
+ ]
7601
+ },
7602
+ type: {
7603
+ oneOf: [
7604
+ {
7605
+ "const": "string"
7606
+ },
7607
+ {
7608
+ "const": "number"
7609
+ },
7610
+ {
7611
+ "const": "boolean"
7612
+ },
7613
+ {
7614
+ "const": "object"
7615
+ },
7616
+ {
7617
+ "const": "array"
7618
+ },
7619
+ {
7620
+ "const": "asset"
7621
+ },
7622
+ {
7623
+ "const": "datetime"
7624
+ },
7625
+ {
7626
+ "const": "rpc"
7627
+ }
7628
+ ],
7629
+ description: "Specifying what type of data will be entered into the field."
7630
+ },
7631
+ title: {
7632
+ type: "string",
7633
+ description: "User-friendly title of the property. This will be used as the field's label in the UI."
7634
+ },
7635
+ description: {
7636
+ type: "string"
7637
+ },
7638
+ required: {
7639
+ type: "boolean",
7640
+ description: "If present, indicates that the user must specify a value for the asset to be treated as valid."
7641
+ },
7642
+ oneOf: {
7643
+ type: "array",
7644
+ items: {
7645
+ $ref: "#/components/schemas/SchemaPropertyunknown"
7646
+ }
7647
+ },
7648
+ anyOf: {
7649
+ type: "array",
7650
+ items: {
7651
+ $ref: "#/components/schemas/SchemaPropertyunknown"
7652
+ }
7653
+ },
7654
+ "enum": {
7655
+ type: "array",
7656
+ items: {}
7657
+ },
7658
+ minItems: {
7659
+ type: "number"
7660
+ },
7661
+ maxItems: {
7662
+ type: "number"
7663
+ },
7664
+ items: {
7665
+ $ref: "#/components/schemas/SchemaPropertyunknown"
7666
+ },
7667
+ properties: {
7668
+ $ref: "#/components/schemas/RecordstringSchemaPropertyunknown"
7669
+ },
7670
+ "default": {},
7671
+ "const": {},
7672
+ widget: {
7673
+ oneOf: [
7674
+ {
7675
+ type: "string"
7676
+ },
7677
+ {
7678
+ $ref: "#/components/schemas/WidgetOptions"
7679
+ }
7680
+ ]
7681
+ },
7682
+ placeholder: {
7683
+ type: "string"
7684
+ },
7685
+ helpText: {
7686
+ type: "string"
7687
+ },
7688
+ invalid: {
7689
+ type: "boolean"
7690
+ },
7691
+ emptyValue: {}
7692
+ },
7693
+ required: []
7694
+ },
7695
+ SchemaPropertyunknown: {
7696
+ type: "object",
7697
+ properties: {
7698
+ type: {
7699
+ oneOf: [
7700
+ {
7701
+ "const": "string"
7702
+ },
7703
+ {
7704
+ "const": "number"
7705
+ },
7706
+ {
7707
+ "const": "boolean"
7708
+ },
7709
+ {
7710
+ "const": "object"
7711
+ },
7712
+ {
7713
+ "const": "array"
7714
+ },
7715
+ {
7716
+ "const": "asset"
7717
+ },
7718
+ {
7719
+ "const": "datetime"
7720
+ },
7721
+ {
7722
+ "const": "rpc"
7723
+ }
7724
+ ],
7725
+ description: "Specifying what type of data will be entered into the field."
7726
+ },
7727
+ title: {
7728
+ type: "string",
7729
+ description: "User-friendly title of the property. This will be used as the field's label in the UI."
7730
+ },
7731
+ description: {
7732
+ type: "string"
7733
+ },
7734
+ required: {
7735
+ type: "boolean",
7736
+ description: "If present, indicates that the user must specify a value for the asset to be treated as valid."
7737
+ },
7738
+ oneOf: {
7739
+ type: "array",
7740
+ items: {
7741
+ $ref: "#/components/schemas/SchemaPropertyunknown"
7742
+ }
7743
+ },
7744
+ anyOf: {
7745
+ type: "array",
7746
+ items: {
7747
+ $ref: "#/components/schemas/SchemaPropertyunknown"
7748
+ }
7749
+ },
7750
+ "enum": {
7751
+ type: "array",
7752
+ items: {}
7753
+ },
7754
+ minItems: {
7755
+ type: "number"
7756
+ },
7757
+ maxItems: {
7758
+ type: "number"
7759
+ },
7760
+ items: {
7761
+ $ref: "#/components/schemas/SchemaPropertyunknown"
7762
+ },
7763
+ properties: {
7764
+ $ref: "#/components/schemas/RecordstringSchemaPropertyunknown"
7765
+ },
7766
+ "default": {},
7767
+ "const": {},
7768
+ widget: {
7769
+ oneOf: [
7770
+ {
7771
+ type: "string"
7772
+ },
7773
+ {
7774
+ $ref: "#/components/schemas/WidgetOptions"
7775
+ }
7776
+ ]
7777
+ },
7778
+ placeholder: {
7779
+ type: "string"
7780
+ },
7781
+ helpText: {
7782
+ type: "string"
7783
+ },
7784
+ invalid: {
7785
+ type: "boolean"
7786
+ },
7787
+ emptyValue: {}
7788
+ },
7789
+ required: []
7790
+ },
7791
+ RecordstringSchemaPropertyunknown: {
7792
+ type: "object",
7793
+ properties: {},
7794
+ required: [],
7795
+ description: "Construct a type with a set of properties K of type T",
7796
+ additionalProperties: {
7797
+ $ref: "#/components/schemas/SchemaPropertyunknown"
7798
+ }
7799
+ },
7800
+ WidgetOptions: {
7801
+ type: "object",
7802
+ properties: {
7803
+ type: {
7804
+ type: "string"
7805
+ },
7806
+ readOnly: {
7807
+ type: "boolean"
7808
+ }
7809
+ },
7810
+ required: [],
7811
+ additionalProperties: {}
7812
+ }
7813
+ }
7814
+ },
7815
+ schema: {
7816
+ $ref: "#/components/schemas/EventTemplateRecord"
7817
+ }
7818
+ };
7819
+ }
7820
+ case ":event.overlay?": {
7821
+ return {
7822
+ version: "3.1",
7823
+ components: {
7824
+ schemas: {
7825
+ EventOverlayRecord: {
7826
+ type: "object",
7827
+ properties: {},
7828
+ required: [],
7829
+ additionalProperties: {
7830
+ type: "object",
7831
+ properties: {
7832
+ data: {
7833
+ $ref: "#/components/schemas/EventPropsRecord"
7834
+ }
7835
+ },
7836
+ required: [
7837
+ "data"
7838
+ ]
7839
+ }
7840
+ },
7841
+ EventPropsRecord: {
7110
7842
  type: "object",
7111
7843
  properties: {
7112
- start: {
7113
- oneOf: [
7114
- {
7115
- type: "null"
7116
- },
7117
- {
7118
- type: "number"
7119
- }
7120
- ]
7844
+ source: {
7845
+ type: "string"
7121
7846
  },
7122
- end: {
7847
+ cueCard: {
7123
7848
  oneOf: [
7124
7849
  {
7125
- type: "null"
7850
+ type: "string"
7126
7851
  },
7127
7852
  {
7128
- type: "number"
7853
+ type: "boolean"
7129
7854
  }
7130
7855
  ]
7131
7856
  },
7132
- duration: {
7857
+ printRundownColor: {
7858
+ type: "string"
7859
+ },
7860
+ startTime: {
7861
+ type: "number"
7862
+ },
7863
+ shotboxGroup: {
7133
7864
  oneOf: [
7134
7865
  {
7135
- type: "null"
7866
+ type: "string"
7136
7867
  },
7137
7868
  {
7138
- type: "number"
7869
+ type: "array",
7870
+ items: {
7871
+ type: "string"
7872
+ }
7139
7873
  }
7140
7874
  ]
7141
7875
  },
7142
- position: {
7143
- type: "string"
7144
- },
7145
- text: {
7146
- type: "string"
7147
- },
7148
- lang: {
7149
- type: "string"
7150
- },
7151
- style: {
7152
- type: "string"
7153
- },
7154
- styleOverrides: {
7155
- $ref: "#/components/schemas/SubtitleEventStyleOverrides"
7876
+ shotboxVisible: {
7877
+ type: "boolean"
7156
7878
  }
7157
7879
  },
7158
- required: []
7880
+ required: [],
7881
+ additionalProperties: {
7882
+ $ref: "#/components/schemas/JsonValue"
7883
+ }
7159
7884
  },
7160
- SubtitleEventStyleOverrides: {
7161
- type: "object",
7162
- properties: {
7163
- marginL: {
7164
- type: "string"
7165
- },
7166
- marginR: {
7167
- type: "string"
7168
- },
7169
- marginV: {
7170
- type: "string"
7171
- },
7172
- alignment: {
7173
- type: "string"
7174
- },
7175
- fontname: {
7176
- type: "string"
7177
- },
7178
- fontsize: {
7179
- type: "string"
7180
- },
7181
- primaryColour: {
7182
- type: "string"
7183
- },
7184
- secondaryColour: {
7185
- type: "string"
7186
- },
7187
- outlineColour: {
7188
- type: "string"
7885
+ JsonValue: {
7886
+ oneOf: [
7887
+ {
7888
+ type: "null"
7189
7889
  },
7190
- backColour: {
7890
+ {
7191
7891
  type: "string"
7192
7892
  },
7193
- bold: {
7194
- type: "string"
7893
+ {
7894
+ type: "number"
7195
7895
  },
7196
- italic: {
7197
- type: "string"
7896
+ {
7897
+ type: "boolean"
7198
7898
  },
7199
- underline: {
7200
- type: "string"
7899
+ {
7900
+ $ref: "#/components/schemas/ArrayJsonValue"
7201
7901
  },
7202
- strikeOut: {
7203
- type: "string"
7902
+ {
7903
+ $ref: "#/components/schemas/__type.o1"
7204
7904
  }
7205
- },
7206
- required: []
7905
+ ]
7906
+ },
7907
+ ArrayJsonValue: {
7908
+ type: "array",
7909
+ items: {
7910
+ $ref: "#/components/schemas/JsonValue"
7911
+ }
7912
+ },
7913
+ "__type.o1": {
7914
+ type: "object",
7915
+ properties: {},
7916
+ required: [],
7917
+ additionalProperties: {
7918
+ $ref: "#/components/schemas/JsonValue"
7919
+ }
7207
7920
  }
7208
7921
  }
7209
7922
  },
7210
7923
  schema: {
7211
- $ref: "#/components/schemas/EventRecord"
7924
+ $ref: "#/components/schemas/EventOverlayRecord"
7212
7925
  }
7213
7926
  };
7214
7927
  }
7215
- case ":event._template?": {
7928
+ case ":event.template?": {
7216
7929
  return {
7217
7930
  version: "3.1",
7218
7931
  components: {
@@ -7227,179 +7940,287 @@ function _schemaDomainRecord(domain) {
7227
7940
  }
7228
7941
  },
7229
7942
  properties: {
7230
- $ref: "#/components/schemas/object"
7943
+ $ref: "#/components/schemas/RecordstringTemplateProperty"
7944
+ },
7945
+ layout: {
7946
+ type: "object",
7947
+ properties: {
7948
+ title: {
7949
+ type: "string"
7950
+ }
7951
+ },
7952
+ required: []
7953
+ },
7954
+ controller: {
7955
+ type: "string"
7956
+ }
7957
+ },
7958
+ required: []
7959
+ },
7960
+ RecordstringTemplateProperty: {
7961
+ type: "object",
7962
+ properties: {},
7963
+ required: [],
7964
+ description: "Construct a type with a set of properties K of type T",
7965
+ additionalProperties: {
7966
+ $ref: "#/components/schemas/TemplateProperty"
7967
+ }
7968
+ },
7969
+ TemplateProperty: {
7970
+ type: "object",
7971
+ properties: {
7972
+ path: {
7973
+ type: "string"
7974
+ },
7975
+ render: {
7976
+ type: "object",
7977
+ properties: {
7978
+ type: {
7979
+ "const": "image"
7980
+ },
7981
+ profile: {
7982
+ type: "object",
7983
+ properties: {
7984
+ format: {
7985
+ type: "string"
7986
+ },
7987
+ video: {
7988
+ type: "object",
7989
+ properties: {
7990
+ width: {
7991
+ type: "number"
7992
+ },
7993
+ height: {
7994
+ type: "number"
7995
+ },
7996
+ fit: {
7997
+ "const": "cover"
7998
+ }
7999
+ },
8000
+ required: [
8001
+ "width",
8002
+ "height",
8003
+ "fit"
8004
+ ]
8005
+ }
8006
+ },
8007
+ required: []
8008
+ }
8009
+ },
8010
+ required: [
8011
+ "type"
8012
+ ]
8013
+ },
8014
+ type: {
8015
+ oneOf: [
8016
+ {
8017
+ "const": "string"
8018
+ },
8019
+ {
8020
+ "const": "number"
8021
+ },
8022
+ {
8023
+ "const": "boolean"
8024
+ },
8025
+ {
8026
+ "const": "object"
8027
+ },
8028
+ {
8029
+ "const": "array"
8030
+ },
8031
+ {
8032
+ "const": "asset"
8033
+ },
8034
+ {
8035
+ "const": "datetime"
8036
+ },
8037
+ {
8038
+ "const": "rpc"
8039
+ }
8040
+ ],
8041
+ description: "Specifying what type of data will be entered into the field."
8042
+ },
8043
+ title: {
8044
+ type: "string",
8045
+ description: "User-friendly title of the property. This will be used as the field's label in the UI."
8046
+ },
8047
+ description: {
8048
+ type: "string"
8049
+ },
8050
+ required: {
8051
+ type: "boolean",
8052
+ description: "If present, indicates that the user must specify a value for the asset to be treated as valid."
8053
+ },
8054
+ oneOf: {
8055
+ type: "array",
8056
+ items: {
8057
+ $ref: "#/components/schemas/SchemaPropertyunknown"
8058
+ }
8059
+ },
8060
+ anyOf: {
8061
+ type: "array",
8062
+ items: {
8063
+ $ref: "#/components/schemas/SchemaPropertyunknown"
8064
+ }
8065
+ },
8066
+ "enum": {
8067
+ type: "array",
8068
+ items: {}
8069
+ },
8070
+ minItems: {
8071
+ type: "number"
8072
+ },
8073
+ maxItems: {
8074
+ type: "number"
8075
+ },
8076
+ items: {
8077
+ $ref: "#/components/schemas/SchemaPropertyunknown"
8078
+ },
8079
+ properties: {
8080
+ $ref: "#/components/schemas/RecordstringSchemaPropertyunknown"
7231
8081
  },
7232
- layout: {
7233
- type: "object",
7234
- properties: {
7235
- title: {
8082
+ "default": {},
8083
+ "const": {},
8084
+ widget: {
8085
+ oneOf: [
8086
+ {
7236
8087
  type: "string"
8088
+ },
8089
+ {
8090
+ $ref: "#/components/schemas/WidgetOptions"
7237
8091
  }
7238
- },
7239
- required: []
8092
+ ]
7240
8093
  },
7241
- controller: {
8094
+ placeholder: {
7242
8095
  type: "string"
7243
- }
8096
+ },
8097
+ helpText: {
8098
+ type: "string"
8099
+ },
8100
+ invalid: {
8101
+ type: "boolean"
8102
+ },
8103
+ emptyValue: {}
7244
8104
  },
7245
8105
  required: []
7246
8106
  },
7247
- object: {
7248
- type: "object",
7249
- properties: {},
7250
- required: []
7251
- }
7252
- }
7253
- },
7254
- schema: {
7255
- $ref: "#/components/schemas/EventTemplateRecord"
7256
- }
7257
- };
7258
- }
7259
- case ":event.overlay?": {
7260
- return {
7261
- version: "3.1",
7262
- components: {
7263
- schemas: {
7264
- EventOverlayRecord: {
7265
- type: "object",
7266
- properties: {},
7267
- required: [],
7268
- additionalProperties: {
7269
- type: "object",
7270
- properties: {
7271
- data: {
7272
- $ref: "#/components/schemas/EventPropsRecord"
7273
- }
7274
- },
7275
- required: [
7276
- "data"
7277
- ]
7278
- }
7279
- },
7280
- EventPropsRecord: {
8107
+ SchemaPropertyunknown: {
7281
8108
  type: "object",
7282
8109
  properties: {
7283
- source: {
7284
- type: "string"
7285
- },
7286
- cueCard: {
8110
+ type: {
7287
8111
  oneOf: [
7288
8112
  {
7289
- type: "string"
8113
+ "const": "string"
7290
8114
  },
7291
8115
  {
7292
- type: "boolean"
8116
+ "const": "number"
8117
+ },
8118
+ {
8119
+ "const": "boolean"
8120
+ },
8121
+ {
8122
+ "const": "object"
8123
+ },
8124
+ {
8125
+ "const": "array"
8126
+ },
8127
+ {
8128
+ "const": "asset"
8129
+ },
8130
+ {
8131
+ "const": "datetime"
8132
+ },
8133
+ {
8134
+ "const": "rpc"
7293
8135
  }
7294
- ]
8136
+ ],
8137
+ description: "Specifying what type of data will be entered into the field."
7295
8138
  },
7296
- printRundownColor: {
8139
+ title: {
8140
+ type: "string",
8141
+ description: "User-friendly title of the property. This will be used as the field's label in the UI."
8142
+ },
8143
+ description: {
7297
8144
  type: "string"
7298
8145
  },
7299
- startTime: {
8146
+ required: {
8147
+ type: "boolean",
8148
+ description: "If present, indicates that the user must specify a value for the asset to be treated as valid."
8149
+ },
8150
+ oneOf: {
8151
+ type: "array",
8152
+ items: {
8153
+ $ref: "#/components/schemas/SchemaPropertyunknown"
8154
+ }
8155
+ },
8156
+ anyOf: {
8157
+ type: "array",
8158
+ items: {
8159
+ $ref: "#/components/schemas/SchemaPropertyunknown"
8160
+ }
8161
+ },
8162
+ "enum": {
8163
+ type: "array",
8164
+ items: {}
8165
+ },
8166
+ minItems: {
7300
8167
  type: "number"
7301
8168
  },
7302
- shotboxGroup: {
8169
+ maxItems: {
8170
+ type: "number"
8171
+ },
8172
+ items: {
8173
+ $ref: "#/components/schemas/SchemaPropertyunknown"
8174
+ },
8175
+ properties: {
8176
+ $ref: "#/components/schemas/RecordstringSchemaPropertyunknown"
8177
+ },
8178
+ "default": {},
8179
+ "const": {},
8180
+ widget: {
7303
8181
  oneOf: [
7304
8182
  {
7305
8183
  type: "string"
7306
8184
  },
7307
8185
  {
7308
- type: "array",
7309
- items: {
7310
- type: "string"
7311
- }
8186
+ $ref: "#/components/schemas/WidgetOptions"
7312
8187
  }
7313
8188
  ]
7314
8189
  },
7315
- shotboxVisible: {
7316
- type: "boolean"
7317
- }
7318
- },
7319
- required: [],
7320
- additionalProperties: {
7321
- $ref: "#/components/schemas/JsonValue"
7322
- }
7323
- },
7324
- JsonValue: {
7325
- oneOf: [
7326
- {
7327
- type: "null"
7328
- },
7329
- {
8190
+ placeholder: {
7330
8191
  type: "string"
7331
8192
  },
7332
- {
7333
- type: "number"
8193
+ helpText: {
8194
+ type: "string"
7334
8195
  },
7335
- {
8196
+ invalid: {
7336
8197
  type: "boolean"
7337
8198
  },
7338
- {
7339
- $ref: "#/components/schemas/ArrayJsonValue"
7340
- },
7341
- {
7342
- $ref: "#/components/schemas/__type.o1"
7343
- }
7344
- ]
7345
- },
7346
- ArrayJsonValue: {
7347
- type: "array",
7348
- items: {
7349
- $ref: "#/components/schemas/JsonValue"
7350
- }
8199
+ emptyValue: {}
8200
+ },
8201
+ required: []
7351
8202
  },
7352
- "__type.o1": {
8203
+ RecordstringSchemaPropertyunknown: {
7353
8204
  type: "object",
7354
8205
  properties: {},
7355
8206
  required: [],
8207
+ description: "Construct a type with a set of properties K of type T",
7356
8208
  additionalProperties: {
7357
- $ref: "#/components/schemas/JsonValue"
8209
+ $ref: "#/components/schemas/SchemaPropertyunknown"
7358
8210
  }
7359
- }
7360
- }
7361
- },
7362
- schema: {
7363
- $ref: "#/components/schemas/EventOverlayRecord"
7364
- }
7365
- };
7366
- }
7367
- case ":event.template?": {
7368
- return {
7369
- version: "3.1",
7370
- components: {
7371
- schemas: {
7372
- EventTemplateRecord: {
8211
+ },
8212
+ WidgetOptions: {
7373
8213
  type: "object",
7374
8214
  properties: {
7375
- mixin: {
7376
- type: "array",
7377
- items: {
7378
- type: "string"
7379
- }
7380
- },
7381
- properties: {
7382
- $ref: "#/components/schemas/object"
7383
- },
7384
- layout: {
7385
- type: "object",
7386
- properties: {
7387
- title: {
7388
- type: "string"
7389
- }
7390
- },
7391
- required: []
7392
- },
7393
- controller: {
8215
+ type: {
7394
8216
  type: "string"
8217
+ },
8218
+ readOnly: {
8219
+ type: "boolean"
7395
8220
  }
7396
8221
  },
7397
- required: []
7398
- },
7399
- object: {
7400
- type: "object",
7401
- properties: {},
7402
- required: []
8222
+ required: [],
8223
+ additionalProperties: {}
7403
8224
  }
7404
8225
  }
7405
8226
  },
@@ -8077,7 +8898,38 @@ function _schemaDomainRecord(domain) {
8077
8898
  }
8078
8899
  },
8079
8900
  schema: {
8080
- $ref: "#/components/schemas/FileStats"
8901
+ $ref: "#/components/schemas/FileStats"
8902
+ }
8903
+ };
8904
+ }
8905
+ case ":file.methods?": {
8906
+ return {
8907
+ version: "3.1",
8908
+ components: {
8909
+ schemas: {
8910
+ FileDomainMethodsRecord: {
8911
+ type: "object",
8912
+ properties: {
8913
+ stop: {
8914
+ type: "object",
8915
+ properties: {
8916
+ rpcId: {
8917
+ type: "string"
8918
+ },
8919
+ rpcData: {}
8920
+ },
8921
+ required: [
8922
+ "rpcId",
8923
+ "rpcData"
8924
+ ]
8925
+ }
8926
+ },
8927
+ required: []
8928
+ }
8929
+ }
8930
+ },
8931
+ schema: {
8932
+ $ref: "#/components/schemas/FileDomainMethodsRecord"
8081
8933
  }
8082
8934
  };
8083
8935
  }
@@ -8770,6 +9622,12 @@ function _schemaDomainRecord(domain) {
8770
9622
  type: "string"
8771
9623
  }
8772
9624
  ]
9625
+ },
9626
+ timecode: {
9627
+ type: "number"
9628
+ },
9629
+ timezone: {
9630
+ type: "string"
8773
9631
  }
8774
9632
  },
8775
9633
  required: []
@@ -9426,6 +10284,24 @@ function _schemaDomainRecord(domain) {
9426
10284
  items: {
9427
10285
  $ref: "#/components/schemas/Operation"
9428
10286
  }
10287
+ },
10288
+ speakerLabels: {
10289
+ type: "object",
10290
+ properties: {},
10291
+ required: [],
10292
+ description: "Labels for speakers",
10293
+ additionalProperties: {
10294
+ type: "string"
10295
+ }
10296
+ },
10297
+ speakerRemaps: {
10298
+ type: "object",
10299
+ properties: {},
10300
+ required: [],
10301
+ description: "Override speaker IDs for specific paragraphs",
10302
+ additionalProperties: {
10303
+ type: "string"
10304
+ }
9429
10305
  }
9430
10306
  },
9431
10307
  required: []
@@ -9963,6 +10839,12 @@ function _schemaDomainRecord(domain) {
9963
10839
  type: "string"
9964
10840
  }
9965
10841
  ]
10842
+ },
10843
+ timecode: {
10844
+ type: "number"
10845
+ },
10846
+ timezone: {
10847
+ type: "string"
9966
10848
  }
9967
10849
  },
9968
10850
  required: []
@@ -12474,6 +13356,12 @@ function _schemaDomainRecord(domain) {
12474
13356
  type: "string"
12475
13357
  }
12476
13358
  ]
13359
+ },
13360
+ timecode: {
13361
+ type: "number"
13362
+ },
13363
+ timezone: {
13364
+ type: "string"
12477
13365
  }
12478
13366
  },
12479
13367
  required: []
@@ -14153,6 +15041,12 @@ function _schemaDomainRecord(domain) {
14153
15041
  type: "string"
14154
15042
  }
14155
15043
  ]
15044
+ },
15045
+ timecode: {
15046
+ type: "number"
15047
+ },
15048
+ timezone: {
15049
+ type: "string"
14156
15050
  }
14157
15051
  },
14158
15052
  required: []
@@ -15761,6 +16655,16 @@ function _schemaDomainRecord(domain) {
15761
16655
  type: "number"
15762
16656
  }
15763
16657
  ]
16658
+ },
16659
+ duration: {
16660
+ oneOf: [
16661
+ {
16662
+ type: "null"
16663
+ },
16664
+ {
16665
+ type: "number"
16666
+ }
16667
+ ]
15764
16668
  }
15765
16669
  },
15766
16670
  required: []
@@ -16018,6 +16922,12 @@ function _schemaDomainRecord(domain) {
16018
16922
  type: "string"
16019
16923
  }
16020
16924
  ]
16925
+ },
16926
+ timecode: {
16927
+ type: "number"
16928
+ },
16929
+ timezone: {
16930
+ type: "string"
16021
16931
  }
16022
16932
  },
16023
16933
  required: []
@@ -16551,6 +17461,26 @@ function _schemaDomainRecord(domain) {
16551
17461
  required: []
16552
17462
  }
16553
17463
  },
17464
+ timecode: {
17465
+ oneOf: [
17466
+ {
17467
+ type: "null"
17468
+ },
17469
+ {
17470
+ type: "number"
17471
+ }
17472
+ ]
17473
+ },
17474
+ live: {
17475
+ oneOf: [
17476
+ {
17477
+ type: "null"
17478
+ },
17479
+ {
17480
+ type: "boolean"
17481
+ }
17482
+ ]
17483
+ },
16554
17484
  result: {},
16555
17485
  error: {
16556
17486
  oneOf: [
@@ -19188,6 +20118,16 @@ function _schemaDomainRecord(domain) {
19188
20118
  graphics: {
19189
20119
  type: "boolean"
19190
20120
  },
20121
+ subtitle: {
20122
+ oneOf: [
20123
+ {
20124
+ type: "null"
20125
+ },
20126
+ {
20127
+ type: "string"
20128
+ }
20129
+ ]
20130
+ },
19191
20131
  waveform: {
19192
20132
  type: "boolean"
19193
20133
  },
@@ -19270,8 +20210,18 @@ function _schemaDomainRecord(domain) {
19270
20210
  },
19271
20211
  required: []
19272
20212
  },
20213
+ showTimeCode: {
20214
+ type: "boolean"
20215
+ },
19273
20216
  timecodeReference: {
19274
- type: "string"
20217
+ oneOf: [
20218
+ {
20219
+ "const": "default"
20220
+ },
20221
+ {
20222
+ "const": "subclip"
20223
+ }
20224
+ ]
19275
20225
  },
19276
20226
  maxSubclipDuration: {
19277
20227
  type: "number"
@@ -19529,6 +20479,9 @@ function _schemaDomainRecord(domain) {
19529
20479
  transcribe: {
19530
20480
  type: "object",
19531
20481
  properties: {
20482
+ showSpeakers: {
20483
+ type: "boolean"
20484
+ },
19532
20485
  subtitleDisclaimer: {
19533
20486
  type: "object",
19534
20487
  properties: {
@@ -22034,180 +22987,6 @@ function _schemaDomainRecord(domain) {
22034
22987
  }
22035
22988
  };
22036
22989
  }
22037
- case ":template": {
22038
- return {
22039
- version: "3.1",
22040
- components: {
22041
- schemas: {
22042
- TemplateRecord: {
22043
- type: "object",
22044
- properties: {
22045
- source: {
22046
- type: "string"
22047
- },
22048
- controller: {
22049
- type: "string"
22050
- },
22051
- type: {
22052
- type: "string"
22053
- },
22054
- mixin: {
22055
- type: "array",
22056
- items: {
22057
- type: "string"
22058
- }
22059
- },
22060
- properties: {
22061
- $ref: "#/components/schemas/RecordstringTemplateProperty"
22062
- }
22063
- },
22064
- required: []
22065
- },
22066
- RecordstringTemplateProperty: {
22067
- type: "object",
22068
- properties: {},
22069
- required: [],
22070
- description: "Construct a type with a set of properties K of type T",
22071
- additionalProperties: {
22072
- $ref: "#/components/schemas/TemplateProperty"
22073
- }
22074
- },
22075
- TemplateProperty: {
22076
- type: "object",
22077
- properties: {
22078
- path: {
22079
- type: "string"
22080
- },
22081
- type: {
22082
- type: "string"
22083
- },
22084
- label: {
22085
- type: "string"
22086
- },
22087
- defaultValue: {
22088
- type: "string"
22089
- },
22090
- widget: {
22091
- type: "object",
22092
- properties: {
22093
- type: {
22094
- type: "string"
22095
- }
22096
- },
22097
- required: [
22098
- "type"
22099
- ]
22100
- },
22101
- properties: {
22102
- $ref: "#/components/schemas/object"
22103
- },
22104
- items: {
22105
- type: "object",
22106
- properties: {
22107
- properties: {
22108
- $ref: "#/components/schemas/RecordstringTemplatePropertySchema"
22109
- }
22110
- },
22111
- required: []
22112
- },
22113
- render: {
22114
- type: "object",
22115
- properties: {
22116
- type: {
22117
- "const": "image"
22118
- },
22119
- profile: {
22120
- type: "object",
22121
- properties: {
22122
- format: {
22123
- type: "string"
22124
- },
22125
- video: {
22126
- type: "object",
22127
- properties: {
22128
- width: {
22129
- type: "number"
22130
- },
22131
- height: {
22132
- type: "number"
22133
- },
22134
- fit: {
22135
- "const": "cover"
22136
- }
22137
- },
22138
- required: [
22139
- "width",
22140
- "height",
22141
- "fit"
22142
- ]
22143
- }
22144
- },
22145
- required: []
22146
- }
22147
- },
22148
- required: [
22149
- "type"
22150
- ]
22151
- }
22152
- },
22153
- required: []
22154
- },
22155
- object: {
22156
- type: "object",
22157
- properties: {},
22158
- required: []
22159
- },
22160
- RecordstringTemplatePropertySchema: {
22161
- type: "object",
22162
- properties: {},
22163
- required: [],
22164
- description: "Construct a type with a set of properties K of type T",
22165
- additionalProperties: {
22166
- $ref: "#/components/schemas/TemplatePropertySchema"
22167
- }
22168
- },
22169
- TemplatePropertySchema: {
22170
- type: "object",
22171
- properties: {
22172
- path: {
22173
- type: "string"
22174
- },
22175
- type: {
22176
- type: "string"
22177
- },
22178
- label: {
22179
- type: "string"
22180
- },
22181
- defaultValue: {
22182
- type: "string"
22183
- },
22184
- widget: {
22185
- type: "object",
22186
- properties: {
22187
- type: {
22188
- type: "string"
22189
- }
22190
- },
22191
- required: [
22192
- "type"
22193
- ]
22194
- },
22195
- items: {
22196
- $ref: "#/components/schemas/TemplatePropertySchema"
22197
- },
22198
- properties: {
22199
- $ref: "#/components/schemas/RecordstringTemplatePropertySchema"
22200
- }
22201
- },
22202
- required: []
22203
- }
22204
- }
22205
- },
22206
- schema: {
22207
- $ref: "#/components/schemas/TemplateRecord"
22208
- }
22209
- };
22210
- }
22211
22990
  case ":_user-notification-status": {
22212
22991
  return {
22213
22992
  version: "3.1",