view schema/listresponse.json @ 63:8f3ba64ec888 jsonrpc

Start reworking request-response into json-rpc format
author Chris Cannam
date Wed, 05 Oct 2016 09:19:05 +0100
parents 8f72b4c0c71c
children 0c8629d9855d
line wrap: on
line source
{
    "id": "http://vamp-plugins.org/json/schema/listresponse#",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "description": "schema for a serialised response to a request to list plugins; normally served as the content field of an object matching the plain response schema",
    "type": "object",
    "properties": {
	"plugins": {
            "type": "array",
            "items": { "$ref": "http://vamp-plugins.org/json/schema/pluginstaticdata#" }
	}
    },
    "required": [ "plugins" ],
    "additionalProperties": false
}