annotate schema/parameterdescriptor.json @ 75:6b6668cdb016 jsonrpc

Remove the term "plugin" in various places
author Chris Cannam
date Thu, 06 Oct 2016 13:38:16 +0100
parents 0c8629d9855d
children
rev   line source
Chris@26 1 {
Chris@26 2 "id": "http://vamp-plugins.org/json/schema/parameterdescriptor#",
Chris@26 3 "$schema": "http://json-schema.org/draft-04/schema#",
Chris@74 4 "description": "schema for a metadata about an adjustable parameter of a feature extractor",
Chris@26 5 "type": "object",
Chris@26 6 "properties": {
Chris@26 7 "basic": {
Chris@26 8 "$ref": "http://vamp-plugins.org/json/schema/basic#"
Chris@26 9 },
Chris@26 10 "unit": {
Chris@26 11 "type": "string"
Chris@26 12 },
Chris@26 13 "extents": {
Chris@26 14 "$ref": "http://vamp-plugins.org/json/schema/valueextents#"
Chris@26 15 },
Chris@26 16 "defaultValue": {
Chris@26 17 "type": "number"
Chris@26 18 },
Chris@26 19 "quantizeStep": {
Chris@26 20 "type": "number"
Chris@26 21 },
Chris@26 22 "valueNames": {
Chris@26 23 "type": "array",
Chris@26 24 "items": { "type": "string" }
Chris@26 25 }
Chris@26 26 },
Chris@26 27 "required": [ "basic", "extents", "defaultValue" ],
Chris@26 28 "additionalProperties": false
Chris@26 29 }
Chris@26 30