{
  "$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
}
