ripple-lib
Version:
Deprecated - consider migrating to xrpl.js: https://xrpl.org/xrpljs2-migration-guide.html
37 lines (36 loc) • 1.23 kB
JSON
{
"$schema": "http://json-schema.org/draft-04/schema#",
"title": "getOrders",
"type": "array",
"items": {
"type": "object",
"properties": {
"specification": {
"$ref": "order",
"description": "An order specification that would create an order equivalent to the current state of this order."
},
"properties": {
"description": "Properties of the order not in the specification.",
"type": "object",
"properties": {
"maker": {
"$ref": "address",
"description": "The address of the account that submitted the order."
},
"sequence": {
"$ref": "sequence",
"description": "The account sequence number of the transaction that created this order."
},
"makerExchangeRate": {
"$ref": "value",
"description": "The exchange rate from the point of view of the account that submitted the order (also known as \"quality\")."
}
},
"required": ["maker", "sequence", "makerExchangeRate"],
"addtionalProperties": false
}
},
"required": ["specification", "properties"],
"additionalProperties": false
}
}