123456789101112131415161718 |
- {
- "$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
- }
|