github.com/prebid/prebid-server@v0.275.0/adapters/adnuntius/adnuntiustest/supplemental/check-order-multi-imp.json (about)

     1  {
     2  	"mockBidRequest": {
     3  		"id": "test-request-id",
     4  		"site": {
     5  			"page": "prebid.org"
     6  		},
     7  		"imp": [
     8  			{
     9  				"id": "test-imp-id",
    10  				"banner": {
    11  					"format": [
    12  						{
    13  							"w": 300,
    14  							"h": 250
    15  						},
    16  						{
    17  							"w": 300,
    18  							"h": 600
    19  						}
    20  					]
    21  				},
    22  				"ext": {
    23  					"bidder": {
    24  						"auId": "123"
    25  					}
    26  				}
    27  			},
    28  			{
    29  				"id": "test-imp-id-2",
    30  				"banner": {
    31  					"format": [
    32  						{
    33  							"w": 300,
    34  							"h": 250
    35  						},
    36  						{
    37  							"w": 300,
    38  							"h": 600
    39  						}
    40  					]
    41  				},
    42  				"ext": {
    43  					"bidder": {
    44  						"auId": "456"
    45  					}
    46  				}
    47  			}
    48  		]
    49  	},
    50  	
    51  	"httpCalls": [
    52  		{
    53  			"expectedRequest": {
    54  				"uri": "http://whatever.url?format=json&tzo=0",
    55  				"body": {
    56  					"adUnits": [
    57  						{
    58  							"auId": "123",
    59  							"targetId": "123-test-imp-id",
    60  							"dimensions": [[300,250],[300,600]]
    61  						},
    62              {
    63  							"auId": "456",
    64  							"targetId": "456-test-imp-id-2",
    65  							"dimensions": [[300,250],[300,600]]
    66  						}
    67  					],
    68  					"context": "prebid.org",
    69  					"metaData": {}
    70  				}
    71  			},
    72  			"mockResponse": {
    73  				"status": 200,
    74  				"body": {
    75  					"adUnits": [
    76              {
    77  							"auId": "0000000000000456",
    78  							"targetId": "456-test-imp-id-2",
    79  							"html": "<ADCODE>",
    80  							"responseId": "adn-rsp-900646517",
    81  							"ads": [
    82  								{
    83  									"destinationUrls": {
    84  										"url": "http://www.google.com"
    85  									},
    86  									"bid": {
    87  										"amount": 20.0,
    88  										"currency": "NOK"
    89  									},
    90  									"adId": "adn-id-1559784095",
    91  									"creativeWidth": "980",
    92  									"creativeHeight": "240",
    93  									"creativeId": "jn9hpzvlsf8cpdmm",
    94  									"lineItemId": "q7y9qm5b0xt9htrv"
    95  								}
    96  							]
    97  						},
    98  						{
    99  							"auId": "0000000000000123",
   100  							"targetId": "123-test-imp-id",
   101  							"html": "<ADCODE>",
   102  							"responseId": "adn-rsp-900646517",
   103  							"ads": [
   104  								{
   105  									"destinationUrls": {
   106  										"url": "http://www.google.com"
   107  									},
   108  									"bid": {
   109  										"amount": 20.0,
   110  										"currency": "NOK"
   111  									},
   112  									"adId": "adn-id-1559784094",
   113  									"creativeWidth": "980",
   114  									"creativeHeight": "240",
   115  									"creativeId": "jn9hpzvlsf8cpdmm",
   116  									"lineItemId": "q7y9qm5b0xt9htrv"
   117  								}
   118  							]
   119  						}
   120  					]
   121  				}
   122  			}
   123  		}
   124  	],
   125  	"expectedBidResponses": [
   126  		{
   127  			"bids": [
   128  				{
   129  					"bid": {
   130  						"id": "adn-id-1559784094",
   131  						"impid": "test-imp-id",
   132  						"price": 20000,
   133  						"adm": "<ADCODE>",
   134  						"adid": "adn-id-1559784094",
   135  						"adomain": ["google.com"],
   136  						"cid": "q7y9qm5b0xt9htrv",
   137  						"crid": "jn9hpzvlsf8cpdmm",
   138  						"w": 980,
   139  						"h": 240
   140  					},
   141  					"type": "banner"
   142  				},
   143          {
   144  					"bid": {
   145  						"id": "adn-id-1559784095",
   146  						"impid": "test-imp-id-2",
   147  						"price": 20000,
   148  						"adm": "<ADCODE>",
   149  						"adid": "adn-id-1559784095",
   150  						"adomain": ["google.com"],
   151  						"cid": "q7y9qm5b0xt9htrv",
   152  						"crid": "jn9hpzvlsf8cpdmm",
   153  						"w": 980,
   154  						"h": 240
   155  					},
   156  					"type": "banner"
   157  				}
   158  			],
   159  			"currency": "NOK"
   160  		}
   161  	
   162      ]
   163  }