github.com/prebid/prebid-server@v0.275.0/adapters/eplanning/eplanningtest/supplemental/app-domain-and-url-correctly-parsed.json (about)

     1  {
     2      "mockBidRequest": {
     3        "id": "test-request-id",
     4        "imp": [
     5          {
     6            "id": "test-imp-id",
     7            "banner": {
     8              "w": 600,
     9              "h": 300
    10            },
    11            "ext": {
    12              "bidder": {
    13                "ci": "12345",
    14                "adunit_code": "test_adunitcode"
    15              }
    16            }
    17          }
    18        ],
    19        "app": {
    20          "id": "[a-f0-9]{16}",
    21          "name": "MobileExchange",
    22          "domain": "sitio.net",
    23          "cat":  ["IAB12"],
    24          "publisher": {
    25            "id": "[a-f0-9]{16}",
    26            "name": "mobile - cliente sitio con exchange activo y ad magic"
    27          },
    28          "bundle": "mx.com.xeu"
    29        },
    30        "device": {
    31          "ua": "test-user-agent",
    32          "ip": "123.123.123.123",
    33          "ifa": "3B8E2335-Z049",
    34          "language": "en",
    35          "dnt": 1
    36        }
    37      },
    38    
    39      "httpCalls": [
    40        {
    41          "expectedRequest": {
    42            "uri": "http://rtb.e-planning.net/pbs/1/12345/1/mx.com.xeu/ROS?app=1&appid=%5Ba-f0-9%5D%7B16%7D&appn=MobileExchange&e=testadunitcode%3A600x300&ifa=3B8E2335-Z049&ip=123.123.123.123&ncb=1",
    43            "body": {}
    44          },
    45          "mockResponse": {
    46            "status": 200,
    47            "body": {
    48              "sI": { "k": "12345" },
    49              "sec": "ROS",
    50              "sp": [
    51                {
    52                  "k": "testadunitcode",
    53                  "a": [{
    54                    "i": "123456789abcdef",
    55                    "pr": "0.5",
    56                    "adm": "<div>test</div>",
    57                    "crid": "abcdef123456789",
    58                    "id": "adid12345",
    59                    "w": 600,
    60                    "h": 300
    61                  }]
    62                }
    63              ]
    64            }
    65          }
    66        }
    67      ],
    68    
    69      "expectedBidResponses": [
    70        {
    71          "currency": "USD",
    72          "bids": [
    73            {
    74              "bid": {
    75                "id": "123456789abcdef",
    76                "impid": "test-imp-id",
    77                "price": 0.5,
    78                "adm": "<div>test</div>",
    79                "adid": "adid12345",
    80                "crid": "abcdef123456789",
    81                "w": 600,
    82                "h": 300
    83              },
    84              "type": "banner"
    85            }
    86          ]
    87        }
    88      ]
    89    }
    90