annotate schema/realtime.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@23 1 {
Chris@23 2 "id": "http://vamp-plugins.org/json/schema/realtime#",
Chris@23 3 "$schema": "http://json-schema.org/draft-04/schema#",
Chris@74 4 "description": "schema for a timestamp given in seconds and nanoseconds",
Chris@23 5 "type": "object",
Chris@23 6 "properties": {
Chris@23 7 "s": { "type": "integer" },
Chris@23 8 "n": { "type": "integer" }
Chris@23 9 },
Chris@23 10 "required": [ "s", "n" ],
Chris@23 11 "additionalProperties": false
Chris@23 12 }
Chris@23 13