{
  "mockBidRequest": {
    "id": "test-request-id",
    "imp": [
      {
        "id": "test-imp-id",
        "banner": {
          "format": [
            {
              "w": 300,
              "h": 250
            },
            {
              "w": 300,
              "h": 600
            }
          ]
        },
        "ext": {
          "bidder": {
            "source": 1000,
            "siteId": 1234,
            "bidFloor": 20
          }
        }
      }
    ]
  },

  "httpCalls": [
    {
      "expectedRequest": {
        "uri": "http://adapter.bidmatic.io/pbs/ortb?source=1000",
        "body": {
          "id": "test-request-id",
          "imp": [
            {
              "id":"test-imp-id",
              "banner": {
                "format": [
                  {"w":300,"h":250},
                  {"w":300,"h":600}
                ]
              },
              "bidfloor": 20,
              "ext": {
                "bidmatic": {
                  "source": 1000,
                  "siteId": 1234,
                  "bidFloor": 20
                }
              }
            }
          ]
        },
        "impIDs":["test-imp-id"]
      },
      "mockResponse": {
        "status": 200,
        "body": {
          "id": "test-request-id",
          "seatbid": [
            {
              "bid": [
                {
                  "id": "test-bid-id",
                  "impid": "test-imp-id",
                  "mtype": 2,
                  "price": 3.5,
                  "w": 900,
                  "h": 250
                }
              ]
            }
          ]
        }
      }
    }
  ],
  "expectedBidResponses": [
    {
      "currency": "USD",
      "bids": [
        {
          "bid": {
            "id": "test-bid-id",
            "impid": "test-imp-id",
            "mtype": 1,
            "price": 3.5,
            "w": 900,
            "h": 250
          },
          "type": "banner"
        }
      ]
    }
  ]
}