{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "ExecuteMsg", "oneOf": [ { "description": "Add random from this", "type": "object", "required": [ "drand" ], "properties": { "drand": { "type": "object", "required": [ "previous_signature", "round", "signature" ], "properties": { "previous_signature": { "$ref": "#/definitions/Binary" }, "round": { "type": "integer", "format": "uint64", "minimum": 0.0 }, "signature": { "$ref": "#/definitions/Binary" } } } }, "additionalProperties": false } ], "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" } } }