github.com/prebid/prebid-server/v2@v2.18.0/adapters/trustedstack/trustedstacktest/exemplary/simple-banner.json (about)

     1  {
     2    "mockBidRequest": {
     3      "id": "test-request-id",
     4      "imp": [
     5        {
     6          "id": "1",
     7          "banner": {
     8            "format": [
     9              {
    10                "w": 320,
    11                "h": 50
    12              }
    13            ]
    14          },
    15          "ext": {
    16            "bidder": {
    17              "cid": "8CUTSTCID",
    18              "crid": "999999999"
    19            }
    20          }
    21        }
    22      ]
    23    },
    24  
    25    "httpCalls": [
    26      {
    27        "expectedRequest": {
    28          "uri": "https://example.trustedstack.com/rtb/prebid?src=http%3A%2F%2Fhosturl.com",
    29          "body": {
    30            "id": "test-request-id",
    31            "imp": [
    32              {
    33                "id": "1",
    34                "banner": {
    35                  "format": [
    36                    {
    37                      "w": 320,
    38                      "h": 50
    39                    }
    40                  ]
    41                },
    42                "ext": {
    43                  "bidder": {
    44                    "cid": "8CUTSTCID",
    45                    "crid": "999999999"
    46                  }
    47                }
    48              }
    49            ]
    50          },
    51          "impIDs":["1"]
    52        },
    53  
    54        "mockResponse": {
    55          "status": 200,
    56          "body": {
    57            "id": "test-request-id",
    58            "seatbid": [
    59              {
    60                "seat": "trustedstack",
    61                "bid": [
    62                  {
    63                    "id": "test-bid-id",
    64                    "impid": "1",
    65                    "price": 1.50,
    66                    "adm": "some-test-ad",
    67                    "crid": "test-crid",
    68                    "h": 50,
    69                    "w": 320,
    70                    "mtype": 1
    71                  }
    72                ]
    73              }
    74            ],
    75            "cur": "USD"
    76          }
    77        }
    78      }
    79    ],
    80  
    81    "expectedBidResponses": [
    82      {
    83        "currency": "USD",
    84        "bids": [
    85          {
    86            "bid": {
    87              "id": "test-bid-id",
    88              "impid": "1",
    89              "price": 1.50,
    90              "adm": "some-test-ad",
    91              "crid": "test-crid",
    92              "w": 320,
    93              "h": 50,
    94              "mtype": 1
    95            },
    96            "type": "banner"
    97          }
    98        ]
    99      }
   100    ]
   101  }