github.com/prebid/prebid-server/v2@v2.18.0/adapters/bizzclick/bizzclicktest/exemplary/native-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          "native": {
    31            "ver": "1.1",
    32            "request": "{\"adunit\":2,\"assets\":[{\"id\":3,\"img\":{\"h\":120,\"hmin\":0,\"type\":3,\"w\":180,\"wmin\":0},\"required\":1},{\"id\":0,\"required\":1,\"title\":{\"len\":25}},{\"data\":{\"len\":25,\"type\":1},\"id\":4,\"required\":1},{\"data\":{\"len\":140,\"type\":2},\"id\":6,\"required\":1}],\"context\":1,\"layout\":1,\"contextsubtype\":11,\"plcmtcnt\":1,\"plcmttype\":2,\"ver\":\"1.1\",\"ext\":{\"banner\":{\"w\":320,\"h\":50}}}"
    33          },
    34          "ext": {
    35            "bidder": {
    36              "accountId": "accountId",
    37              "sourceId": "sourceId",
    38              "host": "host"
    39            }
    40          }
    41        }
    42      ]
    43    },
    44    "httpCalls": [
    45      {
    46        "expectedRequest": {
    47          "headers": {
    48            "Content-Type": [
    49              "application/json;charset=utf-8"
    50            ],
    51            "Accept": [
    52              "application/json"
    53            ],
    54            "X-Openrtb-Version": [
    55              "2.5"
    56            ],
    57            "User-Agent": [
    58              "test-user-agent"
    59            ],
    60            "X-Forwarded-For": [
    61              "123.123.123.123"
    62            ]
    63          },
    64          "uri": "http://host.bizzclick.com/bid?rtb_seat_id=sourceId&secret_key=accountId",
    65          "body": {
    66            "id": "some-request-id",
    67            "device": {
    68              "ua": "test-user-agent",
    69              "ip": "123.123.123.123",
    70              "language": "en",
    71              "dnt": 0
    72            },
    73            "imp": [
    74              {
    75                "id": "some-impression-id",
    76                "native": {
    77                  "ver": "1.1",
    78                  "request": "{\"adunit\":2,\"assets\":[{\"id\":3,\"img\":{\"h\":120,\"hmin\":0,\"type\":3,\"w\":180,\"wmin\":0},\"required\":1},{\"id\":0,\"required\":1,\"title\":{\"len\":25}},{\"data\":{\"len\":25,\"type\":1},\"id\":4,\"required\":1},{\"data\":{\"len\":140,\"type\":2},\"id\":6,\"required\":1}],\"context\":1,\"layout\":1,\"contextsubtype\":11,\"plcmtcnt\":1,\"plcmttype\":2,\"ver\":\"1.1\",\"ext\":{\"banner\":{\"w\":320,\"h\":50}}}"
    79                },
    80                "tagid": "ogTAGID"
    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                  }
   119                ],
   120                "type": "native",
   121                "seat": "bizzclick"
   122              }
   123            ],
   124            "cur": "USD"
   125          }
   126        }
   127      }
   128    ],
   129    "expectedBidResponses": [
   130      {
   131        "bids": [
   132          {
   133            "bid": {
   134              "id": "a3ae1b4e2fc24a4fb45540082e98e161",
   135              "impid": "some-impression-id",
   136              "price": 3.5,
   137              "adm": "awesome-markup",
   138              "crid": "20",
   139              "adomain": [
   140                "awesome.com"
   141              ]
   142            },
   143            "type": "native"
   144          }
   145        ]
   146      }
   147    ]
   148  }