@nxtedition/types 23.0.59 → 23.0.61
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.
- package/dist/common/asset-indexer.d.ts +98 -0
- package/dist/common/asset-indexer.js +1 -0
- package/dist/common/index.d.ts +3 -0
- package/dist/common/index.js +3 -0
- package/dist/common/panel-property.d.ts +29 -0
- package/dist/common/panel-property.js +1 -0
- package/dist/common/schema-property.d.ts +12 -0
- package/dist/common/schema-property.js +1 -0
- package/dist/common/settings.d.ts +7 -0
- package/dist/nxtpression.d.ts +232 -6
- package/dist/records/domains/asset.d.ts +10 -1
- package/dist/records/domains/device.d.ts +16 -0
- package/dist/records/domains/device.js +1 -0
- package/dist/records/domains/index.d.ts +7 -1
- package/dist/records/domains/index.js +3 -0
- package/dist/records/domains/ingestschedule.d.ts +45 -0
- package/dist/records/domains/ingestschedule.js +1 -0
- package/dist/records/domains/note.d.ts +6 -0
- package/dist/records/domains/note.js +1 -0
- package/dist/records/domains/panel.d.ts +1 -28
- package/dist/records/exact/asset.d.ts +18 -1
- package/dist/records/utils.d.ts +4 -1
- package/dist/records/utils.tds.js +11 -8
- package/dist/records/validate/assert-guard.js +1281 -11
- package/dist/records/validate/assert.js +1478 -201
- package/dist/records/validate/is.js +42 -4
- package/dist/records/validate/schemas.js +1092 -173
- package/dist/records/validate/stringify.js +74 -7
- package/dist/records/validate/utils.js +2 -2
- package/dist/records/validate/validate-equals.js +2145 -212
- package/dist/records/validate/validate.js +1310 -178
- package/package.json +1 -1
|
@@ -313,6 +313,216 @@ function _schemasExactRecord(name) {
|
|
|
313
313
|
]
|
|
314
314
|
};
|
|
315
315
|
}
|
|
316
|
+
case "asset.dynamicProperties?": {
|
|
317
|
+
return {
|
|
318
|
+
version: "3.1",
|
|
319
|
+
components: {
|
|
320
|
+
schemas: {
|
|
321
|
+
AssetDynamicPropertiesProvidedRecord: {
|
|
322
|
+
type: "object",
|
|
323
|
+
properties: {
|
|
324
|
+
value: {
|
|
325
|
+
type: "array",
|
|
326
|
+
items: {
|
|
327
|
+
$ref: "#/components/schemas/DynamicProperty"
|
|
328
|
+
}
|
|
329
|
+
}
|
|
330
|
+
},
|
|
331
|
+
required: []
|
|
332
|
+
},
|
|
333
|
+
DynamicProperty: {
|
|
334
|
+
type: "object",
|
|
335
|
+
properties: {
|
|
336
|
+
panel: {
|
|
337
|
+
type: "string",
|
|
338
|
+
description: "ID of the panel asset that defines this property (for panel-sourced properties)"
|
|
339
|
+
},
|
|
340
|
+
schema: {
|
|
341
|
+
type: "string",
|
|
342
|
+
description: "ID of the schema asset that defines this property (for schema-sourced properties)"
|
|
343
|
+
},
|
|
344
|
+
supports: {
|
|
345
|
+
type: "array",
|
|
346
|
+
items: {
|
|
347
|
+
type: "string"
|
|
348
|
+
},
|
|
349
|
+
description: "List of asset types this property supports"
|
|
350
|
+
},
|
|
351
|
+
path: {
|
|
352
|
+
type: "string"
|
|
353
|
+
},
|
|
354
|
+
type: {
|
|
355
|
+
oneOf: [
|
|
356
|
+
{
|
|
357
|
+
"const": "string"
|
|
358
|
+
},
|
|
359
|
+
{
|
|
360
|
+
"const": "number"
|
|
361
|
+
},
|
|
362
|
+
{
|
|
363
|
+
"const": "boolean"
|
|
364
|
+
},
|
|
365
|
+
{
|
|
366
|
+
"const": "object"
|
|
367
|
+
},
|
|
368
|
+
{
|
|
369
|
+
"const": "array"
|
|
370
|
+
},
|
|
371
|
+
{
|
|
372
|
+
"const": "asset"
|
|
373
|
+
},
|
|
374
|
+
{
|
|
375
|
+
"const": "datetime"
|
|
376
|
+
},
|
|
377
|
+
{
|
|
378
|
+
"const": "rpc"
|
|
379
|
+
}
|
|
380
|
+
],
|
|
381
|
+
description: "Specifying what type of data will be entered into the field."
|
|
382
|
+
},
|
|
383
|
+
index: {
|
|
384
|
+
type: "object",
|
|
385
|
+
properties: {
|
|
386
|
+
label: {
|
|
387
|
+
type: "string",
|
|
388
|
+
description: "A string specifying the user-friendly title of the search property. This is what users will see when creating search filters and bookmarks."
|
|
389
|
+
},
|
|
390
|
+
path: {
|
|
391
|
+
type: "string",
|
|
392
|
+
description: "A string specifying where to store the data in the search index. Note that this should be a globally unique value in the system. Typically you'd use `{domain}.{path}` and you should prefer English in camel case"
|
|
393
|
+
}
|
|
394
|
+
},
|
|
395
|
+
required: [
|
|
396
|
+
"label",
|
|
397
|
+
"path"
|
|
398
|
+
],
|
|
399
|
+
description: "An object specifying where to index the data. Adding this will effectively make the data searchable."
|
|
400
|
+
},
|
|
401
|
+
title: {
|
|
402
|
+
type: "string",
|
|
403
|
+
description: "User-friendly title of the property. This will be used as the field's label in the UI."
|
|
404
|
+
},
|
|
405
|
+
description: {
|
|
406
|
+
type: "string"
|
|
407
|
+
},
|
|
408
|
+
domain: {
|
|
409
|
+
type: "string"
|
|
410
|
+
},
|
|
411
|
+
computed: {},
|
|
412
|
+
required: {
|
|
413
|
+
type: "boolean",
|
|
414
|
+
description: "If present, indicates that the user must specify a value for the asset to be treated as valid."
|
|
415
|
+
},
|
|
416
|
+
oneOf: {
|
|
417
|
+
type: "array",
|
|
418
|
+
items: {
|
|
419
|
+
type: "object",
|
|
420
|
+
properties: {
|
|
421
|
+
"const": {},
|
|
422
|
+
title: {
|
|
423
|
+
type: "string"
|
|
424
|
+
}
|
|
425
|
+
},
|
|
426
|
+
required: []
|
|
427
|
+
}
|
|
428
|
+
},
|
|
429
|
+
anyOf: {
|
|
430
|
+
type: "array",
|
|
431
|
+
items: {
|
|
432
|
+
type: "object",
|
|
433
|
+
properties: {
|
|
434
|
+
"const": {},
|
|
435
|
+
title: {
|
|
436
|
+
type: "string"
|
|
437
|
+
}
|
|
438
|
+
},
|
|
439
|
+
required: []
|
|
440
|
+
}
|
|
441
|
+
},
|
|
442
|
+
"enum": {
|
|
443
|
+
type: "array",
|
|
444
|
+
items: {}
|
|
445
|
+
},
|
|
446
|
+
"default": {},
|
|
447
|
+
recordName: {
|
|
448
|
+
oneOf: [
|
|
449
|
+
{
|
|
450
|
+
type: "string"
|
|
451
|
+
},
|
|
452
|
+
{
|
|
453
|
+
type: "object",
|
|
454
|
+
properties: {
|
|
455
|
+
__context: {
|
|
456
|
+
type: "object",
|
|
457
|
+
properties: {
|
|
458
|
+
id: {
|
|
459
|
+
type: "string"
|
|
460
|
+
}
|
|
461
|
+
},
|
|
462
|
+
required: [
|
|
463
|
+
"id"
|
|
464
|
+
],
|
|
465
|
+
description: "TS-HACK: this property doesn't really exist on the nxtpression string,\nit is only here to make sure the generic Context won't get stripped."
|
|
466
|
+
},
|
|
467
|
+
__returnValue: {
|
|
468
|
+
type: "string",
|
|
469
|
+
description: "TS-HACK: this property doesn't really exist on the nxtpression string,\nit is only here to make sure the generic Context won't get stripped."
|
|
470
|
+
}
|
|
471
|
+
},
|
|
472
|
+
required: [
|
|
473
|
+
"__context",
|
|
474
|
+
"__returnValue"
|
|
475
|
+
]
|
|
476
|
+
}
|
|
477
|
+
]
|
|
478
|
+
},
|
|
479
|
+
setter: {
|
|
480
|
+
oneOf: [
|
|
481
|
+
{
|
|
482
|
+
type: "string"
|
|
483
|
+
},
|
|
484
|
+
{
|
|
485
|
+
type: "object",
|
|
486
|
+
properties: {
|
|
487
|
+
__context: {
|
|
488
|
+
type: "object",
|
|
489
|
+
properties: {
|
|
490
|
+
id: {
|
|
491
|
+
type: "string"
|
|
492
|
+
},
|
|
493
|
+
value: {}
|
|
494
|
+
},
|
|
495
|
+
required: [
|
|
496
|
+
"id",
|
|
497
|
+
"value"
|
|
498
|
+
],
|
|
499
|
+
description: "TS-HACK: this property doesn't really exist on the nxtpression string,\nit is only here to make sure the generic Context won't get stripped."
|
|
500
|
+
}
|
|
501
|
+
},
|
|
502
|
+
required: [
|
|
503
|
+
"__context"
|
|
504
|
+
]
|
|
505
|
+
}
|
|
506
|
+
]
|
|
507
|
+
},
|
|
508
|
+
"const": {}
|
|
509
|
+
},
|
|
510
|
+
required: [
|
|
511
|
+
"supports",
|
|
512
|
+
"path",
|
|
513
|
+
"type"
|
|
514
|
+
],
|
|
515
|
+
description: "Dynamic property definition.\nProperties come from :panel assets or :schema assets."
|
|
516
|
+
}
|
|
517
|
+
}
|
|
518
|
+
},
|
|
519
|
+
schemas: [
|
|
520
|
+
{
|
|
521
|
+
$ref: "#/components/schemas/AssetDynamicPropertiesProvidedRecord"
|
|
522
|
+
}
|
|
523
|
+
]
|
|
524
|
+
};
|
|
525
|
+
}
|
|
316
526
|
case "asset.embedding": {
|
|
317
527
|
return {
|
|
318
528
|
version: "3.1",
|
|
@@ -2218,182 +2428,562 @@ function _schemasDomainRecord(domain) {
|
|
|
2218
2428
|
{
|
|
2219
2429
|
type: "null"
|
|
2220
2430
|
},
|
|
2221
|
-
{
|
|
2222
|
-
type: "number"
|
|
2431
|
+
{
|
|
2432
|
+
type: "number"
|
|
2433
|
+
}
|
|
2434
|
+
]
|
|
2435
|
+
}
|
|
2436
|
+
},
|
|
2437
|
+
required: []
|
|
2438
|
+
}
|
|
2439
|
+
}
|
|
2440
|
+
},
|
|
2441
|
+
schemas: [
|
|
2442
|
+
{
|
|
2443
|
+
$ref: "#/components/schemas/AssetDomainDurationProvidedRecord"
|
|
2444
|
+
}
|
|
2445
|
+
]
|
|
2446
|
+
};
|
|
2447
|
+
}
|
|
2448
|
+
case ":asset.locations?": {
|
|
2449
|
+
return {
|
|
2450
|
+
version: "3.1",
|
|
2451
|
+
components: {
|
|
2452
|
+
schemas: {
|
|
2453
|
+
AssetDomainLocationsProvidedRecord: {
|
|
2454
|
+
type: "object",
|
|
2455
|
+
properties: {
|
|
2456
|
+
value: {
|
|
2457
|
+
type: "array",
|
|
2458
|
+
items: {
|
|
2459
|
+
type: "object",
|
|
2460
|
+
properties: {
|
|
2461
|
+
lat: {
|
|
2462
|
+
type: "number"
|
|
2463
|
+
},
|
|
2464
|
+
lon: {
|
|
2465
|
+
type: "number"
|
|
2466
|
+
}
|
|
2467
|
+
},
|
|
2468
|
+
required: [
|
|
2469
|
+
"lat",
|
|
2470
|
+
"lon"
|
|
2471
|
+
]
|
|
2472
|
+
}
|
|
2473
|
+
}
|
|
2474
|
+
},
|
|
2475
|
+
required: []
|
|
2476
|
+
}
|
|
2477
|
+
}
|
|
2478
|
+
},
|
|
2479
|
+
schemas: [
|
|
2480
|
+
{
|
|
2481
|
+
$ref: "#/components/schemas/AssetDomainLocationsProvidedRecord"
|
|
2482
|
+
}
|
|
2483
|
+
]
|
|
2484
|
+
};
|
|
2485
|
+
}
|
|
2486
|
+
case ":asset.controllers?": {
|
|
2487
|
+
return {
|
|
2488
|
+
version: "3.1",
|
|
2489
|
+
components: {
|
|
2490
|
+
schemas: {
|
|
2491
|
+
AssetDomainControllersProvidedRecord: {
|
|
2492
|
+
type: "object",
|
|
2493
|
+
properties: {
|
|
2494
|
+
value: {
|
|
2495
|
+
type: "array",
|
|
2496
|
+
items: {
|
|
2497
|
+
type: "string"
|
|
2498
|
+
}
|
|
2499
|
+
}
|
|
2500
|
+
},
|
|
2501
|
+
required: []
|
|
2502
|
+
}
|
|
2503
|
+
}
|
|
2504
|
+
},
|
|
2505
|
+
schemas: [
|
|
2506
|
+
{
|
|
2507
|
+
$ref: "#/components/schemas/AssetDomainControllersProvidedRecord"
|
|
2508
|
+
}
|
|
2509
|
+
]
|
|
2510
|
+
};
|
|
2511
|
+
}
|
|
2512
|
+
case ":asset.embedding?": {
|
|
2513
|
+
return {
|
|
2514
|
+
version: "3.1",
|
|
2515
|
+
components: {
|
|
2516
|
+
schemas: {
|
|
2517
|
+
AssetDomainEmbeddingProvidedRecord: {
|
|
2518
|
+
type: "object",
|
|
2519
|
+
properties: {
|
|
2520
|
+
value: {
|
|
2521
|
+
type: "array",
|
|
2522
|
+
items: {
|
|
2523
|
+
type: "string"
|
|
2524
|
+
}
|
|
2525
|
+
}
|
|
2526
|
+
},
|
|
2527
|
+
required: []
|
|
2528
|
+
}
|
|
2529
|
+
}
|
|
2530
|
+
},
|
|
2531
|
+
schemas: [
|
|
2532
|
+
{
|
|
2533
|
+
$ref: "#/components/schemas/AssetDomainEmbeddingProvidedRecord"
|
|
2534
|
+
}
|
|
2535
|
+
]
|
|
2536
|
+
};
|
|
2537
|
+
}
|
|
2538
|
+
case ":asset.media?": {
|
|
2539
|
+
return {
|
|
2540
|
+
version: "3.1",
|
|
2541
|
+
components: {
|
|
2542
|
+
schemas: {
|
|
2543
|
+
AssetDomainMediaProvidedRecord: {
|
|
2544
|
+
type: "object",
|
|
2545
|
+
properties: {},
|
|
2546
|
+
required: [],
|
|
2547
|
+
additionalProperties: {}
|
|
2548
|
+
}
|
|
2549
|
+
}
|
|
2550
|
+
},
|
|
2551
|
+
schemas: [
|
|
2552
|
+
{
|
|
2553
|
+
$ref: "#/components/schemas/AssetDomainMediaProvidedRecord"
|
|
2554
|
+
}
|
|
2555
|
+
]
|
|
2556
|
+
};
|
|
2557
|
+
}
|
|
2558
|
+
case ":asset.presence?": {
|
|
2559
|
+
return {
|
|
2560
|
+
version: "3.1",
|
|
2561
|
+
components: {
|
|
2562
|
+
schemas: {
|
|
2563
|
+
AssetDomainPresenceProvidedRecord: {
|
|
2564
|
+
type: "object",
|
|
2565
|
+
properties: {
|
|
2566
|
+
value: {
|
|
2567
|
+
type: "array",
|
|
2568
|
+
items: {
|
|
2569
|
+
type: "string"
|
|
2570
|
+
}
|
|
2571
|
+
}
|
|
2572
|
+
},
|
|
2573
|
+
required: []
|
|
2574
|
+
}
|
|
2575
|
+
}
|
|
2576
|
+
},
|
|
2577
|
+
schemas: [
|
|
2578
|
+
{
|
|
2579
|
+
$ref: "#/components/schemas/AssetDomainPresenceProvidedRecord"
|
|
2580
|
+
}
|
|
2581
|
+
]
|
|
2582
|
+
};
|
|
2583
|
+
}
|
|
2584
|
+
case ":asset.comments?": {
|
|
2585
|
+
return {
|
|
2586
|
+
version: "3.1",
|
|
2587
|
+
components: {
|
|
2588
|
+
schemas: {
|
|
2589
|
+
AssetCommentsRecord: {
|
|
2590
|
+
type: "object",
|
|
2591
|
+
properties: {
|
|
2592
|
+
value: {
|
|
2593
|
+
type: "array",
|
|
2594
|
+
items: {
|
|
2595
|
+
type: "string"
|
|
2596
|
+
},
|
|
2597
|
+
description: "IDs of comment assets associated with the asset."
|
|
2598
|
+
}
|
|
2599
|
+
},
|
|
2600
|
+
required: []
|
|
2601
|
+
}
|
|
2602
|
+
}
|
|
2603
|
+
},
|
|
2604
|
+
schemas: [
|
|
2605
|
+
{
|
|
2606
|
+
$ref: "#/components/schemas/AssetCommentsRecord"
|
|
2607
|
+
}
|
|
2608
|
+
]
|
|
2609
|
+
};
|
|
2610
|
+
}
|
|
2611
|
+
case ":asset.record?": {
|
|
2612
|
+
return {
|
|
2613
|
+
version: "3.1",
|
|
2614
|
+
components: {
|
|
2615
|
+
schemas: {
|
|
2616
|
+
AssetRecordProvidedRecord: {
|
|
2617
|
+
type: "object",
|
|
2618
|
+
properties: {
|
|
2619
|
+
id: {
|
|
2620
|
+
type: "string"
|
|
2621
|
+
},
|
|
2622
|
+
title: {
|
|
2623
|
+
type: "string"
|
|
2624
|
+
},
|
|
2625
|
+
description: {
|
|
2626
|
+
type: "string"
|
|
2627
|
+
},
|
|
2628
|
+
created: {
|
|
2629
|
+
type: "string"
|
|
2630
|
+
},
|
|
2631
|
+
createdBy: {
|
|
2632
|
+
type: "string"
|
|
2633
|
+
},
|
|
2634
|
+
createdByTitle: {
|
|
2635
|
+
type: "string"
|
|
2636
|
+
},
|
|
2637
|
+
origin: {
|
|
2638
|
+
type: "string"
|
|
2639
|
+
},
|
|
2640
|
+
modified: {
|
|
2641
|
+
type: "string"
|
|
2642
|
+
},
|
|
2643
|
+
modifiedBy: {
|
|
2644
|
+
type: "string"
|
|
2645
|
+
},
|
|
2646
|
+
modifiedByAll: {
|
|
2647
|
+
type: "array",
|
|
2648
|
+
items: {
|
|
2649
|
+
type: "string"
|
|
2650
|
+
}
|
|
2651
|
+
},
|
|
2652
|
+
modifiedByTitle: {
|
|
2653
|
+
type: "string"
|
|
2654
|
+
},
|
|
2655
|
+
duration: {
|
|
2656
|
+
type: "number"
|
|
2657
|
+
},
|
|
2658
|
+
tags: {
|
|
2659
|
+
type: "array",
|
|
2660
|
+
items: {
|
|
2661
|
+
type: "string"
|
|
2662
|
+
}
|
|
2663
|
+
},
|
|
2664
|
+
deadlines: {
|
|
2665
|
+
type: "array",
|
|
2666
|
+
items: {
|
|
2667
|
+
type: "string"
|
|
2668
|
+
}
|
|
2669
|
+
},
|
|
2670
|
+
deadlinesCount: {
|
|
2671
|
+
type: "number"
|
|
2672
|
+
},
|
|
2673
|
+
deadlines_date_range: {
|
|
2674
|
+
type: "array",
|
|
2675
|
+
items: {
|
|
2676
|
+
type: "object",
|
|
2677
|
+
properties: {
|
|
2678
|
+
gte: {
|
|
2679
|
+
type: "string"
|
|
2680
|
+
},
|
|
2681
|
+
lte: {
|
|
2682
|
+
type: "string"
|
|
2683
|
+
}
|
|
2684
|
+
},
|
|
2685
|
+
required: [
|
|
2686
|
+
"gte",
|
|
2687
|
+
"lte"
|
|
2688
|
+
]
|
|
2689
|
+
}
|
|
2690
|
+
},
|
|
2691
|
+
assignees: {
|
|
2692
|
+
type: "array",
|
|
2693
|
+
items: {
|
|
2694
|
+
type: "string"
|
|
2695
|
+
}
|
|
2696
|
+
},
|
|
2697
|
+
assigneesCount: {
|
|
2698
|
+
type: "number"
|
|
2699
|
+
},
|
|
2700
|
+
locations: {
|
|
2701
|
+
type: "array",
|
|
2702
|
+
items: {
|
|
2703
|
+
type: "object",
|
|
2704
|
+
properties: {
|
|
2705
|
+
lat: {
|
|
2706
|
+
type: "number"
|
|
2707
|
+
},
|
|
2708
|
+
lon: {
|
|
2709
|
+
type: "number"
|
|
2710
|
+
}
|
|
2711
|
+
},
|
|
2712
|
+
required: [
|
|
2713
|
+
"lat",
|
|
2714
|
+
"lon"
|
|
2715
|
+
]
|
|
2716
|
+
}
|
|
2717
|
+
},
|
|
2718
|
+
locationsCount: {
|
|
2719
|
+
type: "number"
|
|
2720
|
+
},
|
|
2721
|
+
types: {
|
|
2722
|
+
type: "array",
|
|
2723
|
+
items: {
|
|
2724
|
+
type: "string"
|
|
2725
|
+
}
|
|
2726
|
+
},
|
|
2727
|
+
primaryType: {
|
|
2728
|
+
type: "string"
|
|
2729
|
+
},
|
|
2730
|
+
rawTypes: {
|
|
2731
|
+
type: "array",
|
|
2732
|
+
items: {
|
|
2733
|
+
type: "string"
|
|
2734
|
+
}
|
|
2735
|
+
},
|
|
2736
|
+
status: {
|
|
2737
|
+
type: "object",
|
|
2738
|
+
properties: {
|
|
2739
|
+
messages: {
|
|
2740
|
+
type: "array",
|
|
2741
|
+
items: {
|
|
2742
|
+
type: "object",
|
|
2743
|
+
properties: {
|
|
2744
|
+
code: {
|
|
2745
|
+
type: "string"
|
|
2746
|
+
},
|
|
2747
|
+
level: {
|
|
2748
|
+
type: "number"
|
|
2749
|
+
}
|
|
2750
|
+
},
|
|
2751
|
+
required: []
|
|
2752
|
+
}
|
|
2753
|
+
}
|
|
2754
|
+
},
|
|
2755
|
+
required: []
|
|
2756
|
+
},
|
|
2757
|
+
published: {
|
|
2758
|
+
type: "array",
|
|
2759
|
+
items: {
|
|
2760
|
+
type: "string"
|
|
2761
|
+
}
|
|
2762
|
+
},
|
|
2763
|
+
publishedCount: {
|
|
2764
|
+
type: "number"
|
|
2765
|
+
},
|
|
2766
|
+
storage: {
|
|
2767
|
+
type: "object",
|
|
2768
|
+
properties: {
|
|
2769
|
+
files: {
|
|
2770
|
+
type: "array",
|
|
2771
|
+
items: {
|
|
2772
|
+
type: "string"
|
|
2773
|
+
}
|
|
2774
|
+
},
|
|
2775
|
+
replicas: {
|
|
2776
|
+
type: "array",
|
|
2777
|
+
items: {
|
|
2778
|
+
type: "string"
|
|
2779
|
+
}
|
|
2780
|
+
},
|
|
2781
|
+
locations: {
|
|
2782
|
+
type: "array",
|
|
2783
|
+
items: {
|
|
2784
|
+
type: "string"
|
|
2785
|
+
}
|
|
2786
|
+
},
|
|
2787
|
+
zones: {
|
|
2788
|
+
type: "array",
|
|
2789
|
+
items: {
|
|
2790
|
+
type: "string"
|
|
2791
|
+
}
|
|
2792
|
+
},
|
|
2793
|
+
uploading: {
|
|
2794
|
+
type: "boolean"
|
|
2795
|
+
},
|
|
2796
|
+
size: {
|
|
2797
|
+
type: "number"
|
|
2798
|
+
},
|
|
2799
|
+
filesCount: {
|
|
2800
|
+
type: "number"
|
|
2801
|
+
},
|
|
2802
|
+
replicasCount: {
|
|
2803
|
+
type: "number"
|
|
2804
|
+
},
|
|
2805
|
+
locationsCount: {
|
|
2806
|
+
type: "number"
|
|
2807
|
+
}
|
|
2808
|
+
},
|
|
2809
|
+
required: []
|
|
2810
|
+
},
|
|
2811
|
+
refs: {
|
|
2812
|
+
type: "number"
|
|
2813
|
+
},
|
|
2814
|
+
refsByType: {
|
|
2815
|
+
$ref: "#/components/schemas/Recordstringnumber"
|
|
2816
|
+
},
|
|
2817
|
+
recurrence_date_range: {
|
|
2818
|
+
type: "object",
|
|
2819
|
+
properties: {
|
|
2820
|
+
gte: {
|
|
2821
|
+
type: "string"
|
|
2822
|
+
},
|
|
2823
|
+
lte: {
|
|
2824
|
+
oneOf: [
|
|
2825
|
+
{
|
|
2826
|
+
type: "null"
|
|
2827
|
+
},
|
|
2828
|
+
{
|
|
2829
|
+
type: "string"
|
|
2830
|
+
}
|
|
2831
|
+
]
|
|
2832
|
+
}
|
|
2833
|
+
},
|
|
2834
|
+
required: [
|
|
2835
|
+
"gte",
|
|
2836
|
+
"lte"
|
|
2837
|
+
]
|
|
2838
|
+
},
|
|
2839
|
+
media_date_range: {
|
|
2840
|
+
type: "object",
|
|
2841
|
+
properties: {
|
|
2842
|
+
gte: {
|
|
2843
|
+
type: "string"
|
|
2844
|
+
},
|
|
2845
|
+
lte: {
|
|
2846
|
+
type: "string"
|
|
2847
|
+
}
|
|
2848
|
+
},
|
|
2849
|
+
required: [
|
|
2850
|
+
"gte",
|
|
2851
|
+
"lte"
|
|
2852
|
+
]
|
|
2853
|
+
},
|
|
2854
|
+
ingestschedule_date_range: {
|
|
2855
|
+
type: "object",
|
|
2856
|
+
properties: {
|
|
2857
|
+
gte: {
|
|
2858
|
+
type: "string"
|
|
2859
|
+
},
|
|
2860
|
+
lte: {
|
|
2861
|
+
oneOf: [
|
|
2862
|
+
{
|
|
2863
|
+
type: "null"
|
|
2864
|
+
},
|
|
2865
|
+
{
|
|
2866
|
+
type: "string"
|
|
2867
|
+
}
|
|
2868
|
+
]
|
|
2869
|
+
}
|
|
2870
|
+
},
|
|
2871
|
+
required: [
|
|
2872
|
+
"gte",
|
|
2873
|
+
"lte"
|
|
2874
|
+
]
|
|
2875
|
+
},
|
|
2876
|
+
ingestschedule: {
|
|
2877
|
+
type: "object",
|
|
2878
|
+
properties: {
|
|
2879
|
+
type: {
|
|
2880
|
+
type: "string"
|
|
2881
|
+
},
|
|
2882
|
+
sources: {
|
|
2883
|
+
type: "array",
|
|
2884
|
+
items: {
|
|
2885
|
+
type: "string"
|
|
2886
|
+
}
|
|
2887
|
+
},
|
|
2888
|
+
routes: {
|
|
2889
|
+
type: "array",
|
|
2890
|
+
items: {
|
|
2891
|
+
type: "string"
|
|
2892
|
+
}
|
|
2893
|
+
}
|
|
2894
|
+
},
|
|
2895
|
+
required: []
|
|
2896
|
+
},
|
|
2897
|
+
username: {
|
|
2898
|
+
type: "string"
|
|
2899
|
+
},
|
|
2900
|
+
user: {
|
|
2901
|
+
type: "string"
|
|
2902
|
+
},
|
|
2903
|
+
"note.text": {
|
|
2904
|
+
type: "string"
|
|
2905
|
+
},
|
|
2906
|
+
subtitles: {
|
|
2907
|
+
type: "string"
|
|
2908
|
+
},
|
|
2909
|
+
graphics: {
|
|
2910
|
+
type: "string"
|
|
2911
|
+
},
|
|
2912
|
+
story: {
|
|
2913
|
+
type: "object",
|
|
2914
|
+
properties: {
|
|
2915
|
+
content: {
|
|
2916
|
+
type: "string"
|
|
2917
|
+
},
|
|
2918
|
+
graphics: {
|
|
2919
|
+
type: "array",
|
|
2920
|
+
items: {
|
|
2921
|
+
type: "string"
|
|
2922
|
+
}
|
|
2223
2923
|
}
|
|
2224
|
-
|
|
2225
|
-
|
|
2226
|
-
|
|
2227
|
-
|
|
2228
|
-
|
|
2229
|
-
|
|
2230
|
-
|
|
2231
|
-
|
|
2232
|
-
|
|
2233
|
-
|
|
2234
|
-
|
|
2235
|
-
|
|
2236
|
-
|
|
2237
|
-
|
|
2238
|
-
|
|
2239
|
-
|
|
2240
|
-
|
|
2241
|
-
|
|
2242
|
-
|
|
2243
|
-
|
|
2244
|
-
|
|
2245
|
-
|
|
2246
|
-
|
|
2924
|
+
},
|
|
2925
|
+
required: []
|
|
2926
|
+
},
|
|
2927
|
+
storyboard: {
|
|
2928
|
+
type: "object",
|
|
2929
|
+
properties: {
|
|
2930
|
+
content: {
|
|
2931
|
+
type: "array",
|
|
2932
|
+
items: {}
|
|
2933
|
+
}
|
|
2934
|
+
},
|
|
2935
|
+
required: []
|
|
2936
|
+
},
|
|
2937
|
+
media: {
|
|
2938
|
+
type: "object",
|
|
2939
|
+
properties: {
|
|
2940
|
+
audio: {},
|
|
2941
|
+
video: {},
|
|
2942
|
+
timecode: {},
|
|
2943
|
+
language: {},
|
|
2944
|
+
transcribe: {}
|
|
2945
|
+
},
|
|
2946
|
+
required: [],
|
|
2947
|
+
description: "These fields are populated from the provided `{id}:asset.media?` record as\nconfigured in the `asset.media` record. Due to the dynamic nature of that record,\nit's hard to type these fields more specifically. For now we only list a few\n(probably) expected fields."
|
|
2948
|
+
},
|
|
2949
|
+
embedding: {
|
|
2247
2950
|
type: "array",
|
|
2248
2951
|
items: {
|
|
2249
2952
|
type: "object",
|
|
2250
2953
|
properties: {
|
|
2251
|
-
|
|
2252
|
-
type: "
|
|
2253
|
-
|
|
2254
|
-
|
|
2255
|
-
|
|
2954
|
+
vector: {
|
|
2955
|
+
type: "array",
|
|
2956
|
+
items: {
|
|
2957
|
+
type: "number"
|
|
2958
|
+
}
|
|
2256
2959
|
}
|
|
2257
2960
|
},
|
|
2258
2961
|
required: [
|
|
2259
|
-
"
|
|
2260
|
-
"lon"
|
|
2962
|
+
"vector"
|
|
2261
2963
|
]
|
|
2262
2964
|
}
|
|
2263
2965
|
}
|
|
2264
2966
|
},
|
|
2265
|
-
required: [
|
|
2266
|
-
|
|
2267
|
-
|
|
2268
|
-
|
|
2269
|
-
|
|
2270
|
-
|
|
2271
|
-
|
|
2272
|
-
}
|
|
2273
|
-
]
|
|
2274
|
-
};
|
|
2275
|
-
}
|
|
2276
|
-
case ":asset.controllers?": {
|
|
2277
|
-
return {
|
|
2278
|
-
version: "3.1",
|
|
2279
|
-
components: {
|
|
2280
|
-
schemas: {
|
|
2281
|
-
AssetDomainControllersProvidedRecord: {
|
|
2282
|
-
type: "object",
|
|
2283
|
-
properties: {
|
|
2284
|
-
value: {
|
|
2285
|
-
type: "array",
|
|
2286
|
-
items: {
|
|
2287
|
-
type: "string"
|
|
2288
|
-
}
|
|
2289
|
-
}
|
|
2290
|
-
},
|
|
2291
|
-
required: []
|
|
2292
|
-
}
|
|
2293
|
-
}
|
|
2294
|
-
},
|
|
2295
|
-
schemas: [
|
|
2296
|
-
{
|
|
2297
|
-
$ref: "#/components/schemas/AssetDomainControllersProvidedRecord"
|
|
2298
|
-
}
|
|
2299
|
-
]
|
|
2300
|
-
};
|
|
2301
|
-
}
|
|
2302
|
-
case ":asset.embedding?": {
|
|
2303
|
-
return {
|
|
2304
|
-
version: "3.1",
|
|
2305
|
-
components: {
|
|
2306
|
-
schemas: {
|
|
2307
|
-
AssetDomainEmbeddingProvidedRecord: {
|
|
2308
|
-
type: "object",
|
|
2309
|
-
properties: {
|
|
2310
|
-
value: {
|
|
2311
|
-
type: "array",
|
|
2312
|
-
items: {
|
|
2313
|
-
type: "string"
|
|
2314
|
-
}
|
|
2315
|
-
}
|
|
2316
|
-
},
|
|
2317
|
-
required: []
|
|
2318
|
-
}
|
|
2319
|
-
}
|
|
2320
|
-
},
|
|
2321
|
-
schemas: [
|
|
2322
|
-
{
|
|
2323
|
-
$ref: "#/components/schemas/AssetDomainEmbeddingProvidedRecord"
|
|
2324
|
-
}
|
|
2325
|
-
]
|
|
2326
|
-
};
|
|
2327
|
-
}
|
|
2328
|
-
case ":asset.media?": {
|
|
2329
|
-
return {
|
|
2330
|
-
version: "3.1",
|
|
2331
|
-
components: {
|
|
2332
|
-
schemas: {
|
|
2333
|
-
AssetDomainMediaProvidedRecord: {
|
|
2967
|
+
required: [
|
|
2968
|
+
"id"
|
|
2969
|
+
],
|
|
2970
|
+
description: "Elasticsearch indexed record for an asset.\nExtends core fields with dynamic properties from panels and schemas.",
|
|
2971
|
+
additionalProperties: {}
|
|
2972
|
+
},
|
|
2973
|
+
Recordstringnumber: {
|
|
2334
2974
|
type: "object",
|
|
2335
2975
|
properties: {},
|
|
2336
2976
|
required: [],
|
|
2337
|
-
|
|
2338
|
-
|
|
2339
|
-
|
|
2340
|
-
|
|
2341
|
-
schemas: [
|
|
2342
|
-
{
|
|
2343
|
-
$ref: "#/components/schemas/AssetDomainMediaProvidedRecord"
|
|
2344
|
-
}
|
|
2345
|
-
]
|
|
2346
|
-
};
|
|
2347
|
-
}
|
|
2348
|
-
case ":asset.presence?": {
|
|
2349
|
-
return {
|
|
2350
|
-
version: "3.1",
|
|
2351
|
-
components: {
|
|
2352
|
-
schemas: {
|
|
2353
|
-
AssetDomainPresenceProvidedRecord: {
|
|
2354
|
-
type: "object",
|
|
2355
|
-
properties: {
|
|
2356
|
-
value: {
|
|
2357
|
-
type: "array",
|
|
2358
|
-
items: {
|
|
2359
|
-
type: "string"
|
|
2360
|
-
}
|
|
2361
|
-
}
|
|
2362
|
-
},
|
|
2363
|
-
required: []
|
|
2364
|
-
}
|
|
2365
|
-
}
|
|
2366
|
-
},
|
|
2367
|
-
schemas: [
|
|
2368
|
-
{
|
|
2369
|
-
$ref: "#/components/schemas/AssetDomainPresenceProvidedRecord"
|
|
2370
|
-
}
|
|
2371
|
-
]
|
|
2372
|
-
};
|
|
2373
|
-
}
|
|
2374
|
-
case ":asset.comments?": {
|
|
2375
|
-
return {
|
|
2376
|
-
version: "3.1",
|
|
2377
|
-
components: {
|
|
2378
|
-
schemas: {
|
|
2379
|
-
AssetCommentsRecord: {
|
|
2380
|
-
type: "object",
|
|
2381
|
-
properties: {
|
|
2382
|
-
value: {
|
|
2383
|
-
type: "array",
|
|
2384
|
-
items: {
|
|
2385
|
-
type: "string"
|
|
2386
|
-
},
|
|
2387
|
-
description: "IDs of comment assets associated with the asset."
|
|
2388
|
-
}
|
|
2389
|
-
},
|
|
2390
|
-
required: []
|
|
2977
|
+
description: "Construct a type with a set of properties K of type T",
|
|
2978
|
+
additionalProperties: {
|
|
2979
|
+
type: "number"
|
|
2980
|
+
}
|
|
2391
2981
|
}
|
|
2392
2982
|
}
|
|
2393
2983
|
},
|
|
2394
2984
|
schemas: [
|
|
2395
2985
|
{
|
|
2396
|
-
$ref: "#/components/schemas/
|
|
2986
|
+
$ref: "#/components/schemas/AssetRecordProvidedRecord"
|
|
2397
2987
|
}
|
|
2398
2988
|
]
|
|
2399
2989
|
};
|
|
@@ -5690,25 +6280,89 @@ function _schemasDomainRecord(domain) {
|
|
|
5690
6280
|
DesignViewRowstringstringunknown: {
|
|
5691
6281
|
type: "object",
|
|
5692
6282
|
properties: {
|
|
5693
|
-
id: {
|
|
6283
|
+
id: {
|
|
6284
|
+
type: "string"
|
|
6285
|
+
},
|
|
6286
|
+
key: {
|
|
6287
|
+
type: "string"
|
|
6288
|
+
},
|
|
6289
|
+
value: {}
|
|
6290
|
+
},
|
|
6291
|
+
required: [
|
|
6292
|
+
"id",
|
|
6293
|
+
"key",
|
|
6294
|
+
"value"
|
|
6295
|
+
]
|
|
6296
|
+
}
|
|
6297
|
+
}
|
|
6298
|
+
},
|
|
6299
|
+
schemas: [
|
|
6300
|
+
{
|
|
6301
|
+
$ref: "#/components/schemas/DesignDomainRecordstringstringunknown"
|
|
6302
|
+
}
|
|
6303
|
+
]
|
|
6304
|
+
};
|
|
6305
|
+
}
|
|
6306
|
+
case ":device": {
|
|
6307
|
+
return {
|
|
6308
|
+
version: "3.1",
|
|
6309
|
+
components: {
|
|
6310
|
+
schemas: {
|
|
6311
|
+
DeviceDomainRecord: {
|
|
6312
|
+
type: "object",
|
|
6313
|
+
properties: {
|
|
6314
|
+
type: {
|
|
6315
|
+
"const": "display"
|
|
6316
|
+
},
|
|
6317
|
+
display: {
|
|
6318
|
+
type: "object",
|
|
6319
|
+
properties: {
|
|
6320
|
+
activeAsset: {
|
|
6321
|
+
type: "string"
|
|
6322
|
+
},
|
|
6323
|
+
editor: {
|
|
6324
|
+
type: "string"
|
|
6325
|
+
}
|
|
6326
|
+
},
|
|
6327
|
+
required: []
|
|
6328
|
+
}
|
|
6329
|
+
},
|
|
6330
|
+
required: []
|
|
6331
|
+
}
|
|
6332
|
+
}
|
|
6333
|
+
},
|
|
6334
|
+
schemas: [
|
|
6335
|
+
{
|
|
6336
|
+
$ref: "#/components/schemas/DeviceDomainRecord"
|
|
6337
|
+
}
|
|
6338
|
+
]
|
|
6339
|
+
};
|
|
6340
|
+
}
|
|
6341
|
+
case ":device.status?": {
|
|
6342
|
+
return {
|
|
6343
|
+
version: "3.1",
|
|
6344
|
+
components: {
|
|
6345
|
+
schemas: {
|
|
6346
|
+
DeviceDomainStatusRecord: {
|
|
6347
|
+
type: "object",
|
|
6348
|
+
properties: {
|
|
6349
|
+
since: {
|
|
5694
6350
|
type: "string"
|
|
5695
6351
|
},
|
|
5696
|
-
|
|
6352
|
+
heartbeat: {
|
|
5697
6353
|
type: "string"
|
|
5698
6354
|
},
|
|
5699
|
-
|
|
6355
|
+
version: {
|
|
6356
|
+
type: "string"
|
|
6357
|
+
}
|
|
5700
6358
|
},
|
|
5701
|
-
required: [
|
|
5702
|
-
"id",
|
|
5703
|
-
"key",
|
|
5704
|
-
"value"
|
|
5705
|
-
]
|
|
6359
|
+
required: []
|
|
5706
6360
|
}
|
|
5707
6361
|
}
|
|
5708
6362
|
},
|
|
5709
6363
|
schemas: [
|
|
5710
6364
|
{
|
|
5711
|
-
$ref: "#/components/schemas/
|
|
6365
|
+
$ref: "#/components/schemas/DeviceDomainStatusRecord"
|
|
5712
6366
|
}
|
|
5713
6367
|
]
|
|
5714
6368
|
};
|
|
@@ -6945,6 +7599,204 @@ function _schemasDomainRecord(domain) {
|
|
|
6945
7599
|
]
|
|
6946
7600
|
};
|
|
6947
7601
|
}
|
|
7602
|
+
case ":ingestschedule": {
|
|
7603
|
+
return {
|
|
7604
|
+
version: "3.1",
|
|
7605
|
+
components: {
|
|
7606
|
+
schemas: {
|
|
7607
|
+
IngestScheduleDomainRecord: {
|
|
7608
|
+
type: "object",
|
|
7609
|
+
properties: {
|
|
7610
|
+
io: {
|
|
7611
|
+
type: "object",
|
|
7612
|
+
properties: {},
|
|
7613
|
+
required: [],
|
|
7614
|
+
additionalProperties: {
|
|
7615
|
+
$ref: "#/components/schemas/IngestIo"
|
|
7616
|
+
}
|
|
7617
|
+
},
|
|
7618
|
+
sourcesHint: {
|
|
7619
|
+
type: "string"
|
|
7620
|
+
},
|
|
7621
|
+
enabled: {
|
|
7622
|
+
type: "boolean"
|
|
7623
|
+
},
|
|
7624
|
+
clipname: {
|
|
7625
|
+
oneOf: [
|
|
7626
|
+
{
|
|
7627
|
+
type: "string"
|
|
7628
|
+
},
|
|
7629
|
+
{
|
|
7630
|
+
type: "object",
|
|
7631
|
+
properties: {
|
|
7632
|
+
__context: {
|
|
7633
|
+
$ref: "#/components/schemas/object",
|
|
7634
|
+
description: "TS-HACK: this property doesn't really exist on the nxtpression string,\nit is only here to make sure the generic Context won't get stripped."
|
|
7635
|
+
},
|
|
7636
|
+
__returnValue: {
|
|
7637
|
+
type: "string",
|
|
7638
|
+
description: "TS-HACK: this property doesn't really exist on the nxtpression string,\nit is only here to make sure the generic Context won't get stripped."
|
|
7639
|
+
}
|
|
7640
|
+
},
|
|
7641
|
+
required: [
|
|
7642
|
+
"__context",
|
|
7643
|
+
"__returnValue"
|
|
7644
|
+
]
|
|
7645
|
+
}
|
|
7646
|
+
]
|
|
7647
|
+
},
|
|
7648
|
+
autoTags: {
|
|
7649
|
+
type: "array",
|
|
7650
|
+
items: {
|
|
7651
|
+
type: "string"
|
|
7652
|
+
}
|
|
7653
|
+
},
|
|
7654
|
+
storyboard: {
|
|
7655
|
+
oneOf: [
|
|
7656
|
+
{
|
|
7657
|
+
type: "null"
|
|
7658
|
+
},
|
|
7659
|
+
{
|
|
7660
|
+
type: "string"
|
|
7661
|
+
}
|
|
7662
|
+
]
|
|
7663
|
+
},
|
|
7664
|
+
pipeline: {
|
|
7665
|
+
oneOf: [
|
|
7666
|
+
{
|
|
7667
|
+
type: "null"
|
|
7668
|
+
},
|
|
7669
|
+
{
|
|
7670
|
+
type: "string"
|
|
7671
|
+
}
|
|
7672
|
+
]
|
|
7673
|
+
},
|
|
7674
|
+
type: {
|
|
7675
|
+
oneOf: [
|
|
7676
|
+
{
|
|
7677
|
+
"const": "instant"
|
|
7678
|
+
},
|
|
7679
|
+
{
|
|
7680
|
+
"const": "repeat"
|
|
7681
|
+
},
|
|
7682
|
+
{
|
|
7683
|
+
"const": "salami"
|
|
7684
|
+
}
|
|
7685
|
+
]
|
|
7686
|
+
},
|
|
7687
|
+
salami: {
|
|
7688
|
+
type: "object",
|
|
7689
|
+
properties: {
|
|
7690
|
+
gallery: {
|
|
7691
|
+
oneOf: [
|
|
7692
|
+
{
|
|
7693
|
+
type: "null"
|
|
7694
|
+
},
|
|
7695
|
+
{
|
|
7696
|
+
type: "string"
|
|
7697
|
+
}
|
|
7698
|
+
]
|
|
7699
|
+
},
|
|
7700
|
+
tag: {
|
|
7701
|
+
type: "string"
|
|
7702
|
+
}
|
|
7703
|
+
},
|
|
7704
|
+
required: []
|
|
7705
|
+
},
|
|
7706
|
+
repeat: {
|
|
7707
|
+
$ref: "#/components/schemas/IngestScheduleRepeat"
|
|
7708
|
+
}
|
|
7709
|
+
},
|
|
7710
|
+
required: []
|
|
7711
|
+
},
|
|
7712
|
+
IngestIo: {
|
|
7713
|
+
type: "object",
|
|
7714
|
+
properties: {
|
|
7715
|
+
route: {
|
|
7716
|
+
type: "string"
|
|
7717
|
+
},
|
|
7718
|
+
publish: {
|
|
7719
|
+
type: "array",
|
|
7720
|
+
items: {
|
|
7721
|
+
type: "string"
|
|
7722
|
+
},
|
|
7723
|
+
description: "List of connection IDs"
|
|
7724
|
+
}
|
|
7725
|
+
},
|
|
7726
|
+
required: []
|
|
7727
|
+
},
|
|
7728
|
+
object: {
|
|
7729
|
+
type: "object",
|
|
7730
|
+
properties: {},
|
|
7731
|
+
required: []
|
|
7732
|
+
},
|
|
7733
|
+
IngestScheduleRepeat: {
|
|
7734
|
+
type: "object",
|
|
7735
|
+
properties: {
|
|
7736
|
+
freq: {
|
|
7737
|
+
oneOf: [
|
|
7738
|
+
{
|
|
7739
|
+
"const": 0
|
|
7740
|
+
},
|
|
7741
|
+
{
|
|
7742
|
+
"const": 2
|
|
7743
|
+
},
|
|
7744
|
+
{
|
|
7745
|
+
"const": 3
|
|
7746
|
+
}
|
|
7747
|
+
]
|
|
7748
|
+
},
|
|
7749
|
+
until: {
|
|
7750
|
+
type: "string"
|
|
7751
|
+
},
|
|
7752
|
+
start: {
|
|
7753
|
+
type: "string"
|
|
7754
|
+
},
|
|
7755
|
+
tzid: {
|
|
7756
|
+
type: "string"
|
|
7757
|
+
},
|
|
7758
|
+
duration: {
|
|
7759
|
+
type: "number"
|
|
7760
|
+
},
|
|
7761
|
+
byweekday: {
|
|
7762
|
+
type: "array",
|
|
7763
|
+
items: {
|
|
7764
|
+
type: "number"
|
|
7765
|
+
}
|
|
7766
|
+
}
|
|
7767
|
+
},
|
|
7768
|
+
required: []
|
|
7769
|
+
}
|
|
7770
|
+
}
|
|
7771
|
+
},
|
|
7772
|
+
schemas: [
|
|
7773
|
+
{
|
|
7774
|
+
$ref: "#/components/schemas/IngestScheduleDomainRecord"
|
|
7775
|
+
}
|
|
7776
|
+
]
|
|
7777
|
+
};
|
|
7778
|
+
}
|
|
7779
|
+
case ":ingestschedule.stats?": {
|
|
7780
|
+
return {
|
|
7781
|
+
version: "3.1",
|
|
7782
|
+
components: {
|
|
7783
|
+
schemas: {
|
|
7784
|
+
IngestScheduleDomainStatsRecord: {
|
|
7785
|
+
type: "object",
|
|
7786
|
+
properties: {
|
|
7787
|
+
error: {}
|
|
7788
|
+
},
|
|
7789
|
+
required: []
|
|
7790
|
+
}
|
|
7791
|
+
}
|
|
7792
|
+
},
|
|
7793
|
+
schemas: [
|
|
7794
|
+
{
|
|
7795
|
+
$ref: "#/components/schemas/IngestScheduleDomainStatsRecord"
|
|
7796
|
+
}
|
|
7797
|
+
]
|
|
7798
|
+
};
|
|
7799
|
+
}
|
|
6948
7800
|
case ":media.source": {
|
|
6949
7801
|
return {
|
|
6950
7802
|
version: "3.1",
|
|
@@ -8418,6 +9270,31 @@ function _schemasDomainRecord(domain) {
|
|
|
8418
9270
|
]
|
|
8419
9271
|
};
|
|
8420
9272
|
}
|
|
9273
|
+
case ":note": {
|
|
9274
|
+
return {
|
|
9275
|
+
version: "3.1",
|
|
9276
|
+
components: {
|
|
9277
|
+
schemas: {
|
|
9278
|
+
NoteDomainRecord: {
|
|
9279
|
+
type: "object",
|
|
9280
|
+
properties: {
|
|
9281
|
+
value: {
|
|
9282
|
+
type: "string"
|
|
9283
|
+
}
|
|
9284
|
+
},
|
|
9285
|
+
required: [
|
|
9286
|
+
"value"
|
|
9287
|
+
]
|
|
9288
|
+
}
|
|
9289
|
+
}
|
|
9290
|
+
},
|
|
9291
|
+
schemas: [
|
|
9292
|
+
{
|
|
9293
|
+
$ref: "#/components/schemas/NoteDomainRecord"
|
|
9294
|
+
}
|
|
9295
|
+
]
|
|
9296
|
+
};
|
|
9297
|
+
}
|
|
8421
9298
|
case ":panel": {
|
|
8422
9299
|
return {
|
|
8423
9300
|
version: "3.1",
|
|
@@ -8453,7 +9330,7 @@ function _schemasDomainRecord(domain) {
|
|
|
8453
9330
|
properties: {},
|
|
8454
9331
|
required: [],
|
|
8455
9332
|
additionalProperties: {
|
|
8456
|
-
$ref: "#/components/schemas/
|
|
9333
|
+
$ref: "#/components/schemas/PanelPropertyunknown"
|
|
8457
9334
|
}
|
|
8458
9335
|
},
|
|
8459
9336
|
layout: {
|
|
@@ -8499,7 +9376,7 @@ function _schemasDomainRecord(domain) {
|
|
|
8499
9376
|
},
|
|
8500
9377
|
required: []
|
|
8501
9378
|
},
|
|
8502
|
-
|
|
9379
|
+
PanelPropertyunknown: {
|
|
8503
9380
|
type: "object",
|
|
8504
9381
|
properties: {
|
|
8505
9382
|
type: {
|
|
@@ -8592,6 +9469,10 @@ function _schemasDomainRecord(domain) {
|
|
|
8592
9469
|
},
|
|
8593
9470
|
required: []
|
|
8594
9471
|
}
|
|
9472
|
+
},
|
|
9473
|
+
"enum": {
|
|
9474
|
+
type: "array",
|
|
9475
|
+
items: {}
|
|
8595
9476
|
}
|
|
8596
9477
|
},
|
|
8597
9478
|
required: [
|
|
@@ -8655,6 +9536,9 @@ function _schemasDomainRecord(domain) {
|
|
|
8655
9536
|
{
|
|
8656
9537
|
"const": "default"
|
|
8657
9538
|
},
|
|
9539
|
+
{
|
|
9540
|
+
"const": "tags"
|
|
9541
|
+
},
|
|
8658
9542
|
{
|
|
8659
9543
|
"const": "assetTypes"
|
|
8660
9544
|
},
|
|
@@ -8670,9 +9554,6 @@ function _schemasDomainRecord(domain) {
|
|
|
8670
9554
|
{
|
|
8671
9555
|
"const": "textarea"
|
|
8672
9556
|
},
|
|
8673
|
-
{
|
|
8674
|
-
"const": "tags"
|
|
8675
|
-
},
|
|
8676
9557
|
{
|
|
8677
9558
|
$ref: "#/components/schemas/WidgetItem"
|
|
8678
9559
|
}
|
|
@@ -8702,6 +9583,9 @@ function _schemasDomainRecord(domain) {
|
|
|
8702
9583
|
{
|
|
8703
9584
|
"const": "default"
|
|
8704
9585
|
},
|
|
9586
|
+
{
|
|
9587
|
+
"const": "tags"
|
|
9588
|
+
},
|
|
8705
9589
|
{
|
|
8706
9590
|
"const": "assetTypes"
|
|
8707
9591
|
},
|
|
@@ -8716,9 +9600,6 @@ function _schemasDomainRecord(domain) {
|
|
|
8716
9600
|
},
|
|
8717
9601
|
{
|
|
8718
9602
|
"const": "textarea"
|
|
8719
|
-
},
|
|
8720
|
-
{
|
|
8721
|
-
"const": "tags"
|
|
8722
9603
|
}
|
|
8723
9604
|
]
|
|
8724
9605
|
}
|
|
@@ -14546,6 +15427,24 @@ function _schemasDomainRecord(domain) {
|
|
|
14546
15427
|
}
|
|
14547
15428
|
},
|
|
14548
15429
|
required: []
|
|
15430
|
+
},
|
|
15431
|
+
display: {
|
|
15432
|
+
type: "object",
|
|
15433
|
+
properties: {
|
|
15434
|
+
disableHotArea: {
|
|
15435
|
+
type: "boolean"
|
|
15436
|
+
}
|
|
15437
|
+
},
|
|
15438
|
+
required: []
|
|
15439
|
+
},
|
|
15440
|
+
bookmarks: {
|
|
15441
|
+
type: "object",
|
|
15442
|
+
properties: {
|
|
15443
|
+
refreshInterval: {
|
|
15444
|
+
type: "number"
|
|
15445
|
+
}
|
|
15446
|
+
},
|
|
15447
|
+
required: []
|
|
14549
15448
|
}
|
|
14550
15449
|
},
|
|
14551
15450
|
required: []
|
|
@@ -14580,6 +15479,16 @@ function _schemasDomainRecord(domain) {
|
|
|
14580
15479
|
},
|
|
14581
15480
|
priority: {
|
|
14582
15481
|
type: "number"
|
|
15482
|
+
},
|
|
15483
|
+
height: {
|
|
15484
|
+
oneOf: [
|
|
15485
|
+
{
|
|
15486
|
+
type: "null"
|
|
15487
|
+
},
|
|
15488
|
+
{
|
|
15489
|
+
type: "number"
|
|
15490
|
+
}
|
|
15491
|
+
]
|
|
14583
15492
|
}
|
|
14584
15493
|
},
|
|
14585
15494
|
required: []
|
|
@@ -14599,6 +15508,16 @@ function _schemasDomainRecord(domain) {
|
|
|
14599
15508
|
},
|
|
14600
15509
|
priority: {
|
|
14601
15510
|
type: "number"
|
|
15511
|
+
},
|
|
15512
|
+
height: {
|
|
15513
|
+
oneOf: [
|
|
15514
|
+
{
|
|
15515
|
+
type: "null"
|
|
15516
|
+
},
|
|
15517
|
+
{
|
|
15518
|
+
type: "number"
|
|
15519
|
+
}
|
|
15520
|
+
]
|
|
14602
15521
|
}
|
|
14603
15522
|
},
|
|
14604
15523
|
required: []
|