{
  "service": {
    "name": "home-gallery",
    "version": "2.8.4",
    "environment": "production",
    "baseUrl": "https://photos.example.local",
    "timezone": "America/Toronto",
    "publicSharingEnabled": true,
    "registrationEnabled": false
  },
  "storage": {
    "libraryPath": "/srv/photos/library",
    "importPath": "/srv/photos/imports",
    "cachePath": "/var/cache/home-gallery",
    "database": {
      "engine": "postgresql",
      "host": "postgres",
      "port": 5432,
      "database": "photos",
      "sslMode": "disable",
      "pool": {
        "minConnections": 2,
        "maxConnections": 20,
        "idleTimeoutSeconds": 300
      }
    },
    "objectStorage": {
      "enabled": false,
      "provider": null,
      "bucket": null
    }
  },
  "mediaProcessing": {
    "workers": 4,
    "thumbnailSizes": [
      {
        "name": "small",
        "width": 320,
        "height": 320,
        "fit": "cover"
      },
      {
        "name": "medium",
        "width": 1024,
        "height": 1024,
        "fit": "inside"
      },
      {
        "name": "large",
        "width": 2048,
        "height": 2048,
        "fit": "inside"
      }
    ],
    "videoTranscoding": {
      "enabled": true,
      "preset": "medium",
      "maxResolution": "1080p",
      "hardwareAcceleration": "vaapi"
    },
    "supportedFormats": {
      "images": ["jpg", "jpeg", "png", "heic", "webp", "tiff", "dng"],
      "videos": ["mp4", "mov", "mkv", "webm"]
    }
  },
  "features": {
    "faceRecognition": {
      "enabled": true,
      "model": "buffalo_l",
      "minimumConfidence": 0.72
    },
    "reverseGeocoding": {
      "enabled": true,
      "provider": "nominatim",
      "cacheDays": 90
    },
    "duplicateDetection": {
      "enabled": true,
      "hashAlgorithm": "phash",
      "threshold": 0.94
    },
    "automaticAlbums": {
      "enabled": true,
      "rules": [
        {
          "name": "Screenshots",
          "match": {
            "source": "filename",
            "pattern": "Screenshot"
          }
        },
        {
          "name": "Favorites",
          "match": {
            "source": "metadata",
            "field": "rating",
            "operator": ">=",
            "value": 4
          }
        }
      ]
    }
  },
  "users": [
    {
      "id": "usr_01J0M4ZB7GMX6NWK9B3NF2R8CP",
      "email": "alex@example.local",
      "displayName": "Alex Morgan",
      "role": "admin",
      "quotaGb": 500,
      "permissions": ["upload", "delete", "share", "manage_users"]
    },
    {
      "id": "usr_01J0M50Q4HZS3VYW8A1AD7PJ9E",
      "email": "sam@example.local",
      "displayName": "Sam Rivera",
      "role": "member",
      "quotaGb": 150,
      "permissions": ["upload", "share"]
    }
  ],
  "recentActivity": [
    {
      "eventId": "evt_01J2S8R8DA4K3VW7BYK6PBRD20",
      "type": "photo_uploaded",
      "userId": "usr_01J0M4ZB7GMX6NWK9B3NF2R8CP",
      "assetId": "asset_20260710_184512_0032",
      "timestamp": "2026-07-10T18:45:12-04:00"
    },
    {
      "eventId": "evt_01J2S8W9TQAXRZWJBB6RDWQPS8",
      "type": "album_shared",
      "userId": "usr_01J0M50Q4HZS3VYW8A1AD7PJ9E",
      "albumId": "alb_family_cottage_2026",
      "timestamp": "2026-07-10T19:03:28-04:00"
    }
  ],
  "albums": [
    {
      "id": "alb_family_cottage_2026",
      "title": "Family Cottage Weekend",
      "description": "Lake trip and barbecue photos from July 2026.",
      "ownerId": "usr_01J0M4ZB7GMX6NWK9B3NF2R8CP",
      "assetCount": 186,
      "coverAssetId": "asset_20260704_142015_0188",
      "visibility": "shared",
      "sharedWith": [
        {
          "email": "sam@example.local",
          "permission": "view"
        }
      ],
      "createdAt": "2026-07-05T09:22:41-04:00",
      "updatedAt": "2026-07-10T19:03:28-04:00"
    }
  ],
  "backup": {
    "enabled": true,
    "schedule": "0 3 * * *",
    "retention": {
      "daily": 7,
      "weekly": 4,
      "monthly": 12
    },
    "targets": [
      {
        "type": "local",
        "path": "/mnt/backup/photos",
        "encrypted": true
      },
      {
        "type": "sftp",
        "host": "backup.example.local",
        "port": 22,
        "path": "/archives/home-gallery",
        "encrypted": true
      }
    ],
    "lastRun": {
      "startedAt": "2026-07-11T03:00:00-04:00",
      "finishedAt": "2026-07-11T03:18:47-04:00",
      "status": "success",
      "filesCopied": 428,
      "bytesCopied": 3912840086
    }
  },
  "health": {
    "status": "ok",
    "checkedAt": "2026-07-11T10:15:22-04:00",
    "components": {
      "database": "ok",
      "storage": "ok",
      "thumbnailQueue": "ok",
      "transcodingQueue": "idle"
    },
    "usage": {
      "totalAssets": 28437,
      "photos": 26390,
      "videos": 2047,
      "librarySizeBytes": 1842938475520,
      "cacheSizeBytes": 38294487040
    }
  }
}