github.com/prebid/prebid-server@v0.275.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        },
   101        "mockResponse": {
   102          "status": 200,
   103          "body": {
   104            "id": "awesome-resp-id",
   105            "seatbid": [
   106              {
   107                "bid": [
   108                  {
   109                    "id": "a3ae1b4e2fc24a4fb45540082e98e161",
   110                    "impid": "some-impression-id",
   111                    "price": 3.5,
   112                    "adm": "awesome-markup",
   113                    "adomain": [
   114                      "awesome.com"
   115                    ],
   116                    "crid": "20",
   117                    "w": 1280,
   118                    "h": 720
   119                  }
   120                ],
   121                "seat": "adview"
   122              }
   123            ],
   124            "cur": "USD",
   125            "ext": {
   126              "responsetimemillis": {
   127                "adview": 154
   128              },
   129              "tmaxrequest": 1000
   130            }
   131          }
   132        }
   133      }
   134    ],
   135    "expectedBidResponses": [
   136      {
   137        "currency": "USD",
   138        "bids":[
   139          {
   140            "bid":  {
   141              "id": "a3ae1b4e2fc24a4fb45540082e98e161",
   142              "impid": "some-impression-id",
   143              "price": 3.5,
   144              "adm": "awesome-markup",
   145              "crid": "20",
   146              "adomain": [
   147                "awesome.com"
   148              ],
   149              "w": 1280,
   150              "h": 720
   151            },
   152            "type": "video"
   153          }
   154        ]
   155      }
   156    ]
   157  }