c@171: { dev@202: "id": "http://vamp-plugins.org/piper/json/schema/configuration#", c@171: "$schema": "http://json-schema.org/draft-04/schema#", c@171: "description": "schema for a bundle of configuration data capturing the setup of a feature extractor", c@171: "type": "object", c@171: "properties": { c@171: "parameterValues": { c@171: "type": "object", c@171: "patternProperties": { c@171: "^[a-zA-Z0-9_-]+$": { c@171: "type": "number" c@171: } c@171: }, c@171: "additionalProperties": false c@171: }, c@171: "currentProgram": { c@171: "type": "string" c@171: }, c@171: "channelCount": { c@171: "type": "integer" c@171: }, cannam@191: "framing": { cannam@191: "$ref": "http://vamp-plugins.org/piper/json/schema/framing#" cannam@191: } c@171: }, cannam@191: "required": [ "channelCount", "framing" ], c@171: "additionalProperties": false c@171: } c@171: