github.com/prebid/prebid-server@v0.275.0/adapters/bliink/bliinktest/exemplary/native.json (about)

     1  {
     2    "mockBidRequest": {
     3      "id": "some-request-id",
     4      "device": {
     5        "ua": "test-user-agent",
     6        "ip": "123.123.123.123"
     7      },
     8      "user": {
     9        "buyeruid": "awesome-user",
    10        "ext": {
    11          "consent": "gdprConsentString"
    12        }
    13      },
    14      "site": {
    15        "page": "test.com",
    16        "publisher": {
    17          "id": "123456789"
    18        }
    19      },
    20      "imp": [
    21        {
    22          "id": "some-impression-id",
    23          "tagid": "TAGID",
    24          "native": {
    25            "request": "{test json string}",
    26            "ver": "1.2"
    27          }
    28        }
    29      ]
    30    },
    31    "httpCalls": [
    32      {
    33        "expectedRequest": {
    34          "headers": {
    35            "Content-Type": [
    36              "application/json;charset=utf-8"
    37            ],
    38            "Accept": [
    39              "application/json"
    40            ],
    41            "X-Openrtb-Version": [
    42              "2.5"
    43            ]
    44          },
    45          "uri": "http://biddertest.url/bid",
    46          "body": {
    47            "id": "some-request-id",
    48            "device": {
    49              "ua": "test-user-agent",
    50              "ip": "123.123.123.123"
    51            },
    52            "imp": [
    53              {
    54                "id": "some-impression-id",
    55                "native": {
    56                  "request": "{test json string}",
    57                  "ver": "1.2"
    58                },
    59                "tagid": "TAGID"
    60              }
    61            ],
    62            "site": {
    63              "page": "test.com",
    64              "publisher": {
    65                "id": "123456789"
    66              }
    67            },
    68            "user": {
    69              "buyeruid": "awesome-user",
    70              "ext": {
    71                "consent": "gdprConsentString"
    72              }
    73            }
    74          }
    75        },
    76        "mockResponse": {
    77          "status": 200,
    78          "body": {
    79            "id": "awesome-resp-id",
    80            "seatbid": [
    81              {
    82                "bid": [
    83                  {
    84                    "id": "a3ae1b4e2fc24a4fb45540082e98e161",
    85                    "impid": "some-impression-id",
    86                    "price": 0.9,
    87                    "adm": "awesome-markup",
    88                    "adomain": [
    89                      "awesome.com"
    90                    ],
    91                    "crid": "20"
    92                  }
    93                ],
    94                "type": "native",
    95                "seat": "bliink"
    96              }
    97            ],
    98            "cur": "EUR"
    99          }
   100        }
   101      }
   102    ],
   103    "expectedBidResponses": [
   104      {
   105        "bids": [
   106          {
   107            "bid": {
   108              "id": "a3ae1b4e2fc24a4fb45540082e98e161",
   109              "impid": "some-impression-id",
   110              "price": 0.9,
   111              "adm": "awesome-markup",
   112              "adomain": [
   113                "awesome.com"
   114              ],
   115              "crid": "20"
   116            },
   117            "type": "native"
   118          }
   119        ]
   120      }
   121    ]
   122  }