{
  "mockBidRequest": {
    "id": "web-banner",
    "tmax": 3000,
    "imp": [
      {
        "id": "banner-imp-id-1",
        "ext": {
          "bidder": {
            "pkey": "pkey1"
          }
        },
        "banner": {
          "format": [
            {
              "w": 300,
              "h": 250
            }
          ]
        }
      },
      {
        "id": "banner-imp-id-2",
        "ext": {
          "bidder": {
            "pkey": "pkey2"
          }
        },
        "banner": {
          "format": [
            {
              "w": 300,
              "h": 600
            }
          ]
        }
      }
    ],
    "site": {
      "publisher": {
        "id": "1"
      },
      "page": "https://some-site.com",
      "ref": "https://some-site.com"
    },
    "device": {
      "w": 1200,
      "h": 900
    }
  },
  "httpCalls": [
    {
      "expectedRequest": {
        "uri": "http://whatever.url",
        "headers": {
          "Content-Type": ["application/json;charset=utf-8"],
          "Accept": ["application/json"]
        },
        "body": {
          "id": "web-banner",
          "tmax": 3000,
          "imp": [
            {
              "id": "banner-imp-id-1",
              "tagid": "pkey1",
              "ext": {
                "bidder": {
                  "pkey": "pkey1"
                }
              },
              "banner": {
                "format": [
                  {
                    "w": 300,
                    "h": 250
                  }
                ]
              }
            }
          ],
          "site": {
            "publisher": {
              "id": "1"
            },
            "page": "https://some-site.com",
            "ref": "https://some-site.com"
          },
          "device": {
            "w": 1200,
            "h": 900
          },
          "source": {
            "ext": {
              "version": "",
              "str": "10.0"
            }
          }
        },
        "impIDs":["banner-imp-id-1"]
      },
      "mockResponse": {
        "status": 200,
        "body": {
          "id": "web-banner",
          "cur": "USD",
          "seatbid": [
            {
              "bid": [
                {
                  "id": "web-banner",
                  "impid": "banner-imp-id-1",
                  "crid": "some-creative-id",
                  "adm": "<div>Ad</div>",
                  "price": 20,
                  "w": 300,
                  "h": 250,
                  "ext": {
                    "prebid": {
                      "type": "banner"
                    }
                  }
                }
              ]
            }
          ]
        }
      }
    },
    {
      "expectedRequest": {
        "uri": "http://whatever.url",
        "headers": {
          "Content-Type": ["application/json;charset=utf-8"],
          "Accept": ["application/json"]
        },
        "body": {
          "id": "web-banner",
          "tmax": 3000,
          "imp": [
            {
              "id": "banner-imp-id-2",
              "tagid": "pkey2",
              "ext": {
                "bidder": {
                  "pkey": "pkey2"
                }
              },
              "banner": {
                "format": [
                  {
                    "w": 300,
                    "h": 600
                  }
                ]
              }
            }
          ],
          "site": {
            "publisher": {
              "id": "1"
            },
            "page": "https://some-site.com",
            "ref": "https://some-site.com"
          },
          "device": {
            "w": 1200,
            "h": 900
          },
          "source": {
            "ext": {
              "version": "",
              "str": "10.0"
            }
          }
        },
        "impIDs":["banner-imp-id-2"]
      },
      "mockResponse": {
        "status": 200,
        "body": {
          "id": "web-banner",
          "cur": "USD",
          "seatbid": [
            {
              "bid": [
                {
                  "id": "web-banner",
                  "impid": "banner-imp-id-2",
                  "crid": "some-creative-id",
                  "adm": "<div>Ad</div>",
                  "price": 20,
                  "w": 300,
                  "h": 600,
                  "ext": {
                    "prebid": {
                      "type": "banner"
                    }
                  }
                }
              ]
            }
          ]
        }
      }
    }
  ],
  "expectedBidResponses": [
    {
      "currency": "USD",
      "bids": [
        {
          "bid": {
            "id": "web-banner",
            "impid": "banner-imp-id-1",
            "crid": "some-creative-id",
            "adm": "<div>Ad</div>",
            "price": 20,
            "w": 300,
            "h": 250,
            "ext": {
              "prebid": {
                "type": "banner"
              }
            }
          },
          "type": "banner"
        }
      ]
    },
    {
      "currency": "USD",
      "bids": [
        {
          "bid": {
            "id": "web-banner",
            "impid": "banner-imp-id-2",
            "crid": "some-creative-id",
            "adm": "<div>Ad</div>",
            "price": 20,
            "w": 300,
            "h": 600,
            "ext": {
              "prebid": {
                "type": "banner"
              }
            }
          },
          "type": "banner"
        }
      ]
    }
  ]
}
