view schema/pluginstaticdata.json @ 30:c8098703fcc5

Feature set is a map, i.e. an object, with output number as key and feature list as value
author Chris Cannam
date Mon, 14 Mar 2016 13:04:01 +0000
parents b3a5950ebb3f
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
}