Mercurial > hg > piper
view schema/pluginstaticdata.json @ 100:d86881046395
Load request/response
author | Chris Cannam <c.cannam@qmul.ac.uk> |
---|---|
date | Wed, 09 Mar 2016 15:23:41 +0000 |
parents | 6f23ee7983e0 |
children | 6ed502816e14 |
line wrap: on
line source
{ "id": "http://vamp-plugins.org/json/schema/pluginstaticdata#", "$schema": "http://json-schema.org/draft-04/schema#", "description": "schema for a serialised bundle of the static data associated with a Vamp Plugin", "type": "object", "properties": { "key": { "type": "string" }, "basic": { "$ref": "http://vamp-plugins.org/json/schema/basic#" }, "maker": { "type": "string" }, "copyright": { "type": "string" }, "version": { "type": "integer" }, "category": { "type": "array", "items": { "type": "string" } }, "minChannelCount": { "type": "integer" }, "maxChannelCount": { "type": "integer" }, "parameters": { "type": "array", "items": { "$ref": "http://vamp-plugins.org/json/schema/parameterdescriptor#" } }, "programs": { "type": "array", "items": { "type": "string" } }, "inputDomain": { "$ref": "http://vamp-plugins.org/json/schema/enums#/definitions/input_domain" }, "basicOutputInfo": { "type": "array", "items": { "$ref": "http://vamp-plugins.org/json/schema/basic#" } } }, "required": [ "key", "basic", "version", "minChannelCount", "maxChannelCount", "inputDomain", "basicOutputInfo" ], "additionalProperties": false }