Mercurial > hg > piper
annotate json/schema/finishrequest.json @ 86:1f4ed70d8f1e piperurl
Switch json/schema to piper/json/schema in URLs
author | Chris Cannam |
---|---|
date | Wed, 02 Nov 2016 10:49:45 +0000 |
parents | f044f6a309e0 |
children |
rev | line source |
---|---|
Chris@60 | 1 { |
Chris@86 | 2 "id": "http://vamp-plugins.org/piper/json/schema/finishrequest#", |
Chris@60 | 3 "$schema": "http://json-schema.org/draft-04/schema#", |
Chris@74 | 4 "description": "schema for a serialised request to finish processing with a feature extractor; may be served in the params field of a finish-method rpcrequest", |
Chris@60 | 5 "type": "object", |
Chris@60 | 6 "properties": { |
Chris@75 | 7 "handle": { |
Chris@60 | 8 "type": "number" |
Chris@60 | 9 } |
Chris@60 | 10 }, |
Chris@75 | 11 "required": [ "handle" ], |
Chris@60 | 12 "additionalProperties": false |
Chris@60 | 13 } |