github.com/prebid/prebid-server/v2@v2.18.0/adapters/adrino/adrinotest/exemplary/single-native.json (about)

     1  {
     2      "mockBidRequest": {
     3          "id": "test-request-id",
     4          "imp": [
     5              {
     6                  "id": "test-imp-id",
     7                  "ext": {
     8                      "bidder": {
     9                          "hash": "123456"
    10                      }
    11                  },
    12                  "native": {
    13                      "request": "{json string}",
    14                      "ver": "1.2"
    15                  }
    16              }
    17          ],
    18          "site": {
    19              "publisher": {
    20                  "id": "1"
    21              },
    22              "page": "some-page-url"
    23          },
    24          "device": {
    25              "w": 1920,
    26              "h": 800
    27          }
    28      },
    29      "httpCalls": [
    30          {
    31              "expectedRequest": {
    32                  "uri": "https://prd-prebid-bidder.adrino.io/openrtb/bid",
    33                  "headers": {
    34                      "Content-Type": [
    35                          "application/json;charset=utf-8"
    36                      ]
    37                  },
    38                  "body": {
    39                      "id": "test-request-id",
    40                      "imp": [
    41                          {
    42                              "id": "test-imp-id",
    43                              "ext": {
    44                                  "bidder": {
    45                                      "hash": "123456"
    46                                  }
    47                              },
    48                              "native": {
    49                                  "request": "{json string}",
    50                                  "ver": "1.2"
    51                              }
    52                          }
    53                      ],
    54                      "site": {
    55                          "publisher": {
    56                              "id": "1"
    57                          },
    58                          "page": "some-page-url"
    59                      },
    60                      "device": {
    61                          "w": 1920,
    62                          "h": 800
    63                      }
    64                  },
    65                  "impIDs":["test-imp-id"]
    66              },
    67              "mockResponse": {
    68                  "status": 200,
    69                  "body": {
    70                      "id": "test-request-id",
    71                      "seatbid": [
    72                          {
    73                              "bid": [
    74                                  {
    75                                      "id": "test-bid-id",
    76                                      "impid": "test-imp-id",
    77                                      "price": 10,
    78                                      "adm": "{json response string}",
    79                                      "crid": "test-creative-id",
    80                                      "ext": {
    81                                          "prebid": {
    82                                              "type": "native"
    83                                          }
    84                                      }
    85                                  }
    86                              ]
    87                          }
    88                      ],
    89                      "cur": "PLN"
    90                  }
    91              }
    92          }
    93      ],
    94      "expectedBidResponses": [
    95          {
    96              "currency": "PLN",
    97              "bids": [
    98                  {
    99                      "bid": {
   100                          "id": "test-bid-id",
   101                          "impid": "test-imp-id",
   102                          "price": 10,
   103                          "adm": "{json response string}",
   104                          "crid": "test-creative-id",
   105                          "ext": {
   106                              "prebid": {
   107                                  "type": "native"
   108                              }
   109                          }
   110                      },
   111                      "type": "native"
   112                  }
   113              ]
   114          }
   115      ]
   116  }