annotate json/schema/processinput.json @ 91:ebd544c82a09 listargs

Experimental Travis build file
author Chris Cannam
date Thu, 19 Jan 2017 20:34:47 +0000
parents 1f4ed70d8f1e
children
rev   line source
Chris@40 1 {
Chris@86 2 "id": "http://vamp-plugins.org/piper/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@86 8 "$ref": "http://vamp-plugins.org/piper/json/schema/realtime#"
Chris@40 9 },
Chris@46 10 "inputBuffers": {
Chris@40 11 "type": "array",
Chris@40 12 "items": {
Chris@86 13 "$ref": "http://vamp-plugins.org/piper/json/schema/serialisedarray#"
Chris@64 14 }
Chris@64 15 }
Chris@64 16 },
Chris@83 17 "required": [ "timestamp", "inputBuffers" ],
Chris@67 18 "additionalProperties": false
Chris@40 19 }
Chris@40 20
Chris@40 21