github.com/prebid/prebid-server/v2@v2.18.0/endpoints/openrtb2/sample-requests/valid-whole/exemplary/all-ext.json (about)

     1  {
     2    "description": "This demonstrates all of the OpenRTB extensions supported by Prebid Server. Very few requests will need all of these at once.",
     3    "config": {
     4      "mockBidders": [
     5        {
     6          "bidderName": "appnexus",
     7          "currency": "USD",
     8          "price": 1.00
     9        },
    10        {
    11          "bidderName": "rubicon",
    12          "currency": "USD",
    13          "price": 1.00
    14        }
    15      ]
    16    },
    17    "mockBidRequest": {
    18      "id": "some-request-id",
    19      "site": {
    20        "page": "prebid.org"
    21      },
    22      "user": {
    23        "ext": {
    24          "consent": "gdpr-consent-string",
    25          "prebid": {
    26            "buyeruids": {
    27              "appnexus": "override-appnexus-id-in-cookie"
    28            }
    29          }
    30        }
    31      },
    32      "regs": {
    33        "ext": {
    34          "gdpr": 1,
    35          "us_privacy": "1NYN"
    36        }
    37      },
    38      "imp": [
    39        {
    40          "id": "some-impression-id",
    41          "banner": {
    42            "format": [
    43              {
    44                "w": 300,
    45                "h": 250
    46              },
    47              {
    48                "w": 300,
    49                "h": 600
    50              }
    51            ]
    52          },
    53          "ext": {
    54            "appnexus": {
    55              "placementId": 12883451
    56            },
    57            "districtm": {
    58              "placementId": 105
    59            },
    60            "rubicon": {
    61              "accountId": 1001,
    62              "siteId": 113932,
    63              "zoneId": 535510
    64            }
    65          }
    66        }
    67      ],
    68      "tmax": 500,
    69      "ext": {
    70        "prebid": {
    71          "aliases": {
    72            "districtm": "appnexus"
    73          },
    74          "bidadjustmentfactors": {
    75            "appnexus": 1.01,
    76            "districtm": 0.98,
    77            "rubicon": 0.99
    78          },
    79          "cache": {
    80            "bids": {}
    81          },
    82          "channel": {
    83            "name": "video",
    84            "version": "1.0"
    85          },
    86          "debug": true,
    87          "integration": "managed",
    88          "targeting": {
    89            "includewinners": false,
    90            "pricegranularity": {
    91              "precision": 2,
    92              "ranges": [
    93                {
    94                  "max": 20,
    95                  "increment": 0.10
    96                }
    97              ]
    98            }
    99          }
   100        }
   101      }
   102    },
   103    "expectedBidResponse": {
   104      "id": "some-request-id",
   105      "seatbid": [
   106        {
   107          "bid": [
   108            {
   109              "id": "appnexus-bid",
   110              "impid": "some-impression-id",
   111              "price": 1.01
   112            }
   113          ],
   114          "seat": "appnexus"
   115        },
   116        {
   117          "bid": [
   118            {
   119              "id": "appnexus-bid",
   120              "impid": "some-impression-id",
   121              "price": 0.98
   122            }
   123          ],
   124          "seat": "districtm"
   125        },
   126        {
   127          "bid": [
   128            {
   129              "id": "rubicon-bid",
   130              "impid": "some-impression-id",
   131              "price": 0.99
   132            }
   133          ],
   134          "seat": "rubicon"
   135        }
   136      ],
   137      "bidid": "test bid id",
   138      "cur": "USD",
   139      "nbr": 0
   140    },
   141    "expectedReturnCode": 200
   142  }