Mercurial > hg > piper
annotate schema/processinput.json @ 67:ada4cd9daaba docrefactor
Pull out serialisedarray schema
author | Chris Cannam |
---|---|
date | Wed, 05 Oct 2016 09:58:49 +0100 |
parents | 98930c9d54fa |
children | 0c8629d9855d |
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@40 | 4 "description": "schema for a serialised input into a plugin process call", |
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 |