{
  "settings": {
    "theme": "dark",
    "currency": "EUR",
    "budgetLimit": 2500,
    "region": "Berlin",
    "language": "auto"
  },
  "budget": {
    "items": [
      {
        "id": "budget-1",
        "description": "Miete",
        "amount": 900,
        "type": "expense",
        "category": "Haushalt",
        "fixedCost": true,
        "interval": "monthly"
      },
      {
        "id": "budget-2",
        "description": "Strom",
        "amount": 80,
        "type": "expense",
        "category": "Haushalt"
      },
      {
        "id": "budget-3",
        "description": "Nebenjob",
        "amount": 1200,
        "type": "income",
        "category": "Einnahme"
      }
    ],
    "fixedCosts": [
      {
        "id": "fixed-1",
        "description": "Internet",
        "amount": 30,
        "type": "expense",
        "category": "Haushalt",
        "fixedCost": true,
        "interval": "monthly"
      }
    ]
  },
  "nutrition": {
    "meals": [
      {
        "id": "meal-1",
        "name": "Frühstück",
        "calories": 450,
        "protein": 22,
        "carbs": 55,
        "fat": 15
      },
      {
        "id": "meal-2",
        "name": "Mittagessen",
        "calories": 620,
        "protein": 30,
        "carbs": 70,
        "fat": 18
      }
    ]
  },
  "shopping": {
    "items": [
      {
        "id": "shop-1",
        "item": "Milch",
        "quantity": "2"
      },
      {
        "id": "shop-2",
        "item": "Bananen",
        "quantity": "6"
      }
    ]
  },
  "inventory": {
    "items": [
      {
        "id": "inv-1",
        "name": "Reis",
        "quantity": 2,
        "expiry": "2027-01-01"
      },
      {
        "id": "inv-2",
        "name": "Mehl",
        "quantity": 1,
        "expiry": "2027-04-20"
      }
    ]
  },
  "health": {
    "consent": true,
    "sources": ["manual", "apple-health"],
    "records": [
      {
        "id": "health-1",
        "source": "manual",
        "sleep": 7.4,
        "water": 2.2,
        "steps": 10800,
        "heartRate": 70,
        "calories": 2150
      },
      {
        "id": "health-2",
        "source": "apple-health",
        "sleep": 7.9,
        "water": 2.5,
        "steps": 9400,
        "heartRate": 68,
        "calories": 1850
      }
    ]
  }
}
