{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "QueryResponse_for_Binary", "description": "The response required by all queries. Bool is needed for croncat, T allows flexible rule engine", "type": "object", "required": [ "data", "result" ], "properties": { "data": { "$ref": "#/definitions/Binary" }, "result": { "type": "boolean" } }, "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. See also .", "type": "string" } } }