{
  "Logging": {
    "LogLevel": {
      "Default": "Information",
      "Microsoft": "Warning",
      "Microsoft.Hosting.Lifetime": "Information"
    }
  },
  "AllowedHosts": "*",
  "ConnectionStrings": {
    "DefaultConnection": "Server=localhost;Database=ApiApp;Trusted_Connection=true;"
  },
  "AppSettings": {
    "ApiKey": "api-key-67890",
    "BaseUrl": "https://api.example.com",
    "Timeout": 60
  },
  "Security": {
    "JwtSecret": "api-jwt-secret-key",
    "RequireHttps": true
  },
  "Features": {
    "EnableCache": true,
    "EnableLogging": true,
    "EnableMetrics": true
  }
} 