{
  "mockBidRequest": {
    "id": "test-request-id",
    "tmax": 500,
    "at": 1,
    "cur": ["EUR"],
    "regs": {
      "ext": {
        "gdpr": 1
      }
    },
    "user": {
      "ext": {
        "consent": "CO-X2XiO_eyUoAsAxBFRBECsA",
        "eids": [
          {
            "source": "adserver.org",
            "uids": [
              {
                "id": "111111111111",
                "atype": 1
              }
            ]
          },
          {
            "source": "liveramp.com",
            "uids": [
              {
                "id": "AjfowMv4ZHZQME1RWTn",
                "atype": 3
              }
            ]
          }
        ]
      }
    },
    "device": {
      "ip": "123.123.123.123",
      "ua": "test-user-agent"
    },
    "site": {
      "page": "https://example.com/page",
      "domain": "example.com"
    },
    "imp": [
      {
        "id": "test-imp-id",
        "banner": {
          "h": 50,
          "w": 320
        },
        "ext": {
          "bidder": {
            "apiKey": "test-api-key",
            "placement": "test-placement"
          }
        }
      }
    ]
  },
  "httpCalls": [
    {
      "expectedRequest": {
        "uri": "http://example.com/?t=test-api-key",
        "headers": {
          "Content-Type": ["application/json;charset=utf-8"],
          "Accept": ["application/json"],
          "User-Agent": ["test-user-agent"],
          "X-Forwarded-For": ["123.123.123.123"],
          "Referer": ["https://example.com/page"],
          "Origin": ["https://example.com"]
        },
        "body": {
          "adunit": "test-imp-id",
          "currency": "EUR",
          "ik": "test-request-id",
          "ortb2": {
            "at": 1,
            "cur": ["EUR"],
            "device": {
              "ip": "123.123.123.123",
              "ua": "test-user-agent"
            },
            "id": "test-request-id",
            "imp": [
              {
                "banner": {
                  "h": 50,
                  "w": 320
                },
                "ext": {
                  "bidder": {
                    "apiKey": "test-api-key",
                    "placement": "test-placement"
                  }
                },
                "id": "test-imp-id"
              }
            ],
            "regs": {
              "ext": {
                "gdpr": 1
              }
            },
            "site": {
              "domain": "example.com",
              "page": "https://example.com/page"
            },
            "tmax": 500,
            "user": {
              "ext": {
                "consent": "CO-X2XiO_eyUoAsAxBFRBECsA",
                "eids": [
                  {
                    "source": "adserver.org",
                    "uids": [
                      {
                        "id": "111111111111",
                        "atype": 1
                      }
                    ]
                  },
                  {
                    "source": "liveramp.com",
                    "uids": [
                      {
                        "id": "AjfowMv4ZHZQME1RWTn",
                        "atype": 3
                      }
                    ]
                  }
                ]
              }
            }
          },
          "params": {
            "apiKey": "test-api-key",
            "placement": "test-placement"
          },
          "request_id": "test-request-id",
          "timeout": 500,
          "userEids": [
            {
              "source": "adserver.org",
              "uids": [
                {
                  "id": "111111111111",
                  "atype": 1
                }
              ]
            },
            {
              "source": "liveramp.com",
              "uids": [
                {
                  "id": "AjfowMv4ZHZQME1RWTn",
                  "atype": 3
                }
              ]
            }
          ],
          "version": "prebid-server@unknown"
        },
        "impIDs": ["test-imp-id"]
      },
      "mockResponse": {
        "status": 200,
        "body": {
          "ad": "<div>test ad</div>",
          "cpm": 1.5,
          "currency": "EUR",
          "requestId": "test-request-id"
        }
      }
    }
  ],
  "expectedBidResponses": [
    {
      "currency": "EUR",
      "bids": [
        {
          "bid": {
            "id": "test-request-id",
            "impid": "test-imp-id",
            "price": 1.5,
            "adm": "<div>test ad</div>",
            "crid": "test-request-id"
          },
          "type": "banner"
        }
      ]
    }
  ]
}
