github.com/prebid/prebid-server@v0.275.0/adapters/silvermob/silvermobtest/exemplary/banner-multi-app.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        "app": {
    15          "publisher": {
    16            "id": "123456789"
    17          },
    18          "cat": [
    19            "IAB22-1"
    20          ],
    21          "bundle": "com.app.awesome",
    22          "name": "Awesome App",
    23          "domain": "awesomeapp.com",
    24          "id": "123456789"
    25        },
    26        "imp": [
    27          {
    28            "id": "some-impression-id",
    29            "tagid": "ogTAGID",
    30            "banner": {
    31              "w":320,
    32              "h":50
    33            },
    34            "ext": {
    35              "bidder": {
    36                "host": "eu",
    37                "zoneid": "0"
    38              }
    39            }
    40          },
    41          {
    42              "id": "another-impression-id",
    43              "tagid": "ogTAGID",
    44              "banner": {
    45                "w":320,
    46                "h":480
    47              },
    48              "ext": {
    49                "bidder": {
    50                  "host": "eu",
    51                  "zoneid": "1"
    52                }
    53              }
    54            }
    55        ]
    56      },
    57      "httpCalls": [
    58        {
    59          "expectedRequest": {
    60            "headers": {
    61              "Content-Type": [
    62                "application/json;charset=utf-8"
    63              ],
    64              "Accept": [
    65                "application/json"
    66              ],
    67              "X-Openrtb-Version": [
    68                "2.5"
    69              ],
    70              "User-Agent": [
    71                "test-user-agent"
    72              ],
    73              "X-Forwarded-For": [
    74                "123.123.123.123"
    75              ]
    76            },
    77            "uri": "http://eu.example.com/api/dsp/bid/0",
    78            "body": {
    79              "id": "some-request-id",
    80              "device": {
    81                "ua": "test-user-agent",
    82                "ip": "123.123.123.123",
    83                "language": "en",
    84                "dnt": 0
    85              },
    86              "imp": [
    87                {
    88                  "id": "some-impression-id",
    89                  "banner": {
    90                      "w":320,
    91                      "h":50
    92                  },
    93                  "tagid": "ogTAGID",
    94                  "ext": {
    95                    "bidder": {
    96                      "host": "eu",
    97                      "zoneid": "0"
    98                    }
    99                  }
   100                }
   101              ],
   102              "app": {
   103                "id": "123456789",
   104                "name": "Awesome App",
   105                "bundle": "com.app.awesome",
   106                "domain": "awesomeapp.com",
   107                "cat": [
   108                  "IAB22-1"
   109                ],
   110                "publisher": {
   111                  "id": "123456789"
   112                }
   113              },
   114              "user": {
   115                "buyeruid": "awesome-user"
   116              },
   117              "tmax": 1000
   118            }
   119          },
   120          "mockResponse": {
   121            "status": 200,
   122            "body": {
   123              "id": "awesome-resp-id",
   124              "seatbid": [
   125                {
   126                  "bid": [
   127                    {
   128                      "id": "a3ae1b4e2fc24a4fb45540082e98e161",
   129                      "impid": "some-impression-id",
   130                      "price": 3.5,
   131                      "adm": "awesome-markup",
   132                      "adomain": [
   133                        "awesome.com"
   134                      ],
   135                      "crid": "20",
   136                      "w":320,
   137                      "h":50
   138                    }
   139                  ],
   140                "type": "banner",
   141                  "seat": "silvermob"
   142                }
   143              ],
   144              "cur": "USD",
   145              "ext": {
   146                "responsetimemillis": {
   147                  "silvermob": 154
   148                },
   149                "tmaxrequest": 1000
   150              }
   151            }
   152          }
   153        },
   154        {
   155          "expectedRequest": {
   156            "headers": {
   157              "Content-Type": [
   158                "application/json;charset=utf-8"
   159              ],
   160              "Accept": [
   161                "application/json"
   162              ],
   163              "X-Openrtb-Version": [
   164                "2.5"
   165              ],
   166              "User-Agent": [
   167                "test-user-agent"
   168              ],
   169              "X-Forwarded-For": [
   170                "123.123.123.123"
   171              ]
   172            },
   173            "uri": "http://eu.example.com/api/dsp/bid/1",
   174            "body": {
   175              "id": "some-request-id",
   176              "device": {
   177                "ua": "test-user-agent",
   178                "ip": "123.123.123.123",
   179                "language": "en",
   180                "dnt": 0
   181              },
   182              "imp": [
   183                {
   184                  "id": "another-impression-id",
   185                  "banner": {
   186                      "w":320,
   187                      "h":480
   188                  },
   189                  "tagid": "ogTAGID",
   190                  "ext": {
   191                    "bidder": {
   192                      "host": "eu",
   193                      "zoneid": "1"
   194                    }
   195                  }
   196                }
   197              ],
   198              "app": {
   199                "id": "123456789",
   200                "name": "Awesome App",
   201                "bundle": "com.app.awesome",
   202                "domain": "awesomeapp.com",
   203                "cat": [
   204                  "IAB22-1"
   205                ],
   206                "publisher": {
   207                  "id": "123456789"
   208                }
   209              },
   210              "user": {
   211                "buyeruid": "awesome-user"
   212              },
   213              "tmax": 1000
   214            }
   215          },
   216          "mockResponse": {
   217            "status": 200,
   218            "body": {
   219              "id": "awesome-resp-id",
   220              "seatbid": [
   221                {
   222                  "bid": [
   223                    {
   224                      "id": "a3ae1b4e2fc24a4fb45540082e98e162",
   225                      "impid": "another-impression-id",
   226                      "price": 3.5,
   227                      "adm": "awesome-markup",
   228                      "adomain": [
   229                        "awesome.com"
   230                      ],
   231                      "crid": "21",
   232                      "w":320,
   233                      "h":480
   234                    }
   235                  ],
   236                "type": "banner",
   237                  "seat": "silvermob"
   238                }
   239              ],
   240              "cur": "USD",
   241              "ext": {
   242                "responsetimemillis": {
   243                  "silvermob": 154
   244                },
   245                "tmaxrequest": 1000
   246              }
   247            }
   248          }
   249        }
   250      ],
   251      "expectedBidResponses": [ 
   252          
   253        {
   254          "bids":[
   255            {
   256              "bid":{
   257                "id": "a3ae1b4e2fc24a4fb45540082e98e161",
   258                "impid": "some-impression-id",
   259                "price": 3.5,
   260                "adm": "awesome-markup",
   261                "adomain": [
   262                  "awesome.com"
   263                ],
   264                "crid": "20",
   265                "w":320,
   266                "h":50
   267              },
   268              "type": "banner"
   269            }
   270          ]
   271        },
   272        {
   273          "bids": [
   274              {
   275                  "bid":{
   276                    "id": "a3ae1b4e2fc24a4fb45540082e98e162",
   277                    "impid": "another-impression-id",
   278                    "price": 3.5,
   279                    "adm": "awesome-markup",
   280                    "adomain": [
   281                      "awesome.com"
   282                    ],
   283                    "crid": "21",
   284                    "w":320,
   285                    "h":480
   286                  },
   287                  "type": "banner"
   288                }
   289          ]
   290      }
   291      ]
   292    }
   293