Mercurial > hg > piper
annotate schema/processrequest.json @ 118:ad3d8d4da194
Typo fixes
author | Chris Cannam <c.cannam@qmul.ac.uk> |
---|---|
date | Wed, 18 May 2016 15:34:44 +0100 |
parents | 278d90d15044 |
children | 0c8629d9855d |
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@117 | 10 "processInput": { |
c@117 | 11 "$ref": "http://vamp-plugins.org/json/schema/processinput#" |
c@116 | 12 } |
c@116 | 13 }, |
c@118 | 14 "required": [ "pluginHandle", "processInput" ], |
c@116 | 15 "additionalProperties": false |
c@116 | 16 } |
c@116 | 17 |