{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "PrepareOrderTxForm", "type": "object", "required": [ "maker", "amount", "payouts", "originFees" ], "properties": { "maker": { "$ref": "#/components/schemas/UnionAddress" }, "taker": { "$ref": "#/components/schemas/UnionAddress" }, "amount": { "$ref": "#/components/schemas/BigInteger" }, "payouts": { "type": "array", "description": "Value of the payouts for the order", "items": { "$ref": "#/components/schemas/Payout" } }, "originFees": { "type": "array", "description": "Value of the origin fees for the order", "items": { "$ref": "#/components/schemas/Payout" } } } }