{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "QualificationResult", "type": "object", "required": [ "can_participate", "participation_reward_rate", "referral_reward_rate" ], "properties": { "can_participate": { "type": "boolean" }, "memo": { "type": [ "string", "null" ] }, "participation_reward_rate": { "$ref": "#/definitions/Decimal" }, "referral_reward_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" } } }