github.com/prebid/prebid-server@v0.275.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        },
    92        "mockResponse": {
    93          "status": 200,
    94          "body": {
    95            "id": "awesome-resp-id",
    96            "seatbid": [
    97              {
    98                "bid": [
    99                  {
   100                    "id": "a3ae1b4e2fc24a4fb45540082e98e161",
   101                    "impid": "1",
   102                    "price": 3.5,
   103                    "adm": "awesome-markup",
   104                    "adomain": [
   105                      "awesome.com"
   106                    ],
   107                    "crid": "20",
   108                    "w": 320,
   109                    "h": 50
   110                  }
   111                ],
   112                "type": "banner",
   113                "seat": "krushmedia"
   114              }
   115            ],
   116            "cur": "USD",
   117            "ext": {
   118              "responsetimemillis": {
   119                "krushmedia": 154
   120              },
   121              "tmaxrequest": 1000
   122            }
   123          }
   124        }
   125      }
   126    ],
   127    "expectedBidResponses": [
   128      {
   129        "bids":[
   130          {
   131            "bid":  {
   132              "id": "a3ae1b4e2fc24a4fb45540082e98e161",
   133              "impid": "1",
   134              "price": 3.5,
   135              "adm": "awesome-markup",
   136              "crid": "20",
   137              "adomain": [
   138                "awesome.com"
   139              ],
   140              "w": 320,
   141              "h": 50
   142            },
   143            "type": "banner"
   144          }
   145        ]
   146      }
   147    ]
   148  }