{
    "user": {
        "name": "John Doe",
        "age": 32,
        "email": "johndoe@example.com",
        "is_active": True,
        "balance": 99.95,
        "skills": ["Python", "Django", "JavaScript"],
        "address": {
            "street": "1234 Elm Street",
            "city": "Somewhere",
            "state": "CA",
            "zip": "90210"
        },
        "preferences": {
            "contact": "email",
            "language": "English"
        }
    },
    "products": [
        {"id": 1, "name": "Widget", "in_stock": True},
        {"id": 2, "name": "Gadget", "in_stock": False},
        {"id": 3, "name": "Thingamajig", "in_stock": True}
    ],
    "timestamp": "2023-02-07T12:34:56",
    "notes": None
}
