c@171: { c@178: "id": "http://vamp-plugins.org/piper/json/schema/parameterdescriptor#", c@171: "$schema": "http://json-schema.org/draft-04/schema#", cannam@213: "description": "schema for metadata about an adjustable parameter of a feature extractor", c@171: "type": "object", c@171: "properties": { c@171: "basic": { c@178: "$ref": "http://vamp-plugins.org/piper/json/schema/basic#" c@171: }, c@171: "unit": { c@171: "type": "string" c@171: }, c@171: "extents": { c@178: "$ref": "http://vamp-plugins.org/piper/json/schema/valueextents#" c@171: }, c@171: "defaultValue": { c@171: "type": "number" c@171: }, c@171: "quantizeStep": { c@171: "type": "number" c@171: }, c@171: "valueNames": { c@171: "type": "array", c@171: "items": { "type": "string" } c@171: } c@171: }, c@171: "required": [ "basic", "extents", "defaultValue" ], c@171: "additionalProperties": false c@171: } c@171: