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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. "$schema": "http://json-schema.org/draft-04/schema#",
  3. "title": "AccountObjectsResponse",
  4. "description": "Response format for account_objects",
  5. "type": "object",
  6. "properties": {
  7. "account": {
  8. "$ref": "address",
  9. "description":
  10. "Unique address of the account this request corresponds to."
  11. },
  12. "account_objects": {
  13. "type": "array",
  14. "items": {
  15. "type": "object"
  16. },
  17. "description":
  18. "Array of objects owned by this account. Each object is in its raw ledger format."
  19. },
  20. "ledger_hash": {
  21. "type": "string",
  22. "description":
  23. "(May be omitted) The identifying hash of the ledger that was used to generate this response."
  24. },
  25. "ledger_index": {
  26. "$ref": "ledgerVersion",
  27. "description":
  28. "(May be omitted) The sequence number of the ledger that was used to generate this response."
  29. },
  30. "ledger_current_index": {
  31. "$ref": "ledgerVersion",
  32. "description":
  33. "(May be omitted) The sequence number of the ledger that was used to generate this response."
  34. },
  35. "limit": {
  36. "type": "integer",
  37. "description":
  38. "(May be omitted) The limit that was used in this request, if any."
  39. },
  40. "validated": {
  41. "type": "boolean",
  42. "description":
  43. "If included and set to true, the information in this request comes from a validated ledger version. Otherwise, the information is subject to change."
  44. }
  45. },
  46. "required": ["account", "account_objects"],
  47. "additionalProperties": false
  48. }