c@106: { c@106: "id": "http://vamp-plugins.org/json/schema/configurationrequest#", c@106: "$schema": "http://json-schema.org/draft-04/schema#", c@110: "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: "type": "object", c@106: "properties": { c@106: "pluginHandle": { c@106: "type": "number" c@106: }, c@106: "configuration": { c@106: "$ref": "http://vamp-plugins.org/json/schema/pluginconfiguration#" c@106: } c@106: }, c@106: "required": [ "pluginHandle", "configuration" ], c@106: "additionalProperties": false c@106: } c@106: