{
  "mockBidRequest": {
    "id": "test-request-id",
    "imp": [
      {
        "id": "test-imp-id",
        "banner": {
          "format": [{"w": 320, "h": 50}]
        },
        "tagid": "test123",
        "ext": {
          "bidder": {
            "sid": "testSid",
            "token": "testToken",
            "placementId": "testPlacementId",
            "appId": "testAppId",
            "region": "USE"
          }
        }
      }
    ]
  },

  "httpCalls": [
    {
      "expectedRequest": {
        "uri": "https://use.xyz.test.com?sid=testSid&token=testToken",
        "body": {
          "id": "test-request-id",
          "imp": [
            {
              "id":"test-imp-id",
              "banner": {
                "format": [{"w": 320, "h": 50}],
                "w": 320,
                "h": 50
              },
              "tagid": "test123",
              "ext": {
                "bidder": {
                  "sid": "testSid",
                  "token": "testToken",
                  "placementId": "testPlacementId",
                  "appId": "testAppId",
                  "region": "USE"
                }
              }
            }
          ]
        },
        "impIDs":["test-imp-id"]
      },
      "mockResponse": {
        "status": 200,
        "body": {
          "id": "test-request-id",
          "seatbid": [
            {
              "seat": "ttx",
              "bid": [{
                "id": "8ee514f1-b2b8-4abb-89fd-084437d1e800",
                "impid": "test-imp-id",
                "price": 0.5,
                "adm": "some-ads",
                "crid": "crid_testid"
              }]
            }
          ],
          "cur": "USD"
        }
      }
    }
  ],

  "expectedBidResponses": [
    {
      "currency": "USD",
      "bids": [
        {
          "bid": {
            "id": "8ee514f1-b2b8-4abb-89fd-084437d1e800",
            "impid": "test-imp-id",
            "price": 0.5,
            "adm": "some-ads",
            "crid": "crid_testid"
          },
          "type": "banner"
        }
      ]
    }
  ]
}
