comparison schema/serialisedarray.json @ 67:ada4cd9daaba docrefactor

Pull out serialisedarray schema
author Chris Cannam
date Wed, 05 Oct 2016 09:58:49 +0100
parents
children
comparison
equal deleted inserted replaced
66:98930c9d54fa 67:ada4cd9daaba
1 {
2 "id": "http://vamp-plugins.org/json/schema/serialisedarray#",
3 "$schema": "http://json-schema.org/draft-04/schema#",
4 "description": "schema for alternate serialisations of an array of floating-point values",
5 "anyOf": [
6 {
7 "type": "array",
8 "items": { "type": "number" }
9 },
10 {
11 "type": "string",
12 "media": {
13 "binaryEncoding": "base64",
14 "type": "application/octet-stream"
15 }
16 }
17 ]
18 }
19
20