Skip to content

Auto Insurance Schema

Download Schema

📄 Download Auto Insurance Schema JSON - Complete JSON schema file for validation and integration

Payload Examples

Full Payload Example

{
    "zip": "80112",
    "user-agent": " Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.3 Safari/537.3",
    "referrer": "https://example.com/somepage?someparams",
    "drivers": [{
        "first_name": "firstname",
        "last_name": "lastname",
        "email": "name@example.com",
        "dob": "1978-10-29",
        "address": "123 Main Street",
        "primary_phone": "1234567890",
        "gender": "male",
        "own_or_rent": "own",
        "marital_status": "married",
        "self_credit_rating": "excellent",
        "military_experience": "true",
        "incidents": [
            "INTOXIC",
            "OTHER"
        ]
    }],
    "coverage": {
        "has_coverage": "yes",
        "former_insurer": "country financial",
        "months_insured": 48,
        "bundle": "yes"
    },
    "vehicles": [{
        "year": "2012",
        "make": "dodge",
        "model": "avenger sxt",
        "submodel": "avenger-sedan",
        "vin_stub": "1C3CDZEG0CN000000",
        "annual_mileage": 190000
    }, {
        "year": "2005",
        "make": "DODGE",
        "model": "CARAVAN SE",
        "submodel": "CARAVAN-VAN PASSENGER",
        "vin_stub": "1D8GP25R05B000000",
        "annual_mileage": "250000"
    }],
    "ip_address": "127.0.0.1",
    "tracking": "Any256CharacterTrackingInfoFromPublisher"
}

Minimal Request Example

{
    "zip": "80112",
    "user-agent": " Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.3 Safari/537.3"
}