Mercurial > hg > piper
annotate schema/finishrequest.json @ 150:a2e94b61f608
Use media type
author | Chris Cannam <c.cannam@qmul.ac.uk> |
---|---|
date | Wed, 05 Oct 2016 09:42:26 +0100 |
parents | 78c5a6d3a1b6 |
children | 0c8629d9855d |
rev | line source |
---|---|
c@145 | 1 { |
c@145 | 2 "id": "http://vamp-plugins.org/json/schema/finishrequest#", |
c@145 | 3 "$schema": "http://json-schema.org/draft-04/schema#", |
c@145 | 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", |
c@145 | 5 "type": "object", |
c@145 | 6 "properties": { |
c@145 | 7 "pluginHandle": { |
c@145 | 8 "type": "number" |
c@145 | 9 } |
c@145 | 10 }, |
c@145 | 11 "required": [ "pluginHandle" ], |
c@145 | 12 "additionalProperties": false |
c@145 | 13 } |