{
  "user": {
    "id": 12345,
    "name": "John Doe",
    "email": "john.doe@example.com",
    "preferences": {
      "language": "English",
      "notifications": {
        "email": true,
        "sms": false,
        "push": true
      },
      "theme": "dark"
    }
  },
  "companies": [
    {
      "id": 1,
      "name": "TechCorp",
      "industry": "Technology",
      "employees": 1200,
      "locations": [
        {
          "city": "New York",
          "country": "USA"
        },
        {
          "city": "London",
          "country": "UK"
        }
      ]
    },
    {
      "id": 2,
      "name": "HealthInc",
      "industry": "Healthcare",
      "employees": 350,
      "locations": [
        {
          "city": "San Francisco",
          "country": "USA"
        },
        {
          "city": "Berlin",
          "country": "Germany"
        }
      ]
    }
  ],
  "questions": [
    {
      "id": 101,
      "text": "What is the revenue of TechCorp?",
      "timestamp": "2025-05-22T10:00:00Z",
      "status": "answered",
      "answer": {
        "type": "text",
        "content": "$500 million in 2024"
      }
    },
    {
      "id": 102,
      "text": "How many employees does HealthInc have?",
      "timestamp": "2025-05-22T10:05:00Z",
      "status": "pending",
      "answer": null
    }
  ],
  "system": {
    "version": "1.0.0",
    "uptime": "48 hours",
    "features": [
      "NLP-based company detection",
      "real-time SSE updates",
      "asynchronous message queuing",
      "data safety checks"
    ],
    "limits": {
      "maxConnections": 500,
      "maxMessageSize": "1MB",
      "timeout": "30s"
    }
  }
}
