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-account-info.json 1.5KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "$schema": "http://json-schema.org/draft-04/schema#",
  3. "title": "getAccountInfo",
  4. "type": "object",
  5. "properties": {
  6. "sequence": {
  7. "$ref": "sequence",
  8. "description": "The next (smallest unused) sequence number for this account."
  9. },
  10. "xrpBalance": {
  11. "$ref": "value",
  12. "description": "The XRP balance owned by the account."
  13. },
  14. "ownerCount": {
  15. "type": "integer",
  16. "minimum": 0,
  17. "description": "Number of other ledger entries (specifically, trust lines and offers) attributed to this account. This is used to calculate the total reserve required to use the account."
  18. },
  19. "previousInitiatedTransactionID": {
  20. "$ref": "hash256",
  21. "description": "Hash value representing the most recent transaction that was initiated by this account."
  22. },
  23. "previousAffectingTransactionID": {
  24. "$ref": "hash256",
  25. "description": "Hash value representing the most recent transaction that affected this account node directly. **Note:** This does not include changes to the account’s trust lines and offers."
  26. },
  27. "previousAffectingTransactionLedgerVersion": {
  28. "$ref": "ledgerVersion",
  29. "description": "The ledger version that the transaction identified by the `previousAffectingTransactionID` was validated in."
  30. }
  31. },
  32. "required": [
  33. "sequence",
  34. "xrpBalance",
  35. "ownerCount",
  36. "previousAffectingTransactionID",
  37. "previousAffectingTransactionLedgerVersion"
  38. ],
  39. "additionalProperties": false
  40. }