{
  "mockBidRequest": {
    "id": "test-request-id",
    "imp": [
      {
        "id": "1",
        "banner": {
          "format": [
            {
              "w": 320,
              "h": 50
            }
          ]
        },
        "ext": {
          "bidder": {
            "cid": "8CUTSTCID",
            "crid": "999999999"
          }
        }
      }
    ]
  },

  "httpCalls": [
    {
      "expectedRequest": {
        "uri": "https://example.trustedstack.com/rtb/prebid?src=http%3A%2F%2Fhosturl.com",
        "body": {
          "id": "test-request-id",
          "imp": [
            {
              "id": "1",
              "banner": {
                "format": [
                  {
                    "w": 320,
                    "h": 50
                  }
                ]
              },
              "ext": {
                "bidder": {
                  "cid": "8CUTSTCID",
                  "crid": "999999999"
                }
              }
            }
          ]
        },
        "impIDs":["1"]
      },

      "mockResponse": {
        "status": 200,
        "body": {
          "id": "test-request-id",
          "seatbid": [
            {
              "seat": "trustedstack",
              "bid": [
                {
                  "id": "test-bid-id",
                  "impid": "1",
                  "price": 1.50,
                  "adm": "some-test-ad",
                  "crid": "test-crid",
                  "h": 50,
                  "w": 320,
                  "mtype": 1
                }
              ]
            }
          ],
          "cur": "USD"
        }
      }
    }
  ],

  "expectedBidResponses": [
    {
      "currency": "USD",
      "bids": [
        {
          "bid": {
            "id": "test-bid-id",
            "impid": "1",
            "price": 1.50,
            "adm": "some-test-ad",
            "crid": "test-crid",
            "w": 320,
            "h": 50,
            "mtype": 1
          },
          "type": "banner"
        }
      ]
    }
  ]
}
