{
    "mockBidRequest": {
      "id": "test-request-id",
      "imp": [
        {
          "id": "test-imp-id",
          "banner": {
            "format": [
              {
                "w": 1030,
                "h": 590
              }
            ]
          },
          "ext": {
            "bidder": {
              "partnerId": "partner_name",
              "placementId": 1234567,
              "site": "site_name",
              "slot": "slot_name",
              "sizes": [
                [
                  1030,
                  590
                ]
              ]
            }
          }
        }
      ],
      "site": {
        "page": "http://www.example.com"
      },
      "device": {
        "ua": "test-user-agent",
        "ip": "123.123.123.123"
      },
      "user": {
        "buyeruid": "some-buyer-uid"
      },
      "ext": {
        "adapterVersion": "1.0.0",
        "partnerId": "partner_name"
      }
    },
    "httpCalls": [
      {
        "expectedRequest": {
          "uri": "https://bids.concert.io/bids/openrtb",
          "body": {
            "id": "test-request-id",
            "imp": [
              {
                "id": "test-imp-id",
                "banner": {
                  "format": [
                    {
                      "w": 1030,
                      "h": 590
                    }
                  ]
                },
                "ext": {
                  "bidder": {
                    "partnerId": "partner_name",
                    "placementId": 1234567,
                    "site": "site_name",
                    "slot": "slot_name",
                    "sizes": [
                      [
                        1030,
                        590
                      ]
                    ]
                  }
                }
              }
            ],
            "device": {
              "ua": "test-user-agent",
              "ip": "123.123.123.123"
            },
            "site": {
              "page": "http://www.example.com"
            },
            "user": {
              "buyeruid": "some-buyer-uid"
            },
            "ext": {
              "adapterVersion": "1.0.0",
              "partnerId": "partner_name"
            }
          },
          "impIDs":["test-imp-id"]
        },
        "mockResponse": {
          "status": 200,
          "body": {
            "id": "test-response-id",
            "seatbid": [
              {
                "bid": [
                  {
                    "id": "test-bid-id",
                    "impid": "test-imp-id",
                    "price": 1.23,
                    "adm": "<div style='width:1030px; height:590px; background-color:#000; color:#fff;'><h1>Banner Ad</h1><p>This is a mock banner ad</p></div>",
                    "crid": "test-creative-id",
                    "w": 1030,
                    "h": 590,
                    "mtype": 1
                  }
                ]
              }
            ]
          }
        }
      }
    ],
    "expectedBidResponses": [
      {
        "bids": [
          {
            "bid": {
              "id": "test-bid-id",
              "impid": "test-imp-id",
              "price": 1.23,
              "adm": "<div style='width:1030px; height:590px; background-color:#000; color:#fff;'><h1>Banner Ad</h1><p>This is a mock banner ad</p></div>",
              "crid": "test-creative-id",
              "w": 1030,
              "h": 590,
              "mtype": 1
            },
            "type": "banner"
          }
        ]
      }
    ]
  }