{
    "company": "Acme Corp.",
    "founded": 2019,
    "active": true,
    "headquarters": {
        "city": "San Francisco",
        "state": "CA",
        "country": "US",
        "coordinates": {
            "lat": 37.7749,
            "lng": -122.4194
        }
    },
    "config": {
        "database": {
            "host": "db.acme.test",
            "port": 5432,
            "ssl": true,
            "replicas": [
                "replica-1.db.io",
                "replica-2.db.io"
            ]
        },
        "cache": {
            "engine": "redis",
            "ttl": 3600,
            "enabled": true
        },
        "features": {
            "darkMode": true,
            "notifications": true,
            "betaAccess": false
        }
    },
    "employees": [
        {
            "id": 1,
            "name": "Alice Johnson",
            "email": "alice@acme.test",
            "age": 32,
            "role": "Engineering Lead",
            "department": "Engineering",
            "salary": 145000,
            "active": true,
            "skills": [
                "TypeScript",
                "React",
                "Node.js",
                "PostgreSQL"
            ],
            "address": {
                "street": "123 Market St",
                "city": "San Francisco",
                "zip": "94105"
            },
            "projects": [
                {
                    "name": "Dashboard v2",
                    "status": "completed",
                    "hours": 320
                },
                {
                    "name": "API Gateway",
                    "status": "in_progress",
                    "hours": 150
                }
            ]
        },
        {
            "id": 2,
            "name": "Bob Chen",
            "email": "bob@acme.test",
            "age": 28,
            "role": "Frontend Developer",
            "department": "Engineering",
            "salary": 120000,
            "active": true,
            "skills": [
                "JavaScript",
                "Vue.js",
                "CSS",
                "Figma"
            ],
            "address": {
                "street": "456 Mission St",
                "city": "San Francisco",
                "zip": "94103"
            },
            "projects": [
                {
                    "name": "Landing Page",
                    "status": "completed",
                    "hours": 80
                },
                {
                    "name": "Dashboard v2",
                    "status": "in_progress",
                    "hours": 200
                }
            ]
        },
        {
            "id": 3,
            "name": "Carol Martinez",
            "email": "carol@acme.test",
            "age": 35,
            "role": "Data Scientist",
            "department": "Data",
            "salary": 155000,
            "active": true,
            "skills": [
                "Python",
                "TensorFlow",
                "SQL",
                "Spark"
            ],
            "address": {
                "street": "789 Howard St",
                "city": "Oakland",
                "zip": "94607"
            },
            "projects": [
                {
                    "name": "ML Pipeline",
                    "status": "in_progress",
                    "hours": 400
                },
                {
                    "name": "Analytics Dashboard",
                    "status": "planned",
                    "hours": 0
                }
            ]
        },
        {
            "id": 4,
            "name": "David Kim",
            "email": "david@acme.test",
            "age": 24,
            "role": "Junior Developer",
            "department": "Engineering",
            "salary": 85000,
            "active": true,
            "skills": [
                "Go",
                "Docker",
                "Kubernetes"
            ],
            "address": {
                "street": "321 Folsom St",
                "city": "San Francisco",
                "zip": "94105"
            },
            "projects": [
                {
                    "name": "API Gateway",
                    "status": "in_progress",
                    "hours": 90
                }
            ]
        },
        {
            "id": 5,
            "name": "Eve Wilson",
            "email": "eve@acme.test",
            "age": 41,
            "role": "VP of Product",
            "department": "Product",
            "salary": 190000,
            "active": true,
            "skills": [
                "Strategy",
                "Analytics",
                "Leadership"
            ],
            "address": {
                "street": "555 California St",
                "city": "San Francisco",
                "zip": "94104"
            },
            "projects": [
                {
                    "name": "Q3 Roadmap",
                    "status": "completed",
                    "hours": 60
                },
                {
                    "name": "Enterprise Tier",
                    "status": "planned",
                    "hours": 0
                }
            ]
        },
        {
            "id": 6,
            "name": "Frank Nguyen",
            "email": "frank@acme.test",
            "age": 30,
            "role": "DevOps Engineer",
            "department": "Engineering",
            "salary": 135000,
            "active": false,
            "skills": [
                "AWS",
                "Terraform",
                "CI/CD",
                "Linux"
            ],
            "address": {
                "street": "888 Brannan St",
                "city": "San Francisco",
                "zip": "94103"
            },
            "projects": [
                {
                    "name": "Cloud Migration",
                    "status": "completed",
                    "hours": 500
                }
            ]
        }
    ],
    "products": [
        {
            "id": "prod_001",
            "name": "NovaDash",
            "category": "Analytics",
            "price": 49.99,
            "currency": "USD",
            "inStock": true,
            "rating": 4.7,
            "reviews": 234,
            "tags": [
                "dashboard",
                "analytics",
                "real-time"
            ],
            "metadata": null
        },
        {
            "id": "prod_002",
            "name": "NovaAPI",
            "category": "Infrastructure",
            "price": 99.00,
            "currency": "USD",
            "inStock": true,
            "rating": 4.3,
            "reviews": 89,
            "tags": [
                "api",
                "gateway",
                "security"
            ],
            "metadata": {
                "version": "2.1.0",
                "deprecated": false
            }
        },
        {
            "id": "prod_003",
            "name": "NovaML",
            "category": "AI/ML",
            "price": 199.00,
            "currency": "USD",
            "inStock": false,
            "rating": 4.9,
            "reviews": 56,
            "tags": [
                "machine-learning",
                "prediction",
                "automation"
            ],
            "metadata": {
                "version": "0.9.0-beta",
                "deprecated": false
            }
        }
    ],
    "stats": {
        "totalRevenue": 2847500,
        "monthlyActiveUsers": 14200,
        "uptime": 99.97,
        "responseTimeMs": 42,
        "errorRate": 0.003,
        "regions": [
            "us-west-1",
            "eu-west-1",
            "ap-southeast-1"
        ]
    },
    "changelog": [
        {
            "version": "1.3.0",
            "date": "2025-12-01",
            "changes": "Added query engine with Path/SQL/MongoDB support"
        },
        {
            "version": "1.2.0",
            "date": "2025-10-15",
            "changes": "Dark/light theme toggle"
        },
        {
            "version": "1.1.0",
            "date": "2025-08-20",
            "changes": "Collapsible tree view with search"
        },
        {
            "version": "1.0.0",
            "date": "2025-06-01",
            "changes": "Initial release with JSON formatting"
        }
    ],
    "nullField": null,
    "emptyObject": {},
    "emptyArray": []
}