ripple-lib
Version:
Deprecated - consider migrating to xrpl.js: https://xrpl.org/xrpljs2-migration-guide.html
18 lines (17 loc) • 416 B
JSON
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "getOrderbook",
"type": "object",
"properties": {
"bids": {
"$ref": "orderbookOrders",
"description": "The buy orders in the order book."
},
"asks": {
"$ref": "orderbookOrders",
"description": "The sell orders in the order book."
}
},
"required": ["bids", "asks"],
"additionalProperties": false
}