{
"type": "object",
"properties": {
"billing_system": {
"type": "string",
"description": "'inr_wallet' when a wallet row exists, 'no_wallet' when the organization has no billing wallet"
},
"balance_inr": {
"type": [
"number",
"null"
],
"description": "Current wallet balance in INR; null when the organization has no billing wallet row"
},
"currency": {
"type": "string",
"description": "Wallet currency ('INR'); present only when a wallet exists"
},
"updated_at": {
"description": "When the wallet balance was last updated; present only when a wallet exists"
},
"note": {
"type": "string",
"description": "Explanation returned when the organization has no billing wallet row"
}
},
"required": [
"billing_system",
"balance_inr"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
}