{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "TaxRateResponse", "description": "TaxRateResponse is data format returned from TreasuryRequest::TaxRate query", "type": "object", "required": [ "rate" ], "properties": { "rate": { "$ref": "#/definitions/Decimal" } }, "definitions": { "Decimal": { "description": "A fixed-point decimal value with 18 fractional digits, i.e. Decimal(1_000_000_000_000_000_000) == 1.0\n\nThe greatest possible value that can be represented is 340282366920938463463.374607431768211455 (which is (2^128 - 1) / 10^18)", "type": "string" } } }