github.com/prebid/prebid-server/v2@v2.18.0/adapters/adxcg/adxcgtest/exemplary/simple-native.json (about)

     1  {
     2    "mockBidRequest": {
     3      "id": "test-request-native-id",
     4      "imp": [
     5        {
     6          "id": "test-imp-native-id",
     7          "native": {
     8            "request": "test-native",
     9            "ver": "1.2"
    10          }
    11        }
    12      ]
    13    },
    14    "httpCalls": [
    15      {
    16        "expectedRequest": {
    17          "uri": "http://localhost/prebid_server",
    18          "body": {
    19            "id": "test-request-native-id",
    20            "imp": [
    21              {
    22                "id": "test-imp-native-id",
    23                "native": {
    24                  "request": "test-native",
    25                  "ver": "1.2"
    26                }
    27              }
    28            ]
    29          },
    30          "impIDs":["test-imp-native-id"]
    31        },
    32        "mockResponse": {
    33          "status": 200,
    34          "body": {
    35            "id": "test-request-id",
    36            "seatbid": [
    37              {
    38                "seat": "adxcg",
    39                "bid": [
    40                  {
    41                    "id": "test-request-native-id",
    42                    "impid": "test-imp-native-id",
    43                    "price": 1.16,
    44                    "adm": "native-ad",
    45                    "w": 1,
    46                    "h": 1,
    47                    "mtype":4
    48                  }
    49                ]
    50              }
    51            ],
    52            "cur": "USD"
    53          }
    54        }
    55      }
    56    ],
    57    "expectedBidResponses": [
    58      {
    59        "currency": "USD",
    60        "bids": [
    61          {
    62            "bid": {
    63              "id": "test-request-native-id",
    64              "impid": "test-imp-native-id",
    65              "price": 1.16,
    66              "adm": "native-ad",
    67              "w": 1,
    68              "h": 1,
    69              "mtype":4
    70            },
    71            "type": "native"
    72          }
    73        ]
    74      }
    75    ]
    76  }