Mercurial > hg > piper
annotate schema/configurationrequest.json @ 110:17d6e8f89bc2
More notes
author | Chris Cannam <c.cannam@qmul.ac.uk> |
---|---|
date | Thu, 17 Mar 2016 12:40:46 +0000 |
parents | 06622c018b8e |
children | 0c8629d9855d |
rev | line source |
---|---|
c@106 | 1 { |
c@106 | 2 "id": "http://vamp-plugins.org/json/schema/configurationrequest#", |
c@106 | 3 "$schema": "http://json-schema.org/draft-04/schema#", |
c@110 | 4 "description": "schema for a serialised request to configure a Vamp plugin; normally served as the content field of an object matching the plain request schema", |
c@106 | 5 "type": "object", |
c@106 | 6 "properties": { |
c@106 | 7 "pluginHandle": { |
c@106 | 8 "type": "number" |
c@106 | 9 }, |
c@106 | 10 "configuration": { |
c@106 | 11 "$ref": "http://vamp-plugins.org/json/schema/pluginconfiguration#" |
c@106 | 12 } |
c@106 | 13 }, |
c@106 | 14 "required": [ "pluginHandle", "configuration" ], |
c@106 | 15 "additionalProperties": false |
c@106 | 16 } |
c@106 | 17 |