mirror of
https://github.com/Xahau/xahau.js.git
synced 2025-11-18 11:15:48 +00:00
- Change 'Ripple address'→'XRP Ledger address' - Change 'is exclusive with'→'cannot be used with'
19 lines
526 B
JSON
19 lines
526 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
"title": "minAdjustment",
|
|
"type": "object",
|
|
"properties": {
|
|
"address": {
|
|
"$ref": "address",
|
|
"description": "An address representing the destination of the transaction."
|
|
},
|
|
"minAmount": {
|
|
"$ref": "laxAmount",
|
|
"description": "The minimum amount to be delivered. (This field cannot be used with destination.amount)"
|
|
},
|
|
"tag": {"$ref": "tag"}
|
|
},
|
|
"required": ["address", "minAmount"],
|
|
"additionalProperties": false
|
|
}
|