UNPKG

ripple-lib

Version:

Deprecated - consider migrating to xrpl.js: https://xrpl.org/xrpljs2-migration-guide.html

30 lines (29 loc) 829 B
{ "$schema": "http://json-schema.org/draft-04/schema#", "title": "getOrdersParameters", "description": "Parameters for getOrders", "type": "object", "properties": { "address": { "$ref": "address", "description": "The XRP Ledger address of the account to get open orders for." }, "options": { "description": "Options that determine what orders to return.", "properties": { "limit": { "type": "integer", "minimum": 1, "description": "Return at most this many orders." }, "ledgerVersion": { "$ref": "ledgerVersion", "description": "Return orders as of this historical ledger version." } }, "additionalProperties": false } }, "required": ["address"], "additionalProperties": false }