view schema/pluginconfiguration.json @ 113:65f05b129422

Add the few remaining examples
author Chris Cannam <c.cannam@qmul.ac.uk>
date Wed, 11 May 2016 13:59:23 +0100
parents 6ff2abfeb379
children 0c8629d9855d
line wrap: on
line source
{
    "id": "http://vamp-plugins.org/json/schema/pluginconfiguration#",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "description": "schema for a serialised bundle of configuration data associated with a Vamp Plugin",
    "type": "object",
    "properties": {
	"parameterValues": {
	    "type": "object",
	    "patternProperties": {
		"^[a-zA-Z0-9_-]+$": {
		    "type": "number"
		}
	    },
	    "additionalProperties": false
	},
	"currentProgram": {
	    "type": "string"
	},
	"channelCount": {
	    "type": "integer"
	},
	"stepSize": {
	    "type": "integer"
	},
	"blockSize": {
	    "type": "integer"
	}
    },
    "required": [ "channelCount", "stepSize", "blockSize" ],
    "additionalProperties": false
}