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.

prepare-check-cancel.json 534B

123456789101112131415161718
  1. {
  2. "$schema": "http://json-schema.org/draft-04/schema#",
  3. "title": "prepareCheckCancelParameters",
  4. "type": "object",
  5. "properties": {
  6. "address": {
  7. "$ref": "address",
  8. "description": "The address of the account that is creating the transaction."
  9. },
  10. "checkCancel": {
  11. "$ref": "checkCancel",
  12. "description": "The specification of the Check cancellation to prepare."
  13. },
  14. "instructions": {"$ref": "instructions"}
  15. },
  16. "additionalProperties": false,
  17. "required": ["address", "checkCancel"]
  18. }