123456789101112131415161718 |
- {
- "$schema": "http://json-schema.org/draft-04/schema#",
- "title": "maxAdjustment",
- "type": "object",
- "properties": {
- "address": {
- "$ref": "address",
- "description": "The address to send from."
- },
- "maxAmount": {
- "$ref": "laxAmount",
- "description": "The maximum amount to send. (This field cannot be used with source.amount)"
- },
- "tag": {"$ref": "tag"}
- },
- "required": ["address", "maxAmount"],
- "additionalProperties": false
- }
|