github.com/prebid/prebid-server@v0.275.0/adapters/adrino/adrinotest/exemplary/no-bid.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": 204,
    68                  "body": {}
    69              }
    70          }
    71      ],
    72      "expectedBidResponses": []
    73  }