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 686B

123456789101112131415161718192021222324
  1. {
  2. "$schema": "http://json-schema.org/draft-04/schema#",
  3. "title": "getAccountInfoParameters",
  4. "description": "Parameters for getAccountInfo",
  5. "type": "object",
  6. "properties": {
  7. "address": {
  8. "$ref": "address",
  9. "description": "The address of the account to get the account info of."
  10. },
  11. "options": {
  12. "description": "Options that affect what to return.",
  13. "properties": {
  14. "ledgerVersion": {
  15. "$ref": "ledgerVersion",
  16. "description": "Get the account info as of this historical ledger version."
  17. }
  18. },
  19. "additionalProperties": false
  20. }
  21. },
  22. "required": ["address"],
  23. "additionalProperties": false
  24. }