Mercurial > hg > piper
annotate schema/processrequest.json @ 67:ada4cd9daaba docrefactor
Pull out serialisedarray schema
author | Chris Cannam |
---|---|
date | Wed, 05 Oct 2016 09:58:49 +0100 |
parents | d4bcfd5351f5 |
children | 0c8629d9855d |
rev | line source |
---|---|
Chris@45 | 1 { |
Chris@45 | 2 "id": "http://vamp-plugins.org/json/schema/processrequest#", |
Chris@45 | 3 "$schema": "http://json-schema.org/draft-04/schema#", |
Chris@45 | 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", |
Chris@45 | 5 "type": "object", |
Chris@45 | 6 "properties": { |
Chris@45 | 7 "pluginHandle": { |
Chris@45 | 8 "type": "number" |
Chris@45 | 9 }, |
Chris@46 | 10 "processInput": { |
Chris@46 | 11 "$ref": "http://vamp-plugins.org/json/schema/processinput#" |
Chris@45 | 12 } |
Chris@45 | 13 }, |
Chris@47 | 14 "required": [ "pluginHandle", "processInput" ], |
Chris@45 | 15 "additionalProperties": false |
Chris@45 | 16 } |
Chris@45 | 17 |