annotate schema/error.json @ 75:6b6668cdb016 jsonrpc

Remove the term "plugin" in various places
author Chris Cannam
date Thu, 06 Oct 2016 13:38:16 +0100
parents 0c8629d9855d
children
rev   line source
Chris@69 1 {
Chris@69 2 "id": "http://vamp-plugins.org/json/schema/error#",
Chris@69 3 "$schema": "http://json-schema.org/draft-04/schema#",
Chris@74 4 "description": "schema for an error object in a response to an rpcrequest",
Chris@69 5 "type": "object",
Chris@69 6 "properties": {
Chris@69 7 "code": {
Chris@69 8 "type": "number"
Chris@69 9 },
Chris@69 10 "message": {
Chris@69 11 "type": "string"
Chris@69 12 }
Chris@69 13 },
Chris@69 14 "required": [ "code", "message" ]
Chris@69 15 }
Chris@69 16