{
  "mockBidRequest": {
    "id": "test-request-id",
    "imp": [
      {
        "id": "test-imp-id",
        "banner": {
          "format": [
            {
              "w": 300,
              "h": 250
            }
          ]
        },
        "ext": {
          "bidder": {
            "placement_id": "test-placement"
          }
        }
      }
    ],
    "site": {
      "page": "https://example.com",
      "domain": "example.com"
    }
  },
  "httpCalls": [
    {
      "expectedRequest": {
        "uri": "https://example.com?pid=test-placement",
        "body": {
          "id": "test-request-id",
          "imp": [
            {
              "id": "test-imp-id",
              "banner": {
                "format": [
                  {
                    "w": 300,
                    "h": 250
                  }
                ]
              },
              "tagid": "test-placement",
              "ext": {
                "bidder": {
                  "placement_id": "test-placement"
                }
              }
            }
          ],
          "site": {
            "page": "https://example.com",
            "domain": "example.com"
          },
          "cur": [
            "USD"
          ]
        },
        "headers": {
          "Content-Type": [
            "application/json"
          ],
          "Accept": [
            "application/json"
          ],
          "X-OpenRTB-Version": [
            "2.6"
          ]
        },
        "impIDs": ["test-imp-id"]
      },
      "mockResponse": {
        "status": 200,
        "body": {
          "id": "test-request-id",
          "seatbid": [
            {
              "bid": [
                {
                  "id": "test-bid-id",
                  "impid": "test-imp-id",
                  "price": 3.14,
                  "adm": "<div>test ad</div>",
                  "crid": "test-creative-id",
                  "w": 300,
                  "h": 250,
                  "adomain": ["example.com"]
                }
              ],
              "seat": "resetdigital"
            }
          ],
          "cur": "USD"
        }
      }
    }
  ],
  "expectedBidResponses": [
    {
      "currency": "USD",
      "bids": [
        {
          "bid": {
            "id": "test-bid-id",
            "impid": "test-imp-id",
            "price": 3.14,
            "adm": "<div>test ad</div>",
            "crid": "test-creative-id",
            "w": 300,
            "h": 250,
            "adomain": ["example.com"]
          },
          "type": "banner",
          "seat": "resetdigital"
        }
      ]
    }
  ]
}
