github.com/prebid/prebid-server@v0.275.0/adapters/videoheroes/videoheroestest/exemplary/banner-web.json (about)

     1  {
     2    "mockBidRequest": {
     3      "id": "request-id",
     4      "site": {
     5        "page": "test.com/page",
     6        "domain": "test.com",
     7        "cat": [
     8          "IAB9-1"
     9        ],
    10        "publisher": {
    11          "id": "123456789"
    12        }
    13      },
    14      "device": {
    15        "ua": "useragent",
    16        "ip": "100.100.100.100",
    17        "language": "en"
    18      },
    19      "tmax": 1000,
    20      "user": {
    21        "id": "some-user"
    22      },
    23      "imp": [
    24        {
    25          "id": "impression-id",
    26          "tagid": "tid",
    27          "banner": {
    28            "w":320,
    29            "h":50
    30          },
    31          "ext": {
    32            "bidder": {
    33              "placementId": "f897beb0daba0253d8e59a098eef9311"
    34            }
    35          }
    36        }
    37      ]
    38    },
    39    "httpCalls": [
    40      {
    41        "expectedRequest": {
    42          "headers": {
    43            "Content-Type": [
    44              "application/json;charset=utf-8"
    45            ],
    46            "Accept": [
    47              "application/json"
    48            ]
    49          },
    50          "uri": "http://point.contextualadv.com/?t=3&partner=f897beb0daba0253d8e59a098eef9311",
    51          "body": {
    52            "id": "request-id",
    53            "device": {
    54              "ua": "useragent",
    55              "ip": "100.100.100.100",
    56              "language": "en"
    57            },
    58            "imp": [
    59              {
    60                "id": "impression-id",
    61                "banner": {
    62                    "w":320,
    63                    "h":50
    64                },
    65                "tagid": "tid"
    66              }
    67            ],
    68            "site": {
    69              "page": "test.com/page",
    70              "domain": "test.com",
    71              "cat": [
    72                "IAB9-1"
    73              ],
    74              "publisher": {
    75                "id": "123456789"
    76              }
    77            },
    78            "user": {
    79              "id": "some-user"
    80            },
    81            "tmax": 1000
    82          }
    83        },
    84        "mockResponse": {
    85          "status": 200,
    86          "body": {
    87            "id": "resp-id",
    88            "seatbid": [
    89              {
    90                "bid": [
    91                  {
    92                    "id": "123456789",
    93                    "impid": "impression-id",
    94                    "price": 2,
    95                    "adm": "adm code",
    96                    "adomain": [
    97                      "testdomain.com"
    98                    ],
    99                    "crid": "100",
   100                    "w":320,
   101                    "h":50
   102                  }
   103                ],
   104              "type": "banner",
   105                "seat": "videoheroes"
   106              }
   107            ],
   108            "cur": "USD",
   109            "ext": {
   110              "responsetimemillis": {
   111                "videoheroes": 120
   112              },
   113              "tmaxrequest": 1000
   114            }
   115          }
   116        }
   117      }
   118    ],
   119    "expectedBidResponses": [
   120      {
   121        "bids": [{
   122          "bid": {
   123            "id": "123456789",
   124            "impid": "impression-id",
   125            "price": 2,
   126            "adm": "adm code",
   127            "adomain": [
   128              "testdomain.com"
   129            ],
   130            "crid": "100",
   131            "w":320,
   132            "h":50
   133          },
   134          "type": "banner"
   135        }]
   136      }
   137    ]
   138  }