{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CancelOrderResponse", "title": "CancelOrderResponse", "type": "object", "properties": { "symbol": { "type": "string", "description": "Trading pair symbol." }, "origClientOrderId": { "type": "string", "description": "Original client order ID." }, "orderId": { "type": "integer", "format": "int64", "description": "Order ID." }, "orderListId": { "type": "integer", "format": "int64", "description": "Order list ID." }, "clientOrderId": { "type": "string", "description": "Client order ID for the cancel request." }, "transactTime": { "type": "integer", "format": "int64", "description": "Transaction time." }, "price": { "type": "string", "description": "Order price." }, "origQty": { "type": "string", "description": "Original quantity." }, "executedQty": { "type": "string", "description": "Executed quantity before cancellation." }, "cummulativeQuoteQty": { "type": "string", "description": "Cumulative quote asset quantity." }, "status": { "type": "string", "description": "Order status after cancellation." }, "timeInForce": { "type": "string", "description": "Time in force." }, "type": { "type": "string", "description": "Order type." }, "side": { "type": "string", "description": "Order side." }, "selfTradePreventionMode": { "type": "string", "description": "Self-trade prevention mode." } } }