github.com/prebid/prebid-server@v0.275.0/adapters/adview/adviewtest/exemplary/banner-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          "banner": {
    31            "w": 320,
    32            "h": 50
    33          },
    34          "ext": {
    35            "bidder": {
    36              "placementId": "posid00001",
    37              "accountId": "accountid01"
    38            }
    39          }
    40        }
    41      ]
    42    },
    43    "httpCalls": [
    44      {
    45        "expectedRequest": {
    46          "uri": "https://bid.adview.com/agent/thirdAdxService/accountid01",
    47          "body": {
    48            "id": "some-request-id",
    49            "cur": ["USD"],
    50            "device": {
    51              "ua": "test-user-agent",
    52              "ip": "123.123.123.123",
    53              "ifa":"00000000-0000-0000-0000-000000000000",
    54              "language": "en",
    55              "dnt": 0
    56            },
    57            "imp": [
    58              {
    59                "id": "some-impression-id",
    60                "banner": {
    61                  "w": 320,
    62                  "h": 50
    63                },
    64                "tagid": "posid00001",
    65                "ext": {
    66                   "bidder": {
    67                     "placementId": "posid00001",
    68                     "accountId": "accountid01"
    69                   }
    70                }
    71              }
    72            ],
    73            "app": {
    74              "id": "123456789",
    75              "name": "Awesome App",
    76              "bundle": "com.app.awesome",
    77              "domain": "awesomeapp.com",
    78              "cat": [
    79                "IAB22-1"
    80              ],
    81              "publisher": {
    82                "id": "123456789"
    83              }
    84            },
    85            "user": {
    86              "buyeruid": "awesome-user"
    87            },
    88            "tmax": 1000
    89          }
    90        },
    91        "mockResponse": {
    92          "status": 200,
    93          "body": {
    94            "id": "awesome-resp-id",
    95            "seatbid": [
    96              {
    97                "bid": [
    98                  {
    99                    "id": "a3ae1b4e2fc24a4fb45540082e98e161",
   100                    "impid": "some-impression-id",
   101                    "price": 3.5,
   102                    "adm": "awesome-markup",
   103                    "adomain": [
   104                      "awesome.com"
   105                    ],
   106                    "crid": "20",
   107                    "w": 320,
   108                    "h": 50
   109                  }
   110                ],
   111                "type": "banner",
   112                "seat": "adview"
   113              }
   114            ],
   115            "cur": "USD",
   116            "ext": {
   117              "responsetimemillis": {
   118                "adview": 154
   119              },
   120              "tmaxrequest": 1000
   121            }
   122          }
   123        }
   124      }
   125    ],
   126    "expectedBidResponses": [
   127      {
   128        "currency": "USD",
   129        "bids": [
   130          {
   131            "bid": {
   132              "id": "a3ae1b4e2fc24a4fb45540082e98e161",
   133              "impid": "some-impression-id",
   134              "price": 3.5,
   135              "adm": "awesome-markup",
   136              "adomain": [
   137                "awesome.com"
   138              ],
   139              "crid": "20",
   140              "w": 320,
   141              "h": 50
   142            },
   143            "type": "banner"
   144          }
   145        ]
   146      }
   147    ]
   148  }