annotate schema/processrequest.json @ 116:1fddeaf62c3b

Add process request (i.e. process block plus plugin handle)
author Chris Cannam <c.cannam@qmul.ac.uk>
date Mon, 16 May 2016 15:46:11 +0100
parents
children 32a4d9731320
rev   line source
c@116 1 {
c@116 2 "id": "http://vamp-plugins.org/json/schema/processrequest#",
c@116 3 "$schema": "http://json-schema.org/draft-04/schema#",
c@116 4 "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 5 "type": "object",
c@116 6 "properties": {
c@116 7 "pluginHandle": {
c@116 8 "type": "number"
c@116 9 },
c@116 10 "processBlock": {
c@116 11 "$ref": "http://vamp-plugins.org/json/schema/processblock#"
c@116 12 }
c@116 13 },
c@116 14 "required": [ "pluginHandle", "processBlock" ],
c@116 15 "additionalProperties": false
c@116 16 }
c@116 17