github.com/prebid/prebid-server@v0.275.0/adapters/nextmillennium/nextmillenniumtest/exemplary/banner-with-wh.json (about)

     1  {
     2    "mockBidRequest": {
     3      "id": "testid",
     4      "imp": [
     5        {
     6          "id": "testimpid",
     7          "banner": {
     8            "w": 320,
     9            "h": 250
    10          },
    11          "ext": {
    12            "bidder": {
    13              "group_id": "7819"
    14            }
    15          }
    16        }
    17      ],
    18      "app": {
    19        "domain": "www.example.com"
    20      }
    21    },
    22  
    23    "httpCalls": [
    24      {
    25        "expectedRequest": {
    26          "uri": "https://pbs.nextmillmedia.com/openrtb2/auction",
    27          "body":{
    28            "id": "testid",
    29            "app": {
    30              "domain": "www.example.com"
    31            },
    32            "ext": {
    33              "prebid": {
    34                "storedrequest": {
    35                  "id": "g7819;320x250;www.example.com"
    36                }
    37              }
    38            },
    39            "imp": [
    40              {
    41                "banner": {
    42                  "h": 250,
    43                  "w": 320
    44                },
    45                "ext": {
    46                  "prebid": {
    47                    "storedrequest": {
    48                      "id": "g7819;320x250;www.example.com"
    49                    }
    50                  }
    51                },
    52                "id": "testimpid"
    53              }
    54            ]
    55          }
    56        },
    57        "mockResponse": {
    58          "status": 200,
    59          "body": {
    60            "id": "f7b3d2da-e762-410c-b069-424f92c4c4b2",
    61            "seatbid": [
    62              {
    63                "bid": [
    64                  {
    65                    "impid": "123654",
    66                    "id": "7457329903666272789",
    67                    "price": 0.5,
    68                    "adm": "Hello! It\"s a test ad!",
    69                    "adid": "96846035",
    70                    "adomain": ["test.addomain.com"],
    71                    "w": 300,
    72                    "h": 250
    73                  }
    74                ]
    75              }
    76            ],
    77            "cur": "USD"
    78          }
    79        }
    80      }
    81    ],
    82  
    83    "expectedBidResponses": [
    84      {
    85        "currency": "USD",
    86        "bids": [
    87          {
    88            "bid": {
    89              "id": "7457329903666272789",
    90              "impid": "123654",
    91              "price": 0.5,
    92              "adm": "Hello! It\"s a test ad!",
    93              "adid": "96846035",
    94              "adomain": ["test.addomain.com"],
    95              "w": 300,
    96              "h": 250
    97            },
    98            "type": "banner"
    99          }
   100        ]
   101      }
   102    ]
   103  }