github.com/prebid/prebid-server/v2@v2.18.0/adapters/adview/adviewtest/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        "ifa":"00000000-0000-0000-0000-000000000000",
     8        "language": "en",
     9        "dnt": 0
    10      },
    11      "tmax": 1000,
    12      "user": {
    13        "buyeruid": "awesome-user"
    14      },
    15      "app": {
    16        "publisher": {
    17          "id": "123456789"
    18        },
    19        "cat": [
    20          "IAB22-1"
    21        ],
    22        "bundle": "com.app.awesome",
    23        "name": "Awesome App",
    24        "domain": "awesomeapp.com",
    25        "id": "123456789"
    26      },
    27      "imp": [
    28        {
    29          "id": "some-impression-id",
    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              "placementId": "posid00001",
    42              "accountId": "accountid01"
    43            }
    44          }
    45        }
    46      ]
    47    },
    48    "httpCalls": [
    49      {
    50        "expectedRequest": {
    51          "uri": "https://bid.adview.com/agent/thirdAdxService/accountid01",
    52          "body": {
    53            "id": "some-request-id",
    54            "cur": ["USD"],
    55            "device": {
    56              "ua": "test-user-agent",
    57              "ip": "123.123.123.123",
    58              "ifa":"00000000-0000-0000-0000-000000000000",
    59              "language": "en",
    60              "dnt": 0
    61            },
    62            "imp": [
    63              {
    64                "id": "some-impression-id",
    65                "video": {
    66                  "mimes": [
    67                    "video/mp4"
    68                  ],
    69                  "minduration": 120,
    70                  "maxduration": 150,
    71                  "w": 640,
    72                  "h": 480
    73                },
    74                "ext": {
    75                  "bidder": {
    76                    "placementId": "posid00001",
    77                    "accountId": "accountid01"
    78                  }   
    79                },   
    80                "tagid": "posid00001"
    81              }
    82            ],
    83            "app": {
    84              "id": "123456789",
    85              "name": "Awesome App",
    86              "bundle": "com.app.awesome",
    87              "domain": "awesomeapp.com",
    88              "cat": [
    89                "IAB22-1"
    90              ],
    91              "publisher": {
    92                "id": "123456789"
    93              }
    94            },
    95            "user": {
    96              "buyeruid": "awesome-user"
    97            },
    98            "tmax": 1000
    99          },
   100          "impIDs":["some-impression-id"]
   101        },
   102        "mockResponse": {
   103          "status": 200,
   104          "body": {
   105            "id": "awesome-resp-id",
   106            "seatbid": [
   107              {
   108                "bid": [
   109                  {
   110                    "id": "a3ae1b4e2fc24a4fb45540082e98e161",
   111                    "impid": "some-impression-id",
   112                    "price": 3.5,
   113                    "adm": "awesome-markup",
   114                    "adomain": [
   115                      "awesome.com"
   116                    ],
   117                    "crid": "20",
   118                    "w": 1280,
   119                    "h": 720,
   120                    "mtype": 2,
   121                    "ext": {
   122                      "formattype": 1
   123                    }
   124                  }
   125                ],
   126                "seat": "adview"
   127              }
   128            ],
   129            "cur": "USD",
   130            "ext": {
   131              "responsetimemillis": {
   132                "adview": 154
   133              },
   134              "tmaxrequest": 1000
   135            }
   136          }
   137        }
   138      }
   139    ],
   140    "expectedBidResponses": [
   141      {
   142        "currency": "USD",
   143        "bids":[
   144          {
   145            "bid":  {
   146              "id": "a3ae1b4e2fc24a4fb45540082e98e161",
   147              "impid": "some-impression-id",
   148              "price": 3.5,
   149              "adm": "awesome-markup",
   150              "crid": "20",
   151              "adomain": [
   152                "awesome.com"
   153              ],
   154              "w": 1280,
   155              "h": 720,
   156              "mtype": 2,
   157              "ext": {
   158                "formattype": 1
   159              }
   160            },
   161            "type": "video"
   162          }
   163        ]
   164      }
   165    ]
   166  }