github.com/prebid/prebid-server@v0.275.0/adapters/kayzen/kayzentest/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              "zone": "dc",
    30              "exchange": "ex"
    31            }
    32          }
    33        }
    34      ]
    35    },
    36    "httpCalls": [
    37      {
    38        "expectedRequest": {
    39          "headers": {
    40            "Content-Type": [
    41              "application/json;charset=utf-8"
    42            ],
    43            "Accept": [
    44              "application/json"
    45            ]
    46          },
    47          "uri": "https://example-dc.com/?exchange=ex",
    48          "body": {
    49            "id": "some-request-id",
    50            "device": {
    51              "ua": "test-user-agent",
    52              "ip": "123.123.123.123",
    53              "language": "en",
    54              "dnt": 0
    55            },
    56            "imp": [
    57              {
    58                "id": "some-impression-id",
    59                "banner": {
    60                  "w":320,
    61                  "h":50
    62                }
    63              }
    64            ],
    65            "site": {
    66              "page": "test.com",
    67              "publisher": {
    68                "id": "123456789"
    69              }
    70            },
    71            "user": {
    72              "buyeruid": "0000-000-000-0000"
    73            },
    74            "tmax": 1000
    75          }
    76        },
    77        "mockResponse": {
    78          "status": 200,
    79          "body": {
    80            "id": "awesome-resp-id",
    81            "seatbid": [
    82              {
    83                "bid": [
    84                  {
    85                    "id": "a3ae1b4e2fc24a4fb45540082e98e161",
    86                    "impid": "1",
    87                    "price": 3.5,
    88                    "adm": "awesome-markup",
    89                    "adomain": [
    90                      "awesome.com"
    91                    ],
    92                    "crid": "20",
    93                    "w": 320,
    94                    "h": 50
    95                  }
    96                ],
    97                "type": "banner",
    98                "seat": "kayzen-prebid"
    99              }
   100            ],
   101            "cur": "USD",
   102            "ext": {
   103            }
   104          }
   105        }
   106      }
   107    ],
   108    "expectedBidResponses": [
   109      {
   110        "bids":[
   111          {
   112            "bid":  {
   113              "id": "a3ae1b4e2fc24a4fb45540082e98e161",
   114              "impid": "1",
   115              "price": 3.5,
   116              "adm": "awesome-markup",
   117              "crid": "20",
   118              "adomain": [
   119                "awesome.com"
   120              ],
   121              "w": 320,
   122              "h": 50
   123            },
   124            "type": "banner"
   125          }
   126        ]
   127      }
   128    ]
   129  }