github.com/prebid/prebid-server@v0.275.0/adapters/motorik/motoriktest/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": "awesome-user"
    13      },
    14      "site": {
    15        "page": "test.com",
    16        "publisher": {
    17          "id": "123456789"
    18        }
    19      },
    20      "imp": [
    21        {
    22          "id": "some-impression-id1",
    23          "tagid": "ogTAGID",
    24          "banner": {
    25            "w":320,
    26            "h":50
    27          },
    28          "ext": {
    29            "bidder": {
    30              "accountId": "accountId",
    31              "placementId": "placementId"
    32            }
    33          }
    34        },     
    35         {
    36          "id": "some-impression-id2",
    37          "tagid": "ogTAGID",
    38          "banner": {
    39            "w":320,
    40            "h":50
    41          },
    42          "ext": {
    43            "bidder": {
    44              "accountId": "accountId",
    45              "placementId": "placementId"
    46            }
    47          }
    48        }
    49      ]
    50    },
    51    "httpCalls": [
    52      {
    53        "expectedRequest": {
    54          "headers": {
    55            "Content-Type": [
    56              "application/json;charset=utf-8"
    57            ],
    58            "Accept": [
    59              "application/json"
    60            ],
    61            "X-Openrtb-Version": [
    62              "2.5"
    63            ],
    64            "User-Agent": [
    65              "test-user-agent"
    66            ],
    67            "X-Forwarded-For": [
    68              "123.123.123.123"
    69            ]
    70          },
    71          "uri": "http://us.example.com/?k=accountId&name=placementId",
    72          "body": {
    73            "id": "some-request-id",
    74            "device": {
    75              "ua": "test-user-agent",
    76              "ip": "123.123.123.123",
    77              "language": "en",
    78              "dnt": 0
    79            },
    80            "imp": [
    81              {
    82                "id": "some-impression-id1",
    83                "tagid": "ogTAGID",
    84                "banner": {
    85                  "w":320,
    86                  "h":50
    87                }
    88              },
    89              {
    90                "id": "some-impression-id2",
    91                "tagid": "ogTAGID",
    92                "banner": {
    93                  "w":320,
    94                  "h":50
    95                },
    96                "ext": {
    97                  "bidder": {
    98                    "accountId": "accountId",
    99                    "placementId": "placementId"
   100                }
   101              }
   102          }
   103            ],
   104            "site": {
   105              "page": "test.com",
   106              "publisher": {
   107                "id": "123456789"
   108              }
   109            },
   110            "user": {
   111              "buyeruid": "awesome-user"
   112            },
   113            "tmax": 1000
   114          }
   115        },
   116        "mockResponse": {
   117          "status": 200,
   118          "body": {
   119            "id": "awesome-resp-id",
   120            "seatbid": [
   121              {
   122                "bid": [
   123                  {
   124                    "id": "a3ae1b4e2fc24a4fb45540082e98e161",
   125                    "impid": "some-impression-id1",
   126                    "price": 3.5,
   127                    "adm": "awesome-markup",
   128                    "adomain": [
   129                      "awesome.com"
   130                    ],
   131                    "crid": "20",
   132                    "w": 320,
   133                    "h": 50
   134                  },
   135                  {
   136                    "id": "a3ae1b4e2fc24a4fb45540082e98e162",
   137                    "impid": "some-impression-id2",
   138                    "price": 3.5,
   139                    "adm": "awesome-markup",
   140                    "adomain": [
   141                      "awesome.com"
   142                    ],
   143                    "crid": "20",
   144                    "w": 320,
   145                    "h": 50
   146                  }
   147                ],
   148                "type": "banner",
   149                "seat": "motorik"
   150              }
   151            ],
   152            "cur": "USD"
   153          }
   154        }
   155      }
   156    ],
   157    "expectedBidResponses": [
   158      {
   159        "bids":[
   160          {
   161            "bid":  {
   162              "id": "a3ae1b4e2fc24a4fb45540082e98e161",
   163              "impid": "some-impression-id1",
   164              "price": 3.5,
   165              "adm": "awesome-markup",
   166              "crid": "20",
   167              "adomain": [
   168                "awesome.com"
   169              ],
   170              "w": 320,
   171              "h": 50
   172            },
   173            "type": "banner"
   174          },
   175          {
   176            "bid":  {
   177              "id": "a3ae1b4e2fc24a4fb45540082e98e162",
   178              "impid": "some-impression-id2",
   179              "price": 3.5,
   180              "adm": "awesome-markup",
   181              "crid": "20",
   182              "adomain": [
   183                "awesome.com"
   184              ],
   185              "w": 320,
   186              "h": 50
   187            },
   188            "type": "banner"
   189          }
   190        ]
   191      }
   192    ]
   193  }