You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

get-balance-sheet.json 931B

123456789101112131415161718192021222324252627282930
  1. {
  2. "$schema": "http://json-schema.org/draft-04/schema#",
  3. "title": "getBalanceSheetParameters",
  4. "description": "Parameters for getBalanceSheet",
  5. "type": "object",
  6. "properties": {
  7. "address": {
  8. "$ref": "address",
  9. "description": "The XRP Ledger address of the account to get the balance sheet of."
  10. },
  11. "options": {
  12. "properties": {
  13. "excludeAddresses": {
  14. "type": "array",
  15. "items": {"$ref": "address"},
  16. "uniqueItems": true,
  17. "description": "Addresses to exclude from the balance totals."
  18. },
  19. "ledgerVersion": {
  20. "$ref": "ledgerVersion",
  21. "description": "Get the balance sheet as of this historical ledger version."
  22. }
  23. },
  24. "description": "Options to determine how the balances are calculated.",
  25. "additionalProperties": false
  26. }
  27. },
  28. "additionalProperties": false,
  29. "required": ["address"]
  30. }