{
  "mockBidRequest": {
    "id": "test-request-id",
    "app": {
      "bundle": "com.example.app",
      "name": "Test App"
    },
    "imp": [
      {
        "id": "test-imp-id",
        "banner": {
          "format": [
            {
              "w": 300,
              "h": 250
            }
          ]
        },
        "ext": {
          "bidder": {
            "publisherId": "app-publisher-123"
          }
        }
      }
    ]
  },
  "httpCalls": [
    {
      "expectedRequest": {
        "uri": "http://localhost/prebid_server",
        "body": {
          "id": "test-request-id",
          "cur": [
            "USD"
          ],
          "app": {
            "bundle": "com.example.app",
            "name": "Test App",
            "publisher": {
              "ext": {
                "prebid": {
                  "publisherId": "app-publisher-123"
                }
              }
            }
          },
          "imp": [
            {
              "banner": {
                "format": [
                  {
                    "h": 250,
                    "w": 300
                  }
                ]
              },
              "ext": {
                "bidder": {
                  "publisherId": "app-publisher-123"
                }
              },
              "id": "test-imp-id",
              "tagid": "test-imp-id"
            }
          ]
        },
        "impIDs": ["test-imp-id"]
      },
      "mockResponse": {
        "status": 200,
        "body": {
          "id": "test-response-id",
          "cur": "USD",
          "seatbid": [
            {
              "seat": "rtbhouse",
              "bid": [
                {
                  "id": "randomid",
                  "impid": "test-imp-id",
                  "price": 300,
                  "adid": "12345678",
                  "adm": "some-test-ad",
                  "cid": "987",
                  "crid": "12345678",
                  "h": 250,
                  "w": 300,
                  "mtype": 1
                }
              ]
            }
          ]
        }
      }
    }
  ],
  "expectedBidResponses": [
    {
      "currency": "USD",
      "bids": [
        {
          "bid": {
            "id": "randomid",
            "impid": "test-imp-id",
            "price": 300,
            "adid": "12345678",
            "adm": "some-test-ad",
            "cid": "987",
            "crid": "12345678",
            "h": 250,
            "w": 300,
            "mtype": 1
          },
          "type": "banner"
        }
      ]
    }
  ]
}