{
  "description": "GET request that returns account transactions",
  "title": "AddressTransactionsListResponse",
  "type": "object",
  "additionalProperties": false,
  "required": ["results", "limit", "offset", "total"],
  "properties": {
    "limit": {
      "type": "integer",
      "maximum": 30
    },
    "offset": {
      "type": "integer"
    },
    "total": {
      "type": "integer"
    },
    "results": {
      "type": "array",
      "items": {
        "type": "object",
        "anyOf": [
          {
            "$ref": "../../entities/mempool-transactions/transaction.schema.json"
          },
          {
            "$ref": "../../entities/transactions/transaction.schema.json"
          }
        ]
      }
    }
  }
}
