{
  "app": {
    "name": "CreatorOS",
    "version": "1.0.0",
    "description": "A personal knowledge and project management system for creators."
  },
  "user": {
    "id": "u_001",
    "name": "Alex Creator",
    "email": "alex@example.com",
    "joinedAt": "2026-02-25T10:30:00Z",
    "preferences": {
      "theme": "dark",
      "notifications": true,
      "language": "en"
    }
  },
  "projects": [
    {
      "id": "p_101",
      "title": "Build Portfolio Website",
      "status": "in-progress",
      "priority": "high",
      "createdAt": "2026-02-20T09:00:00Z",
      "dueDate": "2026-03-15",
      "tags": ["web", "personal-brand"],
      "tasks": [
        {
          "id": "t_1",
          "title": "Design homepage layout",
          "completed": true
        },
        {
          "id": "t_2",
          "title": "Implement responsive design",
          "completed": false
        }
      ]
    }
  ],
  "notes": [
    {
      "id": "n_501",
      "title": "Startup Ideas",
      "content": "A platform that helps creators track daily progress publicly.",
      "createdAt": "2026-02-22T14:45:00Z",
      "tags": ["ideas", "startup"]
    }
  ],
  "habits": [
    {
      "id": "h_301",
      "name": "Write 500 words",
      "frequency": "daily",
      "streak": 12,
      "lastCompleted": "2026-02-24"
    }
  ],
  "analytics": {
    "totalProjects": 1,
    "completedTasks": 1,
    "activeHabits": 1
  }
}