github.com/prebid/prebid-server@v0.275.0/adapters/imds/imdstest/exemplary/simple-banner.json (about)

     1  {
     2    "mockBidRequest": {
     3      "id": "test-request-id",
     4      "imp": [
     5        {
     6          "id": "test-imp-id",
     7          "banner": {
     8            "format": [
     9              {
    10                "w": 300,
    11                "h": 250
    12              }
    13            ]
    14          },
    15          "ext": {
    16            "bidder": {
    17              "seatId": "prebid",
    18              "tagId": "demo1"
    19            }
    20          }
    21        }
    22      ]
    23    },
    24  
    25    "httpCalls": [
    26      {
    27        "expectedRequest": {
    28          "uri": "http://pbs.technoratimedia.com/openrtb/bids/prebid?src=pbs-go%2F1.0.0&adapter=imds",
    29          "body": {
    30            "id": "test-request-id",
    31            "ext": {
    32              "seatId": "prebid"
    33            },
    34            "imp": [
    35              {
    36                "id":"test-imp-id",
    37                "tagid": "demo1",
    38                "banner": {
    39                  "format": [
    40                    {"w":300,"h":250}
    41                  ]
    42                },
    43                "ext": {
    44                  "bidder": {
    45                    "seatId": "prebid",
    46                    "tagId": "demo1"
    47                  }
    48                }
    49              }
    50            ]
    51          }
    52        },
    53        "mockResponse": {
    54          "status": 200,
    55          "body": {
    56            "id": "1",
    57            "seatbid": [
    58              {
    59                "bid": [
    60                  {
    61                    "id": "test-request-id",
    62                    "impid": "test-imp-id",
    63                    "price": 2.69,
    64                    "adomain": [
    65                      "psacentral.org"
    66                    ],
    67                    "cid": "mock-crid",
    68                    "crid": "mock-cid",
    69                    "ext": {
    70                      "prebid": {
    71                        "type": "banner"
    72                      }
    73                    }
    74                  }
    75                ],
    76                "seat": "imds"
    77              }
    78            ],
    79            "ext": {
    80              "responsetimemillis": {
    81                "imds": 339
    82              }
    83            }
    84          }
    85        }
    86      }
    87    ],
    88    "expectedBidResponses": [
    89      {
    90        "currency": "USD",
    91        "bids": [
    92          {
    93            "bid": {
    94              "adomain": [
    95                "psacentral.org"
    96              ],
    97              "cid": "mock-crid",
    98              "crid": "mock-cid",
    99              "ext": {
   100                "prebid": {
   101                  "type": "banner"
   102                }
   103              },
   104              "id": "test-request-id",
   105              "impid": "test-imp-id",
   106              "price": 2.69
   107            },
   108            "type": "banner"
   109          }
   110        ]
   111      }
   112    ]
   113  }