view schema/processblock.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 de53fcc487c4
children
line wrap: on
line source
{
    "id": "http://vamp-plugins.org/json/schema/processblock#",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "description": "schema for a serialised input into a plugin process call",
    "type": "object",
    "properties": {
	"timestamp": {
	    "$ref": "http://vamp-plugins.org/json/schema/realtime#"
	},
	"input": {
	    "type": "array",
	    "items": {
		"type": "object",
		"properties": {
		    "values": {
			"type": "array",
			"items": { "type": "number" }
		    },
		    "b64values": {
			"type": "string"
		    }
		}
	    }
	}
    },
    "additionalProperties": false
}