Binance · Schema

FuturesOrder

CryptocurrencyExchangeTradingBlockchainFinanceDeFiMarket Data

Properties

Name Type Description
avgPrice string Average fill price.
clientOrderId string Client order ID.
cumQuote string Cumulative quote quantity.
executedQty string Executed quantity.
orderId integer Order ID.
origQty string Original quantity.
origType string Original order type.
price string Order price.
reduceOnly boolean Reduce only.
side string Order side.
positionSide string Position side.
status string Order status.
stopPrice string Stop price.
closePosition boolean Close position flag.
symbol string Symbol.
time integer Order time.
timeInForce string Time in force.
type string Order type.
activatePrice string Activation price.
priceRate string Callback rate.
updateTime integer Update time.
workingType string Working type.
priceProtect boolean Price protect flag.
View JSON Schema on GitHub

JSON Schema

binance-futuresorder-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FuturesOrder",
  "title": "FuturesOrder",
  "type": "object",
  "properties": {
    "avgPrice": {
      "type": "string",
      "description": "Average fill price."
    },
    "clientOrderId": {
      "type": "string",
      "description": "Client order ID."
    },
    "cumQuote": {
      "type": "string",
      "description": "Cumulative quote quantity."
    },
    "executedQty": {
      "type": "string",
      "description": "Executed quantity."
    },
    "orderId": {
      "type": "integer",
      "format": "int64",
      "description": "Order ID."
    },
    "origQty": {
      "type": "string",
      "description": "Original quantity."
    },
    "origType": {
      "type": "string",
      "description": "Original order type."
    },
    "price": {
      "type": "string",
      "description": "Order price."
    },
    "reduceOnly": {
      "type": "boolean",
      "description": "Reduce only."
    },
    "side": {
      "type": "string",
      "description": "Order side."
    },
    "positionSide": {
      "type": "string",
      "description": "Position side."
    },
    "status": {
      "type": "string",
      "description": "Order status."
    },
    "stopPrice": {
      "type": "string",
      "description": "Stop price."
    },
    "closePosition": {
      "type": "boolean",
      "description": "Close position flag."
    },
    "symbol": {
      "type": "string",
      "description": "Symbol."
    },
    "time": {
      "type": "integer",
      "format": "int64",
      "description": "Order time."
    },
    "timeInForce": {
      "type": "string",
      "description": "Time in force."
    },
    "type": {
      "type": "string",
      "description": "Order type."
    },
    "activatePrice": {
      "type": "string",
      "description": "Activation price."
    },
    "priceRate": {
      "type": "string",
      "description": "Callback rate."
    },
    "updateTime": {
      "type": "integer",
      "format": "int64",
      "description": "Update time."
    },
    "workingType": {
      "type": "string",
      "description": "Working type."
    },
    "priceProtect": {
      "type": "boolean",
      "description": "Price protect flag."
    }
  }
}