{
  "mockBidRequest": {
    "id": "test-request-id",
    "imp": [{
      "id": "test-imp-id",
      "ext": {
        "bidder": {
          "tagid": "123"
        }
      },
      "banner": {
        "format": [{
          "w": 300,
          "h": 250
        }]
      }
    }],
    "site": {
      "publisher": {
        "id": "1"
      },
      "page": "some-page-url"
    },
    "device": {
      "w": 1920,
      "h": 800
    }
  },
  "httpCalls": [{
    "expectedRequest": {
      "uri": "https://ssp.theadx.com/request",
      "body": {
        "id": "test-request-id",
        "imp": [{
          "id": "test-imp-id",
          "ext": {
            "bidder": {
              "tagid": "123"
            }
          },
          "banner": {
            "format": [{
              "w": 300,
              "h": 250
            }]
          },
          "tagid": "123"
        }],
        "site": {
          "publisher": {
            "id": "1"
          },
          "page": "some-page-url"
        },
        "device": {
          "w": 1920,
          "h": 800
        }
      },
      "impIDs":["test-imp-id"]
    },
    "mockResponse": {
      "status": 200,
      "body": {
        "id": "test-request-id",
        "seatbid": [{
          "bid": [{
            "id": "test-bid-id",
            "impid": "test-imp-id",
            "price": 10,
            "adm": "{banner html}",
            "adomain": [ "test.com" ],
            "crid": "test-creative-id",
            "ext": {
              "prebid": {
                "type": "banner"
              }
            }
          }]
        }],
        "cur": "USD"
      }
    }
  }],
  "expectedBidResponses": [{
    "currency": "USD",
    "bids": [
      {
        "bid": {
          "id": "test-bid-id",
          "impid": "test-imp-id",
          "price": 10,
          "adm": "{banner html}",
          "crid": "test-creative-id",
          "adomain": [ "test.com" ],
          "ext": {
            "prebid": {
              "type": "banner"
            }
          }
        },
        "type": "banner"
      }
    ]
  }]
}
