{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "VotingQuery", "oneOf": [ { "type": "object", "required": [ "VotingPowerAtHeight" ], "properties": { "VotingPowerAtHeight": { "type": "object", "required": [ "address" ], "properties": { "address": { "type": "string" }, "height": { "type": [ "integer", "null" ], "format": "uint64", "minimum": 0.0 } } } }, "additionalProperties": false }, { "type": "object", "required": [ "TotalPowerAtHeight" ], "properties": { "TotalPowerAtHeight": { "type": "object", "properties": { "height": { "type": [ "integer", "null" ], "format": "uint64", "minimum": 0.0 } } } }, "additionalProperties": false } ] }