annotate json/schema/parameterdescriptor.json @ 216:72a3b8faba89 tip master

programParameters should not have a pattern enforced on its keys - a program name can be anything
author Chris Cannam <cannam@all-day-breakfast.com>
date Wed, 08 Apr 2020 14:57:24 +0100
parents 5e3397af978f
children
rev   line source
c@171 1 {
c@178 2 "id": "http://vamp-plugins.org/piper/json/schema/parameterdescriptor#",
c@171 3 "$schema": "http://json-schema.org/draft-04/schema#",
cannam@213 4 "description": "schema for metadata about an adjustable parameter of a feature extractor",
c@171 5 "type": "object",
c@171 6 "properties": {
c@171 7 "basic": {
c@178 8 "$ref": "http://vamp-plugins.org/piper/json/schema/basic#"
c@171 9 },
c@171 10 "unit": {
c@171 11 "type": "string"
c@171 12 },
c@171 13 "extents": {
c@178 14 "$ref": "http://vamp-plugins.org/piper/json/schema/valueextents#"
c@171 15 },
c@171 16 "defaultValue": {
c@171 17 "type": "number"
c@171 18 },
c@171 19 "quantizeStep": {
c@171 20 "type": "number"
c@171 21 },
c@171 22 "valueNames": {
c@171 23 "type": "array",
c@171 24 "items": { "type": "string" }
c@171 25 }
c@171 26 },
c@171 27 "required": [ "basic", "extents", "defaultValue" ],
c@171 28 "additionalProperties": false
c@171 29 }
c@171 30