Mercurial > hg > piper
annotate json/schema/configurationresponse.json @ 91:ebd544c82a09 listargs
Experimental Travis build file
author | Chris Cannam |
---|---|
date | Thu, 19 Jan 2017 20:34:47 +0000 |
parents | 1f4ed70d8f1e |
children |
rev | line source |
---|---|
Chris@38 | 1 { |
Chris@86 | 2 "id": "http://vamp-plugins.org/piper/json/schema/configurationresponse#", |
Chris@38 | 3 "$schema": "http://json-schema.org/draft-04/schema#", |
Chris@83 | 4 "description": "schema for a successful response to a request to configure a feature extractor; may be served in the result field of a configure-method rpcresponse", |
Chris@38 | 5 "type": "object", |
Chris@38 | 6 "properties": { |
Chris@75 | 7 "handle": { |
Chris@51 | 8 "type": "number" |
Chris@51 | 9 }, |
Chris@38 | 10 "outputList": { |
Chris@38 | 11 "type": "array", |
Chris@86 | 12 "items": { "$ref": "http://vamp-plugins.org/piper/json/schema/outputdescriptor#" } |
Chris@38 | 13 } |
Chris@38 | 14 }, |
Chris@83 | 15 "required": [ "handle", "outputList" ], |
Chris@38 | 16 "additionalProperties": false |
Chris@38 | 17 } |
Chris@38 | 18 |