{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "LatestRandomResponse", "type": "object", "required": [ "randomness", "round", "worker" ], "properties": { "randomness": { "$ref": "#/definitions/Binary" }, "round": { "type": "integer", "format": "uint64", "minimum": 0.0 }, "worker": { "type": "string" } }, "definitions": { "Binary": { "description": "Binary is a wrapper around Vec to add base64 de/serialization with serde. It also adds some helper methods to help encode inline.\n\nThis is only needed as serde-json-{core,wasm} has a horrible encoding for Vec", "type": "string" } } }