{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "title": "destinationExactAdjustment",
  "type": "object",
  "properties": {
    "address": {
      "$ref": "address",
      "description": "An address representing the destination of the transaction."
    },
    "amount": {
      "$ref": "laxAmount",
      "description": "An exact amount to deliver to the recipient. If the counterparty is not specified, amounts with any counterparty may be used. (This field cannot be used with `destination.minAmount`.)"
    },
    "tag": {"$ref": "tag"}
  },
  "required": ["address", "amount"],
  "additionalProperties": false
}
