{
  "mockBidRequest": {
    "id": "test-request-id",
    "site": {
      "page": "https://good.site/url",
      "domain": "good.site",
      "publisher": {
        "id": "uniq_pub_id"
      },
      "keywords": "omgword",
      "ext": {
        "amp": 0
      }
    },
    "imp": [
      {
        "id": "test-imp-id-banner",
        "banner": {
          "format": [
            {
              "w": 300,
              "h": 250
            }
          ]
        },
        "ext": {
          "bidder": {
            "placementId": 13245,
            "publisherId": 1234
          }
        }
      }
    ]
  },
  "httpCalls": [
    {
      "expectedRequest": {
        "uri": "http://localhost/1234/pbs",
        "body": {
          "id": "test-request-id",
          "site": {
            "page": "https://good.site/url",
            "domain": "good.site",
            "publisher": {
              "id": "uniq_pub_id"
            },
            "keywords": "omgword",
            "ext": {
              "amp": 0
            }
          },
          "imp": [
            {
              "id": "test-imp-id-banner",
              "banner": {
                "format": [
                  {
                    "w": 300,
                    "h": 250
                  }
                ]
              },
              "ext": {
                "bidder": {
                  "placementId": 13245,
                  "publisherId": 1234
                }
              }
            }
          ]
        },
        "impIDs":["test-imp-id-banner"]
      },
      "mockResponse": {
        "status": 200,
        "body": {
          "id": "test-request-id",
          "seatbid": [
            {
              "seat": "improvedigital",
              "bid": [
                {
                  "id": "randomid1",
                  "impid": "test-imp-id-banner",
                  "price": 0.5,
                  "adid": "12345678",
                  "adm": "some-test-ad-html",
                  "cid": "987",
                  "crid": "12345678",
                  "h": 250,
                  "w": 300,
                  "ext": {
                    "improvedigital": {
                      "line_item_id": 279820,
                      "bidder_id": 0,
                      "brand_name": "",
                      "buying_type": "classic",
                      "agency_id": "0"
                    }
                  }
                }
              ]
            }
          ],
          "cur": "USD"
        }
      }
    }
  ],
  "expectedBidResponses": [
    {
      "currency": "USD",
      "bids": [
        {
          "bid": {
            "id": "randomid1",
            "impid": "test-imp-id-banner",
            "price": 0.5,
            "adm": "some-test-ad-html",
            "adid": "12345678",
            "cid": "987",
            "crid": "12345678",
            "w": 300,
            "h": 250,
            "dealid": "279820",
            "ext": {
              "improvedigital": {
                "line_item_id": 279820,
                "bidder_id": 0,
                "brand_name": "",
                "buying_type": "classic",
                "agency_id": "0"
              }
            }
          },
          "type": "banner"
        }
      ]
    }
  ]
}
