Mercurial > hg > piper
view json/schema/configuredoutputdescriptor.json @ 86:1f4ed70d8f1e piperurl
Switch json/schema to piper/json/schema in URLs
author | Chris Cannam |
---|---|
date | Wed, 02 Nov 2016 10:49:45 +0000 |
parents | f044f6a309e0 |
children |
line wrap: on
line source
{ "id": "http://vamp-plugins.org/piper/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/piper/json/schema/enums#/definitions/sample_type" }, "sampleRate": { "type": "number" }, "hasDuration": { "type": "boolean" } }, "required": [ "sampleType", "hasDuration" ], "additionalProperties": false }