{
  "description": "GET request that returns transactions",
  "title": "TransactionResults",
  "type": "object",
  "required": ["results", "limit", "offset", "total"],
  "additionalProperties": false,
  "properties": {
    "limit": {
      "type": "integer",
      "maximum": 200,
      "description": "The number of transactions to return"
    },
    "offset": {
      "type": "integer",
      "description": "The number to transactions to skip (starting at `0`)"
    },
    "total": {
      "type": "integer",
      "description": "The number of transactions available"
    },
    "results": {
      "type": "array",
      "items": {
        "$ref": "../../entities/transactions/transaction.schema.json"
      }
    }
  }
}
