Chris@45: { Chris@45: "id": "http://vamp-plugins.org/json/schema/processrequest#", Chris@45: "$schema": "http://json-schema.org/draft-04/schema#", Chris@45: "description": "schema for a serialised request to process a data block using a Vamp plugin; normally served as the content field of an object matching the plain request schema", Chris@45: "type": "object", Chris@45: "properties": { Chris@45: "pluginHandle": { Chris@45: "type": "number" Chris@45: }, Chris@46: "processInput": { Chris@46: "$ref": "http://vamp-plugins.org/json/schema/processinput#" Chris@45: } Chris@45: }, Chris@47: "required": [ "pluginHandle", "processInput" ], Chris@45: "additionalProperties": false Chris@45: } Chris@45: