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