123456789101112131415161718192021222324252627282930 |
- {
- "$schema": "http://json-schema.org/draft-04/schema#",
- "title": "getBalanceSheetParameters",
- "description": "Parameters for getBalanceSheet",
- "type": "object",
- "properties": {
- "address": {
- "$ref": "address",
- "description": "The XRP Ledger address of the account to get the balance sheet of."
- },
- "options": {
- "properties": {
- "excludeAddresses": {
- "type": "array",
- "items": {"$ref": "address"},
- "uniqueItems": true,
- "description": "Addresses to exclude from the balance totals."
- },
- "ledgerVersion": {
- "$ref": "ledgerVersion",
- "description": "Get the balance sheet as of this historical ledger version."
- }
- },
- "description": "Options to determine how the balances are calculated.",
- "additionalProperties": false
- }
- },
- "additionalProperties": false,
- "required": ["address"]
- }
|