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