{
  "mockBidRequest": {
    "id": "test-request-id",
    "imp": [
      {
        "id": "test-imp-id",
        "banner": {
          "format": [
            {
              "w": 300,
              "h": 50
            }
          ]
        },
        "ext": {
          "bidder": {
            "accountId": "fake-account-id",
            "zoneId": "us-"
          }
        }
      }
    ]
  },
  "httpCalls": [
    {
      "expectedRequest": {
        "uri": "https://us-adx.tradplusad.com/fake-account-id/pserver",
        "body": {
          "id": "test-request-id",
          "imp": [
            {
              "id": "test-imp-id",
              "banner": {
                "format": [
                  {
                    "w": 300,
                    "h": 50
                  }
                ]
              },
              "ext": {
                "bidder": {
                  "accountId": "fake-account-id",
                  "zoneId": "us-"
                }
              }
            }
          ]
        },
        "impIDs":["test-imp-id"]
      },
      "mockResponse": {
        "status": 200,
        "body": {
          "id": "test-request-id",
          "seatbid": [
            {
              "seat": "ttx",
              "bid": [
                {
                  "id": "8ee514f1-b2b8-4abb-89fd-084437d1e800",
                  "impid": "test-imp-id",
                  "price": 1.2,
                  "adm": "some-ads",
                  "crid": "crid_testid",
                  "mtype": 1
                }
              ]
            }
          ],
          "cur": "USD"
        }
      }
    }
  ],
  "expectedBidResponses": [
    {
      "currency": "USD",
      "bids": [
        {
          "bid": {
            "id": "8ee514f1-b2b8-4abb-89fd-084437d1e800",
            "impid": "test-imp-id",
            "price": 1.2,
            "adm": "some-ads",
            "crid": "crid_testid",
            "mtype": 1
          },
          "type": "banner"
        }
      ]
    }
  ]
}
