github.com/prebid/prebid-server@v0.275.0/adapters/krushmedia/krushmediatest/exemplary/native-web.json (about)

     1  {
     2    "mockBidRequest": {
     3      "id": "some-request-id",
     4      "device": {
     5        "ua": "test-user-agent",
     6        "ip": "123.123.123.123",
     7        "language": "en",
     8        "dnt": 0
     9      },
    10      "tmax": 1000,
    11      "user": {
    12        "buyeruid": "0000-000-000-0000"
    13      },
    14      "site": {
    15        "page": "test.com",
    16        "publisher": {
    17          "id": "123456789"
    18        }
    19      },
    20      "imp": [
    21        {
    22          "id": "some-impression-id",
    23          
    24          "native": {
    25            "ver":"1.1",
    26            "request":"{\"adunit\":2,\"assets\":[{\"id\":3,\"img\":{\"h\":120,\"hmin\":0,\"type\":3,\"w\":180,\"wmin\":0},\"required\":1},{\"id\":0,\"required\":1,\"title\":{\"len\":25}},{\"data\":{\"len\":25,\"type\":1},\"id\":4,\"required\":1},{\"data\":{\"len\":140,\"type\":2},\"id\":6,\"required\":1}],\"context\":1,\"layout\":1,\"contextsubtype\":11,\"plcmtcnt\":1,\"plcmttype\":2,\"ver\":\"1.1\",\"ext\":{\"banner\":{\"w\":320,\"h\":50}}}"
    27          },
    28          "ext": {
    29            "bidder": {
    30              "key": "2"
    31            }
    32          }
    33        }
    34      ]
    35    },
    36    "httpCalls": [
    37      {
    38        "expectedRequest": {
    39          "headers": {
    40            "Content-Type": [
    41              "application/json;charset=utf-8"
    42            ],
    43            "Accept": [
    44              "application/json"
    45            ],
    46            "X-Openrtb-Version": [
    47              "2.5"
    48            ],
    49            "User-Agent": [
    50              "test-user-agent"
    51            ],
    52            "X-Forwarded-For": [
    53              "123.123.123.123"
    54            ],
    55            "Accept-Language": [
    56              "en"
    57            ],
    58            "Dnt": [
    59              "0"
    60            ]
    61          },
    62          "uri": "http://example.com/?c=rtb&m=req&key=2",
    63          "body": {
    64            "id": "some-request-id",
    65            "device": {
    66              "ua": "test-user-agent",
    67              "ip": "123.123.123.123",
    68              "language": "en",
    69              "dnt": 0
    70            },
    71            "imp": [
    72              {
    73                "id": "some-impression-id",
    74                
    75                "native": {
    76                  "ver":"1.1",
    77                  "request":"{\"adunit\":2,\"assets\":[{\"id\":3,\"img\":{\"h\":120,\"hmin\":0,\"type\":3,\"w\":180,\"wmin\":0},\"required\":1},{\"id\":0,\"required\":1,\"title\":{\"len\":25}},{\"data\":{\"len\":25,\"type\":1},\"id\":4,\"required\":1},{\"data\":{\"len\":140,\"type\":2},\"id\":6,\"required\":1}],\"context\":1,\"layout\":1,\"contextsubtype\":11,\"plcmtcnt\":1,\"plcmttype\":2,\"ver\":\"1.1\",\"ext\":{\"banner\":{\"w\":320,\"h\":50}}}"
    78                }
    79              }
    80            ],
    81            "site": {
    82              "page": "test.com",
    83              "publisher": {
    84                "id": "123456789"
    85              }
    86            },
    87            "user": {
    88              "buyeruid": "0000-000-000-0000"
    89            },
    90            "tmax": 1000
    91          }
    92        },
    93        "mockResponse": {
    94          "status": 200,
    95          "body": {
    96            "id": "awesome-resp-id",
    97            "seatbid": [
    98              {
    99                "bid": [
   100                  {
   101                    "id": "a3ae1b4e2fc24a4fb45540082e98e161",
   102                    "impid": "some-impression-id",
   103                    "price": 3.5,
   104                    "adm": "awesome-markup",
   105                    "adomain": [
   106                      "awesome.com"
   107                    ],
   108                    "crid": "20"
   109                  }
   110                ],
   111                "seat": "krushmedia"
   112              }
   113            ],
   114            "cur": "USD",
   115            "ext": {
   116              "responsetimemillis": {
   117                "krushmedia": 154
   118              },
   119              "tmaxrequest": 1000
   120            }
   121          }
   122        }
   123      }
   124    ],
   125    "expectedBidResponses": [
   126      {
   127        "bids":[
   128          {
   129            "bid":  {
   130              "id": "a3ae1b4e2fc24a4fb45540082e98e161",
   131              "impid": "some-impression-id",
   132              "price": 3.5,
   133              "adm": "awesome-markup",
   134              "crid": "20",
   135              "adomain": [
   136                "awesome.com"
   137              ]
   138            },
   139            "type": "native"
   140          }
   141        ]
   142      }
   143    ]
   144  }