github.com/prebid/prebid-server@v0.275.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              },
    66              "mockResponse": {
    67                  "status": 200,
    68                  "body": {
    69                      "id": "test-request-id",
    70                      "seatbid": [
    71                          {
    72                              "bid": [
    73                                  {
    74                                      "id": "test-bid-id",
    75                                      "impid": "test-imp-id",
    76                                      "price": 10,
    77                                      "adm": "{json response string}",
    78                                      "crid": "test-creative-id",
    79                                      "ext": {
    80                                          "prebid": {
    81                                              "type": "native"
    82                                          }
    83                                      }
    84                                  }
    85                              ]
    86                          }
    87                      ],
    88                      "cur": "PLN"
    89                  }
    90              }
    91          }
    92      ],
    93      "expectedBidResponses": [
    94          {
    95              "currency": "PLN",
    96              "bids": [
    97                  {
    98                      "bid": {
    99                          "id": "test-bid-id",
   100                          "impid": "test-imp-id",
   101                          "price": 10,
   102                          "adm": "{json response string}",
   103                          "crid": "test-creative-id",
   104                          "ext": {
   105                              "prebid": {
   106                                  "type": "native"
   107                              }
   108                          }
   109                      },
   110                      "type": "native"
   111                  }
   112              ]
   113          }
   114      ]
   115  }