github.com/prebid/prebid-server@v0.275.0/adapters/aja/ajatest/supplemental/invalid-bid-type.json (about)

     1  {
     2    "mockBidRequest": {
     3      "id": "test-req-id",
     4      "imp": [
     5        {
     6          "id": "test-imp-id",
     7          "ext": {
     8            "bidder": {
     9              "asi": "test-asi"
    10            }
    11          }
    12        }
    13      ],
    14      "user": {
    15        "buyeruid": "test-uid"
    16      },
    17      "tmax": 500
    18    },
    19  
    20    "httpCalls": [
    21      {
    22        "expectedRequest": {
    23          "uri": "https://localhost/bid/4",
    24          "headers": {},
    25          "body": {
    26            "id": "test-req-id",
    27            "imp": [
    28              {
    29                "id": "test-imp-id",
    30                "tagid": "test-asi"
    31              }
    32            ],
    33            "user": {
    34              "buyeruid": "test-uid"
    35            },
    36            "tmax": 500
    37          }
    38        },
    39        "mockResponse": {
    40          "status": 200,
    41          "body": {
    42            "id": "test-req-id",
    43            "seatbid": [
    44              {
    45                "bid": [
    46                  {
    47                    "id": "test-bid-id",
    48                    "impid": "test-imp-id",
    49                    "price": 1,
    50                    "adm": "<VAST></VAST>",
    51                    "crid": "test-creative-id"
    52                  }
    53                ]
    54              }
    55            ],
    56            "bidid": "test-seatbid-id",
    57            "cur": "USD"
    58          }
    59        }
    60      }
    61    ],
    62  
    63    "expectedBidResponses": [{"currency":"USD","bids":[]}],
    64  
    65    "expectedMakeBidsErrors": [
    66      {
    67        "value": "Response received for unexpected type of bid bidID: test-bid-id",
    68        "comparison": "literal"
    69      }
    70    ]
    71  }