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.

check-create.json 1.0KB

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "$schema": "http://json-schema.org/draft-04/schema#",
  3. "title": "checkCreate",
  4. "link": "check-create",
  5. "type": "object",
  6. "properties": {
  7. "destination": {
  8. "$ref": "address",
  9. "description": "Address of the account that can cash the check."
  10. },
  11. "sendMax": {
  12. "$ref": "laxAmount",
  13. "description": "Amount of source currency the check is allowed to debit the sender, including transfer fees on non-XRP currencies."
  14. },
  15. "destinationTag": {
  16. "$ref": "tag",
  17. "description": "Destination tag that identifies the reason for the check, or a hosted recipient to pay."
  18. },
  19. "expiration": {
  20. "type": "string",
  21. "format": "date-time",
  22. "description": "Time after which the check is no longer valid."
  23. },
  24. "invoiceID": {
  25. "$ref": "hash256",
  26. "description": "256-bit hash, as a 64-character hexadecimal string, representing a specific reason or identifier for this check."
  27. },
  28. "memos": {"$ref": "memos"}
  29. },
  30. "required": ["destination", "sendMax"],
  31. "additionalProperties": false
  32. }