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.

escrow-cancellation.json 612B

12345678910111213141516171819
  1. {
  2. "$schema": "http://json-schema.org/draft-04/schema#",
  3. "title": "escrowCancellation",
  4. "link": "escrow-cancellation",
  5. "type": "object",
  6. "properties": {
  7. "memos": {"$ref": "memos"},
  8. "owner": {
  9. "$ref": "address",
  10. "description": "The address of the owner of the escrow to cancel."
  11. },
  12. "escrowSequence": {
  13. "$ref": "sequence",
  14. "description": "The [account sequence number](#account-sequence-number) of the [Escrow Creation](#escrow-creation) transaction for the escrow to cancel."
  15. }
  16. },
  17. "required": ["owner", "escrowSequence"],
  18. "additionalProperties": false
  19. }