github.com/prebid/prebid-server/v2@v2.18.0/adapters/silvermob/silvermobtest/exemplary/video-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          "video": {
    31            "mimes": [
    32              "video/mp4"
    33            ],
    34            "w": 640,
    35            "h": 480,
    36            "minduration": 120,
    37            "maxduration": 150
    38          },
    39          "ext": {
    40            "bidder": {
    41              "host": "eu",
    42              "zoneid": "0"
    43            }
    44          }
    45        }
    46      ]
    47    },
    48    "httpCalls": [
    49      {
    50        "expectedRequest": {
    51          "headers": {
    52            "Content-Type": [
    53              "application/json;charset=utf-8"
    54            ],
    55            "Accept": [
    56              "application/json"
    57            ],
    58            "X-Openrtb-Version": [
    59              "2.5"
    60            ],
    61            "User-Agent": [
    62              "test-user-agent"
    63            ],
    64            "X-Forwarded-For": [
    65              "123.123.123.123"
    66            ]
    67          },
    68          "uri": "http://eu.example.com/api/dsp/bid/0",
    69          "body": {
    70            "id": "some-request-id",
    71            "device": {
    72              "ua": "test-user-agent",
    73              "ip": "123.123.123.123",
    74              "language": "en",
    75              "dnt": 0
    76            },
    77            "imp": [
    78              {
    79                "id": "some-impression-id",
    80                "video": {
    81                  "mimes": [
    82                    "video/mp4"
    83                  ],
    84                  "minduration": 120,
    85                  "maxduration": 150,
    86                  "w": 640,
    87                  "h": 480
    88                },
    89                "tagid": "ogTAGID",
    90                "ext": {
    91                  "bidder": {
    92                    "host": "eu",
    93                    "zoneid": "0"
    94                  }
    95                }
    96              }
    97            ],
    98            "app": {
    99              "id": "123456789",
   100              "name": "Awesome App",
   101              "bundle": "com.app.awesome",
   102              "domain": "awesomeapp.com",
   103              "cat": [
   104                "IAB22-1"
   105              ],
   106              "publisher": {
   107                "id": "123456789"
   108              }
   109            },
   110            "user": {
   111              "buyeruid": "awesome-user"
   112            },
   113            "tmax": 1000
   114          },
   115          "impIDs":["some-impression-id"]
   116        },
   117        "mockResponse": {
   118          "status": 200,
   119          "body": {
   120            "id": "awesome-resp-id",
   121            "seatbid": [
   122              {
   123                "bid": [
   124                  {
   125                    "id": "a3ae1b4e2fc24a4fb45540082e98e161",
   126                    "impid": "some-impression-id",
   127                    "price": 3.5,
   128                    "adm": "awesome-markup",
   129                    "adomain": [
   130                      "awesome.com"
   131                    ],
   132                    "crid": "20",
   133                    "w": 1280,
   134                    "h": 720
   135                  }
   136                ],
   137                "seat": "silvermob"
   138              }
   139            ],
   140            "cur": "USD",
   141            "ext": {
   142              "responsetimemillis": {
   143                "silvermob": 154
   144              },
   145              "tmaxrequest": 1000
   146            }
   147          }
   148        }
   149      }
   150    ],
   151    "expectedBidResponses": [
   152      {
   153        "bids":[
   154          {
   155            "bid":  {
   156              "id": "a3ae1b4e2fc24a4fb45540082e98e161",
   157              "impid": "some-impression-id",
   158              "price": 3.5,
   159              "adm": "awesome-markup",
   160              "crid": "20",
   161              "adomain": [
   162                "awesome.com"
   163              ],
   164              "w": 1280,
   165              "h": 720
   166            },
   167            "type": "video"
   168          }
   169        ]
   170      }
   171    ]
   172  }