github.com/prebid/prebid-server/v2@v2.18.0/adapters/logicad/logicadtest/supplemental/site.json (about)

     1  {
     2    "mockBidRequest": {
     3      "id": "testid",
     4      "site": {
     5        "id": "test"
     6      },
     7      "imp": [
     8        {
     9          "id": "testimpid",
    10          "banner": {
    11            "format": [
    12              {
    13                "w": 300,
    14                "h": 250
    15              },
    16              {
    17                "w": 320,
    18                "h": 50
    19              }
    20            ]
    21          },
    22          "ext": {
    23            "bidder": {
    24              "tid": "testtid"
    25            }
    26          }
    27        }
    28      ]
    29    },
    30    "httpCalls": [
    31      {
    32        "expectedRequest": {
    33          "uri": "https://localhost/adrequest/prebidserver",
    34          "body": {
    35            "id": "testid",
    36            "imp": [
    37              {
    38                "banner": {
    39                  "format": [
    40                    {
    41                      "w": 300,
    42                      "h": 250
    43                    },
    44                    {
    45                      "w": 320,
    46                      "h": 50
    47                    }
    48                  ]
    49                },
    50                "id": "testimpid",
    51                "tagid": "testtid"
    52              }
    53            ],
    54            "site": {
    55              "id": "test"
    56            }
    57          },
    58          "impIDs":["testimpid"]
    59        },
    60        "mockResponse": {
    61          "status": 200,
    62          "body": {
    63            "seatbid": [
    64              {
    65                "bid": [
    66                  {
    67                    "crid": "123",
    68                    "adid": "456",
    69                    "price": 0.12,
    70                    "id": "testid",
    71                    "impid": "testimpid",
    72                    "cid": "789"
    73                  }
    74                ]
    75              }
    76            ]
    77          }
    78        }
    79      }
    80    ],
    81    "expectedBidResponses": [
    82      {
    83        "currency": "USD",
    84        "bids": [
    85          {
    86            "bid": {
    87              "crid": "123",
    88              "adid": "456",
    89              "price": 0.12,
    90              "id": "testid",
    91              "impid": "testimpid",
    92              "cid": "789"
    93            },
    94            "type": "banner"
    95          }
    96        ]
    97      }
    98    ]
    99  }