annotate json/schema/parameterdescriptor.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
rev   line source
Chris@26 1 {
Chris@86 2 "id": "http://vamp-plugins.org/piper/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@86 8 "$ref": "http://vamp-plugins.org/piper/json/schema/basic#"
Chris@26 9 },
Chris@26 10 "unit": {
Chris@26 11 "type": "string"
Chris@26 12 },
Chris@26 13 "extents": {
Chris@86 14 "$ref": "http://vamp-plugins.org/piper/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