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

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