annotate schema/processinput.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@40 1 {
Chris@53 2 "id": "http://vamp-plugins.org/json/schema/processinput#",
Chris@40 3 "$schema": "http://json-schema.org/draft-04/schema#",
Chris@74 4 "description": "schema for a chunk of input data provided to a process request",
Chris@40 5 "type": "object",
Chris@40 6 "properties": {
Chris@40 7 "timestamp": {
Chris@40 8 "$ref": "http://vamp-plugins.org/json/schema/realtime#"
Chris@40 9 },
Chris@46 10 "inputBuffers": {
Chris@40 11 "type": "array",
Chris@40 12 "items": {
Chris@67 13 "$ref": "http://vamp-plugins.org/json/schema/serialisedarray#"
Chris@64 14 }
Chris@64 15 }
Chris@64 16 },
Chris@67 17 "additionalProperties": false
Chris@40 18 }
Chris@40 19
Chris@40 20