github.com/prebid/prebid-server@v0.275.0/adapters/ninthdecimal/ninthdecimaltest/supplemental/compat.json (about)

     1  {
     2    "mockBidRequest": {
     3      "id": "testid",
     4      "imp": [
     5        {
     6          "id": "testimpid",
     7          "banner": {
     8            "format": [{
     9              "w": 320,
    10              "h": 250
    11            }]
    12          },
    13          "ext": {
    14            "bidder": {
    15              "pubid": "19f1b372c7548ec1fe734d2c9f8dc688",
    16              "placement": "dummyplacement"
    17            }
    18          }
    19        }
    20      ]
    21    },
    22  
    23    "httpCalls": [
    24      {
    25        "expectedRequest": {
    26          "uri": "http://rtb.ninthdecimal.com/xp/get?pubid=19f1b372c7548ec1fe734d2c9f8dc688",
    27          "body":{
    28            "id": "testid",
    29            "imp": [{
    30              "banner": {
    31                "h": 250,
    32                "w": 320
    33                },
    34                "id": "testimpid",
    35                "tagid": "dummyplacement"
    36              
    37            }]
    38          }
    39        },
    40        "mockResponse": {
    41          "status": 200,
    42          "body": {
    43            "seatbid": [
    44              {
    45                "bid": [
    46                  {
    47                    "crid": "24080",
    48                     "adid": "2068416",
    49                    "price": 0.01,
    50                    "id": "testid",
    51                    "impid": "testimpid",
    52                    "cid": "8048"
    53                  }
    54                ]
    55              }
    56            ]
    57          }
    58        }
    59      }
    60    ],
    61  
    62    "expectedBidResponses": [
    63      {
    64        "currency": "USD",
    65        "bids": [
    66          {
    67            "bid": {
    68              "crid": "24080",
    69             "adid": "2068416",
    70              "price": 0.01,
    71              "id": "testid",
    72              "impid": "testimpid",
    73              "cid": "8048"
    74            },
    75            "type": "banner"
    76          }
    77        ]
    78      }
    79    ]
    80  }