{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "title": "depositPreauth",
  "link": "deposit-preauth",
  "type": "object",
  "properties": {
    "authorize": {
      "$ref": "address",
      "description": "Address of the account that can cash the check."
    },
    "unauthorize": {
      "$ref": "address",
      "description": "Address of the account that can cash the check."
    },
    "memos": {"$ref": "memos"}
  },
  "oneOf": [
    {"required": ["authorize"]},
    {"required": ["unauthorize"]}
  ],
  "additionalProperties": false
}
