@imferno/schema 2.0.1-beta.321624 → 2.0.1-beta.4a5fc72

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@imferno/schema",
3
- "version": "2.0.1-beta.321624",
3
+ "version": "2.0.1-beta.4a5fc72",
4
4
  "description": "JSON Schema definitions for SMPTE ST 2067 IMF types — validates imferno export output",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -272,15 +272,38 @@
272
272
  "type"
273
273
  ],
274
274
  "properties": {
275
+ "channelCount": {
276
+ "description": "Audio channel count (e.g. 2, 6, 8) — only for audio sequences",
277
+ "type": [
278
+ "integer",
279
+ "null"
280
+ ],
281
+ "format": "uint32",
282
+ "minimum": 0.0
283
+ },
275
284
  "id": {
276
285
  "type": "string"
277
286
  },
287
+ "language": {
288
+ "description": "RFC 5646 language tag extracted from the essence descriptor (e.g. \"en\", \"fr\")",
289
+ "type": [
290
+ "string",
291
+ "null"
292
+ ]
293
+ },
278
294
  "resources": {
279
295
  "type": "array",
280
296
  "items": {
281
297
  "$ref": "#/definitions/CplResource"
282
298
  }
283
299
  },
300
+ "soundfield": {
301
+ "description": "MCA soundfield label (e.g. \"5.1\", \"7.1\", \"Atmos\") — only for audio sequences",
302
+ "type": [
303
+ "string",
304
+ "null"
305
+ ]
306
+ },
284
307
  "trackId": {
285
308
  "type": "string"
286
309
  },