@imferno/schema 2.0.1-beta.9550ead → 2.0.1-beta.9e05da9

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.9550ead",
3
+ "version": "2.0.1-beta.9e05da9",
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,6 +272,15 @@
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
  },
@@ -288,6 +297,13 @@
288
297
  "$ref": "#/definitions/CplResource"
289
298
  }
290
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
+ },
291
307
  "trackId": {
292
308
  "type": "string"
293
309
  },