您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

prepare-check-create.json 537B

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