{
    "mockBidRequest": {
        "id": "test-request-id",
        "imp": [
            {
                "id": "test-imp-id",
                "banner": {
                    "w": 300,
                    "h": 250
                },
                "ext": {
                    "bidder": {
                        "cid": "TCID",
                        "crid": "1234"
                    }
                }
            }
        ],
        "site": {
            "domain": "www.example.com",
            "page": "http://www.example.com",
            "publisher": {
                "domain": "example.com"
            },
            "ext": {
                "amp": 0
            }
        },
        "device": {
            "ua": "userAgent",
            "ip": "193.168.244.1"
        },
        "at": 1,
        "tmax": 5000,
        "cur": [
            "USD"
        ],
        "regs": {
            "ext": {
                "gdpr": 0
            }
        }
    },
    "httpCalls": [
        {
            "expectedRequest": {
                "uri": "https://example.aax.media/rtb/prebid?src=http%3A%2F%2Flocalhost%3A8080%2Fextrnal_url",
                "body": {
                    "id": "test-request-id",
                    "imp": [
                        {
                            "id": "test-imp-id",
                            "banner": {
                                "w": 300,
                                "h": 250
                            },
                            "ext": {
                                "bidder": {
                                    "cid": "TCID",
                                    "crid": "1234"
                                }
                            }
                        }
                    ],
                    "site": {
                        "domain": "www.example.com",
                        "page": "http://www.example.com",
                        "publisher": {
                            "domain": "example.com"
                        },
                        "ext": {
                            "amp": 0
                        }
                    },
                    "device": {
                        "ua": "userAgent",
                        "ip": "193.168.244.1"
                    },
                    "at": 1,
                    "tmax": 5000,
                    "cur": [
                        "USD"
                    ],
                    "regs": {
                        "ext": {
                            "gdpr": 0
                        }
                    }
                },
                "impIDs":["test-imp-id"]
            },
            "mockResponse": {
                "status": 200,
                "body": {
                    "id": "tid",
                    "seatbid": [
                        {
                            "seat": "aax",
                            "bid": [
                                {
                                    "id": "randomid",
                                    "impid": "test-imp-id",
                                    "price": 0.500000,
                                    "adid": "12345678",
                                    "adm": "some-test-ad",
                                    "cid": "987",
                                    "crid": "12345678",
                                    "h": 250,
                                    "w": 300
                                }
                            ]
                        }
                    ],
                    "bidid": "bid01"
                }
            }
        }
    ],
    "expectedBidResponses": [
        {
            "currency": "USD",
            "bids": [
                {
                    "bid": {
                        "id": "randomid",
                        "impid": "test-imp-id",
                        "price": 0.500000,
                        "adid": "12345678",
                        "adm": "some-test-ad",
                        "cid": "987",
                        "crid": "12345678",
                        "h": 250,
                        "w": 300
                    },
                    "type": "banner"
                }
            ]
        }
    ]
}