github.com/prebid/prebid-server/v2@v2.18.0/adapters/bizzclick/bizzclicktest/supplemental/empty-seatbid-array.json (about)

     1  {
     2    "mockBidRequest": {
     3      "id": "some-request-id",
     4      "device": {
     5        "ua": "test-user-agent",
     6        "ip": "123.123.123.123",
     7        "language": "en",
     8        "dnt": 0
     9      },
    10      "tmax": 1000,
    11      "user": {
    12        "buyeruid": "awesome-user"
    13      },
    14      "app": {
    15        "publisher": {
    16          "id": "123456789"
    17        },
    18        "cat": [
    19          "IAB22-1"
    20        ],
    21        "bundle": "com.app.awesome",
    22        "name": "Awesome App",
    23        "domain": "awesomeapp.com",
    24        "id": "123456789"
    25      },
    26      "imp": [
    27        {
    28          "id": "some-impression-id",
    29          "tagid": "ogTAGID",
    30          "video": {
    31            "mimes": [
    32              "video/mp4"
    33            ],
    34            "w": 640,
    35            "h": 480,
    36            "minduration": 120,
    37            "maxduration": 150
    38          },
    39          "ext": {
    40            "bidder": {
    41              "accountId": "accountId",
    42              "sourceId": "sourceId",
    43              "host": "host"
    44            }
    45          }
    46        }
    47      ]
    48    },
    49    "httpCalls": [
    50      {
    51        "expectedRequest": {
    52          "headers": {
    53            "Content-Type": [
    54              "application/json;charset=utf-8"
    55            ],
    56            "Accept": [
    57              "application/json"
    58            ],
    59            "X-Openrtb-Version": [
    60              "2.5"
    61            ],
    62            "User-Agent": [
    63              "test-user-agent"
    64            ],
    65            "X-Forwarded-For": [
    66              "123.123.123.123"
    67            ]
    68          },
    69          "uri": "http://host.bizzclick.com/bid?rtb_seat_id=sourceId&secret_key=accountId",
    70          "body": {
    71            "id": "some-request-id",
    72            "device": {
    73              "ua": "test-user-agent",
    74              "ip": "123.123.123.123",
    75              "language": "en",
    76              "dnt": 0
    77            },
    78            "imp": [
    79              {
    80                "id": "some-impression-id",
    81                "video": {
    82                  "mimes": [
    83                    "video/mp4"
    84                  ],
    85                  "minduration": 120,
    86                  "maxduration": 150,
    87                  "w": 640,
    88                  "h": 480
    89                },
    90                "tagid": "ogTAGID"
    91              }
    92            ],
    93            "app": {
    94              "id": "123456789",
    95              "name": "Awesome App",
    96              "bundle": "com.app.awesome",
    97              "domain": "awesomeapp.com",
    98              "cat": [
    99                "IAB22-1"
   100              ],
   101              "publisher": {
   102                "id": "123456789"
   103              }
   104            },
   105            "user": {
   106              "buyeruid": "awesome-user"
   107            },
   108            "tmax": 1000
   109          },
   110          "impIDs":["some-impression-id"]
   111        },
   112        "mockResponse": {
   113          "status": 200,
   114          "body": {
   115            "id": "awesome-resp-id",
   116            "seatbid": [],
   117            "cur": "USD"
   118          }
   119        }
   120      }
   121    ],
   122    "mockResponse": {
   123      "status": 200,
   124      "body": "invalid response"
   125    },
   126    "expectedMakeBidsErrors": [
   127      {
   128        "value": "Empty SeatBid array",
   129        "comparison": "literal"
   130      }
   131    ]
   132  }