view schema/feature.json @ 51:944a65cd4314 outputid-string-in-featureset

Make RequestResponse types more consistent by adding plugin to ConfigurationResponse and introducing a FinishRequest
author Chris Cannam
date Mon, 19 Sep 2016 13:35:56 +0100
parents 1bf1ea70e386
children a444a851bd67
line wrap: on
line source
{
    "id": "http://vamp-plugins.org/json/schema/feature#",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "description": "schema for a Vamp::Plugin::Feature serialisation",
    "type": "object",
    "properties": {
	"timestamp": {
	    "$ref": "http://vamp-plugins.org/json/schema/realtime#"
	},
	"duration": {
	    "$ref": "http://vamp-plugins.org/json/schema/realtime#"
	},
	"label": {
	    "type": "string"
	},
	"values": {
	    "type": "array",
	    "items": { "type": "number" }
	},
	"b64values": {
	    "type": "string"
	}
    },
    "additionalProperties": false
}