github.com/prebid/prebid-server/v2@v2.18.0/adapters/sovrn/sovrntest/exemplary/no-bid.json (about)

     1  {
     2    "mockBidRequest": {
     3    "id": "test-request-id",
     4    "imp": [
     5      {
     6        "id": "test-imp-id",
     7        "banner": {
     8          "format": [
     9            {
    10              "w": 300,
    11              "h": 250
    12            },
    13            {
    14              "w": 300,
    15              "h": 600
    16            }
    17          ]
    18        },
    19        "ext": {
    20          "bidder": {
    21            "tagid": "123456"
    22          }
    23        }
    24      }
    25    ],
    26    "device": {
    27      "ua": "test-user-agent",
    28      "ip": "123.123.123.123",
    29      "language": "en",
    30      "dnt": 0
    31    },
    32    "site": {
    33      "domain": "www.publisher.com",
    34      "page": "http://www.publisher.com/awesome/site"
    35    },
    36    "user": {
    37      "buyeruid": "test_reader_id"
    38    }
    39  },
    40    "httpCalls": [
    41      {
    42        "expectedRequest":
    43        {
    44          "Accept": [
    45            "application/json"
    46          ],
    47          "headers": {
    48            "Content-Type": [
    49              "application/json"
    50            ],
    51            "User-Agent": [
    52              "test-user-agent"
    53            ],
    54            "X-Forwarded-For": [
    55              "123.123.123.123"
    56            ],
    57            "Accept-Language": [
    58              "en"
    59            ],
    60            "Dnt": [
    61              "0"
    62            ],
    63            "Cookie": [
    64              "ljt_reader=test_reader_id"
    65            ]
    66          },
    67          "uri": "http://sovrn.com/test/endpoint",
    68          "body": {
    69            "id": "test-request-id",
    70            "imp": [
    71              {
    72                "id": "test-imp-id",
    73                "banner": {
    74                  "format": [
    75                    {
    76                      "w": 300,
    77                      "h": 250
    78                    },
    79                    {
    80                      "w": 300,
    81                      "h": 600
    82                    }
    83                  ]
    84                },
    85                "tagid": "123456",
    86                "ext": {
    87                  "bidder": {
    88                    "tagid": "123456"
    89                  }
    90                }
    91              }
    92            ],
    93            "site": {
    94              "domain": "www.publisher.com",
    95              "page": "http://www.publisher.com/awesome/site"
    96            },
    97            "user": {
    98              "buyeruid": "test_reader_id"
    99            },
   100            "device": {
   101              "ua": "test-user-agent",
   102              "ip": "123.123.123.123",
   103              "dnt": 0,
   104              "language": "en"
   105            }
   106          },
   107          "impIDs":["test-imp-id"]
   108        },
   109        "mockResponse": {
   110          "status": 200,
   111          "body": {
   112            "id": "test-request-id"
   113          }
   114        }
   115      }
   116    ],
   117  
   118    "expectedBidResponses": [{}]
   119  }