{
  "mockBidRequest": {
    "id": "test-request-id",
    "at": 1,
    "imp": [
      {
        "id": "test-imp-id",
        "banner": {
          "format": [
            {
                "w": 300,
                "h": 250
            }
          ]
        },
        "ext": {
          "bidder": {
            "zoneId": "zone_code_test_display"
          }
        }
      }
    ]
  },

  "httpCalls": [
    {
      "expectedRequest": {
        "uri": "http://example.com/go/zone_code_test_display",
        "body": {
          "id": "test-request-id",
          "at": 1,
          "imp": [
            {
              "id": "test-imp-id",
              "banner": {
                "format": [
                  {
                      "w": 300,
                      "h": 250
                  }
                ]
              },
              "ext": {
                "bidder": {
                  "zoneId": "zone_code_test_display"
                }
              }
            }
          ]
        },
        "impIDs":["test-imp-id"]
      },
      "mockResponse": {
        "status": 200,
        "body": {
          "id": "test-request-id",
          "seatbid": [
            {
              "seat": "smilewanted",
              "bid": [{
                "id": "8ee514f1-b2b8-4abb-89fd-084437d1e800",
                "impid": "test-imp-id",
                "price": 0.5,
                "adm": "some-test-ad",
                "crid": "crid_10",
                "h": 250,
                "w": 300
              }]
            }
          ],
          "cur": "USD"
        }
      }
    }
  ],

  "expectedBidResponses": [
    {
      "bids": [
        {
          "bid": {
            "id": "8ee514f1-b2b8-4abb-89fd-084437d1e800",
            "impid": "test-imp-id",
            "price": 0.5,
            "adm": "some-test-ad",
            "crid": "crid_10",
            "h": 250,
            "w": 300
          },
          "type": "banner"
        }
      ]
    }
  ]
}
