github.com/prebid/prebid-server/v2@v2.18.0/adapters/krushmedia/krushmediatest/exemplary/banner-web.json (about)

     1  {
     2    "mockBidRequest": {
     3      "id": "some-request-id",
     4      "device": {
     5        "ua": "test-user-agent",
     6        "ip": "123.123.123.123",
     7        "language": "en",
     8        "dnt": 0
     9      },
    10      "tmax": 1000,
    11      "user": {
    12        "buyeruid": "0000-000-000-0000"
    13      },
    14      "site": {
    15        "page": "test.com",
    16        "publisher": {
    17          "id": "123456789"
    18        }
    19      },
    20      "imp": [
    21        {
    22          "id": "some-impression-id",
    23          "banner": {
    24            "w":320,
    25            "h":50
    26          },
    27          "ext": {
    28            "bidder": {
    29              "key": "2"
    30            }
    31          }
    32        }
    33      ]
    34    },
    35    "httpCalls": [
    36      {
    37        "expectedRequest": {
    38          "headers": {
    39            "Content-Type": [
    40              "application/json;charset=utf-8"
    41            ],
    42            "Accept": [
    43              "application/json"
    44            ],
    45            "X-Openrtb-Version": [
    46              "2.5"
    47            ],
    48            "User-Agent": [
    49              "test-user-agent"
    50            ],
    51            "X-Forwarded-For": [
    52              "123.123.123.123"
    53            ],
    54            "Accept-Language": [
    55              "en"
    56            ],
    57            "Dnt": [
    58              "0"
    59            ]
    60          },
    61          "uri": "http://example.com/?c=rtb&m=req&key=2",
    62          "body": {
    63            "id": "some-request-id",
    64            "device": {
    65              "ua": "test-user-agent",
    66              "ip": "123.123.123.123",
    67              "language": "en",
    68              "dnt": 0
    69            },
    70            "imp": [
    71              {
    72                "id": "some-impression-id",
    73                
    74                "banner": {
    75                  "w":320,
    76                  "h":50
    77                }
    78              }
    79            ],
    80            "site": {
    81              "page": "test.com",
    82              "publisher": {
    83                "id": "123456789"
    84              }
    85            },
    86            "user": {
    87              "buyeruid": "0000-000-000-0000"
    88            },
    89            "tmax": 1000
    90          },
    91          "impIDs":["some-impression-id"]
    92        },
    93        "mockResponse": {
    94          "status": 200,
    95          "body": {
    96            "id": "awesome-resp-id",
    97            "seatbid": [
    98              {
    99                "bid": [
   100                  {
   101                    "id": "a3ae1b4e2fc24a4fb45540082e98e161",
   102                    "impid": "1",
   103                    "price": 3.5,
   104                    "adm": "awesome-markup",
   105                    "adomain": [
   106                      "awesome.com"
   107                    ],
   108                    "crid": "20",
   109                    "w": 320,
   110                    "h": 50
   111                  }
   112                ],
   113                "type": "banner",
   114                "seat": "krushmedia"
   115              }
   116            ],
   117            "cur": "USD",
   118            "ext": {
   119              "responsetimemillis": {
   120                "krushmedia": 154
   121              },
   122              "tmaxrequest": 1000
   123            }
   124          }
   125        }
   126      }
   127    ],
   128    "expectedBidResponses": [
   129      {
   130        "bids":[
   131          {
   132            "bid":  {
   133              "id": "a3ae1b4e2fc24a4fb45540082e98e161",
   134              "impid": "1",
   135              "price": 3.5,
   136              "adm": "awesome-markup",
   137              "crid": "20",
   138              "adomain": [
   139                "awesome.com"
   140              ],
   141              "w": 320,
   142              "h": 50
   143            },
   144            "type": "banner"
   145          }
   146        ]
   147      }
   148    ]
   149  }