github.com/prebid/prebid-server/v2@v2.18.0/endpoints/openrtb2/sample-requests/account-required/no-account/not-required-no-acct.json (about)

     1  {
     2    "description": "This request comes with no account id and the mock config does not make it a requirement",
     3    "config": {
     4      "accountRequired": false
     5    },
     6    "mockBidRequest": {
     7      "id": "some-request-id",
     8      "site": {
     9        "page": "test.somepage.com"
    10      },
    11      "user": { },
    12      "imp": [
    13        {
    14          "id": "my-imp-id",
    15          "banner": {
    16            "format": [
    17              {
    18                "w": 300,
    19                "h": 600
    20              }
    21            ]
    22          },
    23          "pmp": {
    24            "deals": [
    25              {
    26                "id": "some-deal-id"
    27              }
    28            ]
    29          },
    30          "ext": {
    31            "appnexus": {
    32              "placementId": 12883451
    33            }
    34          }
    35        }
    36      ],
    37      "tmax": 500,
    38      "ext": {
    39        "prebid": {
    40          "aliases": {
    41            "districtm": "appnexus"
    42          },
    43          "bidadjustmentfactors": {
    44            "appnexus": 1.01,
    45            "districtm": 0.98,
    46            "rubicon": 0.99
    47          },
    48          "cache": {
    49            "bids": {}
    50          },
    51          "targeting": {
    52            "includewinners": false,
    53            "pricegranularity": {
    54              "precision": 2,
    55              "ranges": [
    56                {
    57                  "max": 20,
    58                  "increment": 0.10
    59                }
    60              ]
    61            }
    62          }
    63        }
    64      }
    65    },
    66    "expectedBidResponse": {
    67        "id":"some-request-id",
    68        "bidid":"test bid id",
    69        "cur": "USD",
    70        "nbr":0,
    71        "seatbid": [
    72          {
    73            "bid": [
    74              {
    75                "id": "appnexus-bid",
    76                "impid": "my-imp-id",
    77                "price": 0
    78              }
    79            ],
    80            "seat": "appnexus"
    81          }
    82        ]
    83    },
    84    "expectedReturnCode": 200
    85  }