{
  "project": "FileDummy Sample",
  "version": "1.0.0",
  "description": "A sample JSON file for testing JSON parsers and APIs",
  "metadata": {
    "created": "2026-06-21T05:28:00.920Z",
    "author": "FileDummy",
    "license": "MIT"
  },
  "config": {
    "debug": true,
    "port": 3000,
    "features": [
      "authentication",
      "logging",
      "caching"
    ],
    "database": {
      "host": "localhost",
      "port": 5432,
      "name": "testdb",
      "poolSize": 10
    }
  },
  "users": [
    {
      "id": 1,
      "name": "Alice",
      "role": "admin",
      "active": true
    },
    {
      "id": 2,
      "name": "Bob",
      "role": "user",
      "active": true
    },
    {
      "id": 3,
      "name": "Charlie",
      "role": "user",
      "active": false
    }
  ],
  "stats": {
    "totalUsers": 3,
    "activeSessions": 12,
    "uptime": "99.98%"
  },
  "nested": {
    "level1": {
      "level2": {
        "level3": {
          "value": 42,
          "message": "Deeply nested data test"
        }
      }
    }
  },
  "tags": [
    "sample",
    "test",
    "json",
    "dummy"
  ],
  "nullable": null,
  "boolean": true,
  "float": 3.141592653589793
}