{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "OrderFilledStatusResponse", "type": "object", "properties": { "netInputFromMaker": { "type": "string", "description": "BigInt string of netInputFromMaker, the unit is the same as making amount" }, "netOutputToMaker": { "type": "string", "description": "BigInt string of netOutputToMaker, the unit is SY if the order is PT_FOR_TOKEN or YT_FOR_TOKEN, otherwise, the unit it PT or YT depends on type of order" }, "feeAmount": { "type": "string", "description": "BigInt string of feeAmount, in SY" }, "notionalVolume": { "type": "string", "description": "BigInt string of notionalVolume, in SY" } }, "required": [ "netInputFromMaker", "netOutputToMaker", "feeAmount", "notionalVolume" ] }