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.

deposit-preauth.json 555B

12345678910111213141516171819202122
  1. {
  2. "$schema": "http://json-schema.org/draft-04/schema#",
  3. "title": "depositPreauth",
  4. "link": "deposit-preauth",
  5. "type": "object",
  6. "properties": {
  7. "authorize": {
  8. "$ref": "address",
  9. "description": "Address of the account that can cash the check."
  10. },
  11. "unauthorize": {
  12. "$ref": "address",
  13. "description": "Address of the account that can cash the check."
  14. },
  15. "memos": {"$ref": "memos"}
  16. },
  17. "oneOf": [
  18. {"required": ["authorize"]},
  19. {"required": ["unauthorize"]}
  20. ],
  21. "additionalProperties": false
  22. }