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.

account-delete.json 1.0KB

123456789101112131415161718192021222324252627282930
  1. {
  2. "$schema": "http://json-schema.org/draft-04/schema#",
  3. "title": "accountDelete",
  4. "link": "account-delete",
  5. "type": "object",
  6. "properties": {
  7. "destination": {
  8. "$ref": "address",
  9. "description": "Address of an account to receive any leftover XRP after deleting the sending account. Must be a funded account in the ledger, and must not be the sending account."
  10. },
  11. "destinationTag": {
  12. "$ref": "tag",
  13. "description": "(Optional) Arbitrary destination tag that identifies a hosted recipient or other information for the recipient of the deleted account's leftover XRP."
  14. },
  15. "destinationXAddress": {
  16. "$ref": "address",
  17. "description": "X-address of an account to receive any leftover XRP after deleting the sending account. Must be a funded account in the ledger, and must not be the sending account."
  18. },
  19. "memos": {"$ref": "memos"}
  20. },
  21. "anyOf": [
  22. {
  23. "required": ["destination"]
  24. },
  25. {
  26. "required": ["destinationXAddress"]
  27. }
  28. ],
  29. "additionalProperties": false
  30. }