c@116: { c@116: "id": "http://vamp-plugins.org/json/schema/processrequest#", c@116: "$schema": "http://json-schema.org/draft-04/schema#", c@116: "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", c@116: "type": "object", c@116: "properties": { c@116: "pluginHandle": { c@116: "type": "number" c@116: }, c@117: "processInput": { c@117: "$ref": "http://vamp-plugins.org/json/schema/processinput#" c@116: } c@116: }, c@118: "required": [ "pluginHandle", "processInput" ], c@116: "additionalProperties": false c@116: } c@116: