Mercurial > hg > piper
view json/schema/configuredoutputdescriptor.json @ 80:420e9248e7b9
README
author | Chris Cannam |
---|---|
date | Fri, 07 Oct 2016 15:55:51 +0100 |
parents | f044f6a309e0 |
children | 1f4ed70d8f1e |
line wrap: on
line source
{ "id": "http://vamp-plugins.org/json/schema/configuredoutputdescriptor#", "$schema": "http://json-schema.org/draft-04/schema#", "description": "schema for the non-static metadata fields of an output descriptor belonging to a feature extractor", "type": "object", "properties": { "unit": { "type": "string" }, "binCount": { "type": "integer" }, "binNames": { "type": "array", "items": { "type": "string" } }, "extents": { "type": "object", "properties": { "min": { "type": "number" }, "max": { "type": "number" } }, "required": [ "min", "max" ], "additionalProperties": false }, "quantizeStep": { "type": "number" }, "sampleType": { "$ref": "http://vamp-plugins.org/json/schema/enums#/definitions/sample_type" }, "sampleRate": { "type": "number" }, "hasDuration": { "type": "boolean" } }, "required": [ "sampleType", "hasDuration" ], "additionalProperties": false }