annotate schema/configurationrequest.json @ 106:06622c018b8e

Configuration requests
author Chris Cannam <c.cannam@qmul.ac.uk>
date Wed, 16 Mar 2016 12:12:18 +0000
parents
children 22c33bd017ba
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@106 4 "description": "schema for a serialised request to configure a Vamp plugin",
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