Mercurial > hg > piper
annotate schema/finishrequest.json @ 67:ada4cd9daaba docrefactor
Pull out serialisedarray schema
author | Chris Cannam |
---|---|
date | Wed, 05 Oct 2016 09:58:49 +0100 |
parents | 8f72b4c0c71c |
children | 0c8629d9855d |
rev | line source |
---|---|
Chris@60 | 1 { |
Chris@60 | 2 "id": "http://vamp-plugins.org/json/schema/finishrequest#", |
Chris@60 | 3 "$schema": "http://json-schema.org/draft-04/schema#", |
Chris@60 | 4 "description": "schema for a serialised request to finish processing with a Vamp plugin; normally served as the content field of an object matching the plain request schema", |
Chris@60 | 5 "type": "object", |
Chris@60 | 6 "properties": { |
Chris@60 | 7 "pluginHandle": { |
Chris@60 | 8 "type": "number" |
Chris@60 | 9 } |
Chris@60 | 10 }, |
Chris@60 | 11 "required": [ "pluginHandle" ], |
Chris@60 | 12 "additionalProperties": false |
Chris@60 | 13 } |