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.

destination-exact-adjustment.json 629B

123456789101112131415161718
  1. {
  2. "$schema": "http://json-schema.org/draft-04/schema#",
  3. "title": "destinationExactAdjustment",
  4. "type": "object",
  5. "properties": {
  6. "address": {
  7. "$ref": "address",
  8. "description": "An address representing the destination of the transaction."
  9. },
  10. "amount": {
  11. "$ref": "laxAmount",
  12. "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`.)"
  13. },
  14. "tag": {"$ref": "tag"}
  15. },
  16. "required": ["address", "amount"],
  17. "additionalProperties": false
  18. }