view schema/response.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 294b1106c4dd
children 44dc11ffa560
line wrap: on
line source
{
    "id": "http://vamp-plugins.org/json/schema/response#",
    "$schema": "http://json-schema.org/draft-04/schema#",
    "description": "schema for a success or failure response to a request",
    "type": "object",
    "properties": {
	"success": {
	    "type": "boolean"
	},
	"response": {
	    "type": "object"
	},
	"errorText": {
	    "type": "string"
	}
    },
    "required": [ "success" ],
    "additionalProperties": false
}