@imferno/schema 1.1.0 → 2.0.0-beta.804ad37
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/README.md +1 -1
- package/package.json +1 -1
- package/schemas/imf-report.json +457 -9
- package/schemas/packing-list.json +1 -1
- package/schemas/validation-report.json +13 -4
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @imferno/schema
|
|
2
2
|
|
|
3
|
-
JSON Schema definitions for SMPTE ST 2067 (IMF) types. Use these schemas to validate the JSON output from [`imferno`](https://www.npmjs.com/package/imferno)
|
|
3
|
+
JSON Schema definitions for SMPTE ST 2067 (IMF) types. Use these schemas to validate the JSON output from [`imferno`](https://www.npmjs.com/package/imferno), [`@imferno/wasm`](https://www.npmjs.com/package/@imferno/wasm), or [`@imferno/node`](https://www.npmjs.com/package/@imferno/node).
|
|
4
4
|
|
|
5
5
|
## Install
|
|
6
6
|
|
package/package.json
CHANGED
package/schemas/imf-report.json
CHANGED
|
@@ -18,10 +18,105 @@
|
|
|
18
18
|
"$ref": "#/definitions/PackageSummary"
|
|
19
19
|
},
|
|
20
20
|
"validation": {
|
|
21
|
-
"$ref": "#/definitions/
|
|
21
|
+
"$ref": "#/definitions/ValidationReport"
|
|
22
22
|
}
|
|
23
23
|
},
|
|
24
24
|
"definitions": {
|
|
25
|
+
"Category": {
|
|
26
|
+
"description": "Category of validation issue",
|
|
27
|
+
"oneOf": [
|
|
28
|
+
{
|
|
29
|
+
"description": "XML structure and syntax issues",
|
|
30
|
+
"type": "string",
|
|
31
|
+
"enum": [
|
|
32
|
+
"Structure"
|
|
33
|
+
]
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"description": "SMPTE schema compliance",
|
|
37
|
+
"type": "string",
|
|
38
|
+
"enum": [
|
|
39
|
+
"Schema"
|
|
40
|
+
]
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"description": "UUID and reference resolution",
|
|
44
|
+
"type": "string",
|
|
45
|
+
"enum": [
|
|
46
|
+
"Reference"
|
|
47
|
+
]
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"description": "Asset file availability and integrity",
|
|
51
|
+
"type": "string",
|
|
52
|
+
"enum": [
|
|
53
|
+
"Asset"
|
|
54
|
+
]
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"description": "Timing, frame rate, and duration issues",
|
|
58
|
+
"type": "string",
|
|
59
|
+
"enum": [
|
|
60
|
+
"Timing"
|
|
61
|
+
]
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"description": "Encoding and codec issues",
|
|
65
|
+
"type": "string",
|
|
66
|
+
"enum": [
|
|
67
|
+
"Encoding"
|
|
68
|
+
]
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"description": "Audio configuration issues",
|
|
72
|
+
"type": "string",
|
|
73
|
+
"enum": [
|
|
74
|
+
"Audio"
|
|
75
|
+
]
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"description": "Video configuration issues",
|
|
79
|
+
"type": "string",
|
|
80
|
+
"enum": [
|
|
81
|
+
"Video"
|
|
82
|
+
]
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"description": "Subtitle and caption issues",
|
|
86
|
+
"type": "string",
|
|
87
|
+
"enum": [
|
|
88
|
+
"Subtitle"
|
|
89
|
+
]
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
"description": "Metadata and labeling issues",
|
|
93
|
+
"type": "string",
|
|
94
|
+
"enum": [
|
|
95
|
+
"Metadata"
|
|
96
|
+
]
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"description": "Security and DRM issues",
|
|
100
|
+
"type": "string",
|
|
101
|
+
"enum": [
|
|
102
|
+
"Security"
|
|
103
|
+
]
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
"description": "Studio-specific requirements",
|
|
107
|
+
"type": "object",
|
|
108
|
+
"required": [
|
|
109
|
+
"StudioSpecific"
|
|
110
|
+
],
|
|
111
|
+
"properties": {
|
|
112
|
+
"StudioSpecific": {
|
|
113
|
+
"type": "string"
|
|
114
|
+
}
|
|
115
|
+
},
|
|
116
|
+
"additionalProperties": false
|
|
117
|
+
}
|
|
118
|
+
]
|
|
119
|
+
},
|
|
25
120
|
"CplMarker": {
|
|
26
121
|
"type": "object",
|
|
27
122
|
"required": [
|
|
@@ -52,6 +147,7 @@
|
|
|
52
147
|
"isSupplemental",
|
|
53
148
|
"markers",
|
|
54
149
|
"segmentCount",
|
|
150
|
+
"sequences",
|
|
55
151
|
"title",
|
|
56
152
|
"unresolvedAncestorAssetIds"
|
|
57
153
|
],
|
|
@@ -63,6 +159,13 @@
|
|
|
63
159
|
"null"
|
|
64
160
|
]
|
|
65
161
|
},
|
|
162
|
+
"editRate": {
|
|
163
|
+
"description": "CPL-level edit rate, e.g. \"24000/1001\"",
|
|
164
|
+
"type": [
|
|
165
|
+
"string",
|
|
166
|
+
"null"
|
|
167
|
+
]
|
|
168
|
+
},
|
|
66
169
|
"id": {
|
|
67
170
|
"type": "string"
|
|
68
171
|
},
|
|
@@ -82,6 +185,13 @@
|
|
|
82
185
|
"format": "uint",
|
|
83
186
|
"minimum": 0.0
|
|
84
187
|
},
|
|
188
|
+
"sequences": {
|
|
189
|
+
"description": "Virtual tracks (sequences) merged across all segments",
|
|
190
|
+
"type": "array",
|
|
191
|
+
"items": {
|
|
192
|
+
"$ref": "#/definitions/CplSequence"
|
|
193
|
+
}
|
|
194
|
+
},
|
|
85
195
|
"timecodeStart": {
|
|
86
196
|
"description": "Timecode start address, e.g. \"01:00:00:00\"",
|
|
87
197
|
"type": [
|
|
@@ -101,6 +211,160 @@
|
|
|
101
211
|
}
|
|
102
212
|
}
|
|
103
213
|
},
|
|
214
|
+
"CplResource": {
|
|
215
|
+
"type": "object",
|
|
216
|
+
"required": [
|
|
217
|
+
"id",
|
|
218
|
+
"intrinsicDuration"
|
|
219
|
+
],
|
|
220
|
+
"properties": {
|
|
221
|
+
"editRate": {
|
|
222
|
+
"description": "Edit rate as \"N/D\" string, e.g. \"24000/1001\"",
|
|
223
|
+
"type": [
|
|
224
|
+
"string",
|
|
225
|
+
"null"
|
|
226
|
+
]
|
|
227
|
+
},
|
|
228
|
+
"entryPoint": {
|
|
229
|
+
"type": [
|
|
230
|
+
"integer",
|
|
231
|
+
"null"
|
|
232
|
+
],
|
|
233
|
+
"format": "uint64",
|
|
234
|
+
"minimum": 0.0
|
|
235
|
+
},
|
|
236
|
+
"id": {
|
|
237
|
+
"type": "string"
|
|
238
|
+
},
|
|
239
|
+
"intrinsicDuration": {
|
|
240
|
+
"type": "integer",
|
|
241
|
+
"format": "uint64",
|
|
242
|
+
"minimum": 0.0
|
|
243
|
+
},
|
|
244
|
+
"sourceDuration": {
|
|
245
|
+
"type": [
|
|
246
|
+
"integer",
|
|
247
|
+
"null"
|
|
248
|
+
],
|
|
249
|
+
"format": "uint64",
|
|
250
|
+
"minimum": 0.0
|
|
251
|
+
},
|
|
252
|
+
"sourceEncoding": {
|
|
253
|
+
"type": [
|
|
254
|
+
"string",
|
|
255
|
+
"null"
|
|
256
|
+
]
|
|
257
|
+
},
|
|
258
|
+
"trackFileId": {
|
|
259
|
+
"type": [
|
|
260
|
+
"string",
|
|
261
|
+
"null"
|
|
262
|
+
]
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
},
|
|
266
|
+
"CplSequence": {
|
|
267
|
+
"type": "object",
|
|
268
|
+
"required": [
|
|
269
|
+
"id",
|
|
270
|
+
"resources",
|
|
271
|
+
"trackId",
|
|
272
|
+
"type"
|
|
273
|
+
],
|
|
274
|
+
"properties": {
|
|
275
|
+
"id": {
|
|
276
|
+
"type": "string"
|
|
277
|
+
},
|
|
278
|
+
"resources": {
|
|
279
|
+
"type": "array",
|
|
280
|
+
"items": {
|
|
281
|
+
"$ref": "#/definitions/CplResource"
|
|
282
|
+
}
|
|
283
|
+
},
|
|
284
|
+
"trackId": {
|
|
285
|
+
"type": "string"
|
|
286
|
+
},
|
|
287
|
+
"type": {
|
|
288
|
+
"description": "Sequence type: \"MainImage\", \"MainAudio\", \"Subtitles\", etc.",
|
|
289
|
+
"type": "string"
|
|
290
|
+
}
|
|
291
|
+
}
|
|
292
|
+
},
|
|
293
|
+
"ImfUuid": {
|
|
294
|
+
"description": "A SMPTE IMF UUID, serialised as a bare UUID string (e.g. \"0eb3d1b9-b77b-4d3f-bbe5-7c69b15dca85\")",
|
|
295
|
+
"type": "string",
|
|
296
|
+
"format": "uuid"
|
|
297
|
+
},
|
|
298
|
+
"Location": {
|
|
299
|
+
"description": "Location where the issue was found",
|
|
300
|
+
"type": "object",
|
|
301
|
+
"properties": {
|
|
302
|
+
"cpl_id": {
|
|
303
|
+
"description": "CPL UUID if applicable",
|
|
304
|
+
"anyOf": [
|
|
305
|
+
{
|
|
306
|
+
"$ref": "#/definitions/ImfUuid"
|
|
307
|
+
},
|
|
308
|
+
{
|
|
309
|
+
"type": "null"
|
|
310
|
+
}
|
|
311
|
+
]
|
|
312
|
+
},
|
|
313
|
+
"file": {
|
|
314
|
+
"description": "File path if applicable",
|
|
315
|
+
"type": [
|
|
316
|
+
"string",
|
|
317
|
+
"null"
|
|
318
|
+
]
|
|
319
|
+
},
|
|
320
|
+
"line": {
|
|
321
|
+
"description": "Line number in XML file",
|
|
322
|
+
"type": [
|
|
323
|
+
"integer",
|
|
324
|
+
"null"
|
|
325
|
+
],
|
|
326
|
+
"format": "uint",
|
|
327
|
+
"minimum": 0.0
|
|
328
|
+
},
|
|
329
|
+
"path": {
|
|
330
|
+
"description": "XPath or field path",
|
|
331
|
+
"type": [
|
|
332
|
+
"string",
|
|
333
|
+
"null"
|
|
334
|
+
]
|
|
335
|
+
},
|
|
336
|
+
"resource_id": {
|
|
337
|
+
"description": "Resource UUID if applicable",
|
|
338
|
+
"type": [
|
|
339
|
+
"string",
|
|
340
|
+
"null"
|
|
341
|
+
]
|
|
342
|
+
},
|
|
343
|
+
"segment": {
|
|
344
|
+
"description": "Segment index (0-based)",
|
|
345
|
+
"type": [
|
|
346
|
+
"integer",
|
|
347
|
+
"null"
|
|
348
|
+
],
|
|
349
|
+
"format": "uint",
|
|
350
|
+
"minimum": 0.0
|
|
351
|
+
},
|
|
352
|
+
"sequence_id": {
|
|
353
|
+
"description": "Sequence UUID if applicable",
|
|
354
|
+
"type": [
|
|
355
|
+
"string",
|
|
356
|
+
"null"
|
|
357
|
+
]
|
|
358
|
+
},
|
|
359
|
+
"timecode": {
|
|
360
|
+
"description": "Timecode if applicable",
|
|
361
|
+
"type": [
|
|
362
|
+
"string",
|
|
363
|
+
"null"
|
|
364
|
+
]
|
|
365
|
+
}
|
|
366
|
+
}
|
|
367
|
+
},
|
|
104
368
|
"PackageSummary": {
|
|
105
369
|
"type": "object",
|
|
106
370
|
"required": [
|
|
@@ -109,6 +373,9 @@
|
|
|
109
373
|
"cplCount",
|
|
110
374
|
"issueDate",
|
|
111
375
|
"pklCount",
|
|
376
|
+
"scmCount",
|
|
377
|
+
"sidecarCount",
|
|
378
|
+
"unreferencedAssets",
|
|
112
379
|
"volumeIndex"
|
|
113
380
|
],
|
|
114
381
|
"properties": {
|
|
@@ -145,6 +412,22 @@
|
|
|
145
412
|
"format": "uint",
|
|
146
413
|
"minimum": 0.0
|
|
147
414
|
},
|
|
415
|
+
"scmCount": {
|
|
416
|
+
"type": "integer",
|
|
417
|
+
"format": "uint",
|
|
418
|
+
"minimum": 0.0
|
|
419
|
+
},
|
|
420
|
+
"sidecarCount": {
|
|
421
|
+
"type": "integer",
|
|
422
|
+
"format": "uint",
|
|
423
|
+
"minimum": 0.0
|
|
424
|
+
},
|
|
425
|
+
"unreferencedAssets": {
|
|
426
|
+
"type": "array",
|
|
427
|
+
"items": {
|
|
428
|
+
"$ref": "#/definitions/UnreferencedAsset"
|
|
429
|
+
}
|
|
430
|
+
},
|
|
148
431
|
"volumeIndex": {
|
|
149
432
|
"type": "integer",
|
|
150
433
|
"format": "uint32",
|
|
@@ -152,36 +435,201 @@
|
|
|
152
435
|
}
|
|
153
436
|
}
|
|
154
437
|
},
|
|
155
|
-
"
|
|
438
|
+
"Severity": {
|
|
439
|
+
"description": "Severity level of validation issues",
|
|
440
|
+
"oneOf": [
|
|
441
|
+
{
|
|
442
|
+
"description": "Informational - Best practice suggestions",
|
|
443
|
+
"type": "string",
|
|
444
|
+
"enum": [
|
|
445
|
+
"Info"
|
|
446
|
+
]
|
|
447
|
+
},
|
|
448
|
+
{
|
|
449
|
+
"description": "Warning - Should fix but not critical",
|
|
450
|
+
"type": "string",
|
|
451
|
+
"enum": [
|
|
452
|
+
"Warning"
|
|
453
|
+
]
|
|
454
|
+
},
|
|
455
|
+
{
|
|
456
|
+
"description": "Error - Must fix for compliance",
|
|
457
|
+
"type": "string",
|
|
458
|
+
"enum": [
|
|
459
|
+
"Error"
|
|
460
|
+
]
|
|
461
|
+
},
|
|
462
|
+
{
|
|
463
|
+
"description": "Critical - Prevents package from being usable",
|
|
464
|
+
"type": "string",
|
|
465
|
+
"enum": [
|
|
466
|
+
"Critical"
|
|
467
|
+
]
|
|
468
|
+
}
|
|
469
|
+
]
|
|
470
|
+
},
|
|
471
|
+
"UnreferencedAsset": {
|
|
156
472
|
"type": "object",
|
|
157
473
|
"required": [
|
|
474
|
+
"id",
|
|
475
|
+
"path"
|
|
476
|
+
],
|
|
477
|
+
"properties": {
|
|
478
|
+
"id": {
|
|
479
|
+
"type": "string"
|
|
480
|
+
},
|
|
481
|
+
"path": {
|
|
482
|
+
"type": "string"
|
|
483
|
+
}
|
|
484
|
+
}
|
|
485
|
+
},
|
|
486
|
+
"ValidationIssue": {
|
|
487
|
+
"description": "A single validation issue",
|
|
488
|
+
"type": "object",
|
|
489
|
+
"required": [
|
|
490
|
+
"category",
|
|
491
|
+
"code",
|
|
492
|
+
"context",
|
|
493
|
+
"location",
|
|
158
494
|
"message",
|
|
159
495
|
"severity"
|
|
160
496
|
],
|
|
161
497
|
"properties": {
|
|
498
|
+
"category": {
|
|
499
|
+
"description": "Category of issue",
|
|
500
|
+
"allOf": [
|
|
501
|
+
{
|
|
502
|
+
"$ref": "#/definitions/Category"
|
|
503
|
+
}
|
|
504
|
+
]
|
|
505
|
+
},
|
|
506
|
+
"code": {
|
|
507
|
+
"description": "Error code (e.g., \"ST2067-2:2020:8.3/FileNotFound\")",
|
|
508
|
+
"type": "string"
|
|
509
|
+
},
|
|
510
|
+
"context": {
|
|
511
|
+
"description": "Additional context",
|
|
512
|
+
"type": "object",
|
|
513
|
+
"additionalProperties": {
|
|
514
|
+
"type": "string"
|
|
515
|
+
}
|
|
516
|
+
},
|
|
517
|
+
"location": {
|
|
518
|
+
"description": "Location where issue was found",
|
|
519
|
+
"allOf": [
|
|
520
|
+
{
|
|
521
|
+
"$ref": "#/definitions/Location"
|
|
522
|
+
}
|
|
523
|
+
]
|
|
524
|
+
},
|
|
162
525
|
"message": {
|
|
526
|
+
"description": "Human-readable message",
|
|
163
527
|
"type": "string"
|
|
164
528
|
},
|
|
165
529
|
"severity": {
|
|
166
|
-
"
|
|
530
|
+
"description": "Severity level",
|
|
531
|
+
"allOf": [
|
|
532
|
+
{
|
|
533
|
+
"$ref": "#/definitions/Severity"
|
|
534
|
+
}
|
|
535
|
+
]
|
|
536
|
+
},
|
|
537
|
+
"suggestion": {
|
|
538
|
+
"description": "Suggestion for how to fix",
|
|
539
|
+
"type": [
|
|
540
|
+
"string",
|
|
541
|
+
"null"
|
|
542
|
+
]
|
|
167
543
|
}
|
|
168
544
|
}
|
|
169
545
|
},
|
|
170
|
-
"
|
|
546
|
+
"ValidationProfile": {
|
|
547
|
+
"description": "Validation profile determining strictness",
|
|
548
|
+
"oneOf": [
|
|
549
|
+
{
|
|
550
|
+
"description": "Minimal validation - just check if playable",
|
|
551
|
+
"type": "string",
|
|
552
|
+
"enum": [
|
|
553
|
+
"Minimal"
|
|
554
|
+
]
|
|
555
|
+
},
|
|
556
|
+
{
|
|
557
|
+
"description": "Standard SMPTE compliance",
|
|
558
|
+
"type": "string",
|
|
559
|
+
"enum": [
|
|
560
|
+
"SMPTE"
|
|
561
|
+
]
|
|
562
|
+
},
|
|
563
|
+
{
|
|
564
|
+
"description": "Custom profile with specific rules",
|
|
565
|
+
"type": "string",
|
|
566
|
+
"enum": [
|
|
567
|
+
"Custom"
|
|
568
|
+
]
|
|
569
|
+
}
|
|
570
|
+
]
|
|
571
|
+
},
|
|
572
|
+
"ValidationReport": {
|
|
573
|
+
"description": "Comprehensive validation report",
|
|
171
574
|
"type": "object",
|
|
172
575
|
"required": [
|
|
173
|
-
"
|
|
174
|
-
"
|
|
576
|
+
"critical",
|
|
577
|
+
"errors",
|
|
578
|
+
"info",
|
|
579
|
+
"is_compliant",
|
|
580
|
+
"is_playable",
|
|
581
|
+
"profile",
|
|
582
|
+
"timestamp",
|
|
583
|
+
"warnings"
|
|
175
584
|
],
|
|
176
585
|
"properties": {
|
|
177
|
-
"
|
|
586
|
+
"critical": {
|
|
587
|
+
"description": "Critical issues that prevent usage",
|
|
178
588
|
"type": "array",
|
|
179
589
|
"items": {
|
|
180
|
-
"$ref": "#/definitions/
|
|
590
|
+
"$ref": "#/definitions/ValidationIssue"
|
|
181
591
|
}
|
|
182
592
|
},
|
|
183
|
-
"
|
|
593
|
+
"errors": {
|
|
594
|
+
"description": "Errors that must be fixed for compliance",
|
|
595
|
+
"type": "array",
|
|
596
|
+
"items": {
|
|
597
|
+
"$ref": "#/definitions/ValidationIssue"
|
|
598
|
+
}
|
|
599
|
+
},
|
|
600
|
+
"info": {
|
|
601
|
+
"description": "Informational issues",
|
|
602
|
+
"type": "array",
|
|
603
|
+
"items": {
|
|
604
|
+
"$ref": "#/definitions/ValidationIssue"
|
|
605
|
+
}
|
|
606
|
+
},
|
|
607
|
+
"is_compliant": {
|
|
608
|
+
"description": "Whether the package is compliant with base SMPTE standards",
|
|
609
|
+
"type": "boolean"
|
|
610
|
+
},
|
|
611
|
+
"is_playable": {
|
|
612
|
+
"description": "Whether the package is playable despite issues",
|
|
184
613
|
"type": "boolean"
|
|
614
|
+
},
|
|
615
|
+
"profile": {
|
|
616
|
+
"description": "Validation profile used",
|
|
617
|
+
"allOf": [
|
|
618
|
+
{
|
|
619
|
+
"$ref": "#/definitions/ValidationProfile"
|
|
620
|
+
}
|
|
621
|
+
]
|
|
622
|
+
},
|
|
623
|
+
"timestamp": {
|
|
624
|
+
"description": "Timestamp of validation",
|
|
625
|
+
"type": "string"
|
|
626
|
+
},
|
|
627
|
+
"warnings": {
|
|
628
|
+
"description": "Warnings that should be addressed",
|
|
629
|
+
"type": "array",
|
|
630
|
+
"items": {
|
|
631
|
+
"$ref": "#/definitions/ValidationIssue"
|
|
632
|
+
}
|
|
185
633
|
}
|
|
186
634
|
}
|
|
187
635
|
}
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
},
|
|
52
52
|
"definitions": {
|
|
53
53
|
"AssetHash": {
|
|
54
|
-
"description": "A decoded asset hash from a Packing List, per SMPTE ST 2067-2 §9.\n\nPKL files carry base64-encoded SHA-1 digests for each tracked asset.",
|
|
54
|
+
"description": "A decoded asset hash from a Packing List, per SMPTE ST 2067-2 §9.\n\nPKL files carry base64-encoded SHA-1 or SHA-256 digests for each tracked asset.",
|
|
55
55
|
"type": "object",
|
|
56
56
|
"required": [
|
|
57
57
|
"algorithm",
|
|
@@ -159,15 +159,24 @@
|
|
|
159
159
|
}
|
|
160
160
|
]
|
|
161
161
|
},
|
|
162
|
+
"ImfUuid": {
|
|
163
|
+
"description": "A SMPTE IMF UUID, serialised as a bare UUID string (e.g. \"0eb3d1b9-b77b-4d3f-bbe5-7c69b15dca85\")",
|
|
164
|
+
"type": "string",
|
|
165
|
+
"format": "uuid"
|
|
166
|
+
},
|
|
162
167
|
"Location": {
|
|
163
168
|
"description": "Location where the issue was found",
|
|
164
169
|
"type": "object",
|
|
165
170
|
"properties": {
|
|
166
171
|
"cpl_id": {
|
|
167
172
|
"description": "CPL UUID if applicable",
|
|
168
|
-
"
|
|
169
|
-
|
|
170
|
-
|
|
173
|
+
"anyOf": [
|
|
174
|
+
{
|
|
175
|
+
"$ref": "#/definitions/ImfUuid"
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"type": "null"
|
|
179
|
+
}
|
|
171
180
|
]
|
|
172
181
|
},
|
|
173
182
|
"file": {
|
|
@@ -279,7 +288,7 @@
|
|
|
279
288
|
]
|
|
280
289
|
},
|
|
281
290
|
"code": {
|
|
282
|
-
"description": "Error code (e.g., \"
|
|
291
|
+
"description": "Error code (e.g., \"ST2067-2:2020:8.3/FileNotFound\")",
|
|
283
292
|
"type": "string"
|
|
284
293
|
},
|
|
285
294
|
"context": {
|