Mercurial > hg > piper
diff schema/configurationrequest.json @ 106:06622c018b8e
Configuration requests
author | Chris Cannam <c.cannam@qmul.ac.uk> |
---|---|
date | Wed, 16 Mar 2016 12:12:18 +0000 |
parents | |
children | 22c33bd017ba |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/schema/configurationrequest.json Wed Mar 16 12:12:18 2016 +0000 @@ -0,0 +1,17 @@ +{ + "id": "http://vamp-plugins.org/json/schema/configurationrequest#", + "$schema": "http://json-schema.org/draft-04/schema#", + "description": "schema for a serialised request to configure a Vamp plugin", + "type": "object", + "properties": { + "pluginHandle": { + "type": "number" + }, + "configuration": { + "$ref": "http://vamp-plugins.org/json/schema/pluginconfiguration#" + } + }, + "required": [ "pluginHandle", "configuration" ], + "additionalProperties": false +} +