2026-05-09 21:48:36 +00:00
|
|
|
|
"""Pydantic response/request schemas for the HTTP API.
|
|
|
|
|
|
|
|
|
|
|
|
Mirror the SQLAlchemy ORM but keep them de-coupled — the API surface is a
|
|
|
|
|
|
contract for the frontend; we don't want migrations to silently change
|
|
|
|
|
|
JSON shape.
|
|
|
|
|
|
"""
|
|
|
|
|
|
from __future__ import annotations
|
|
|
|
|
|
|
|
|
|
|
|
from datetime import date, datetime
|
|
|
|
|
|
from decimal import Decimal
|
|
|
|
|
|
from typing import Any
|
|
|
|
|
|
|
|
|
|
|
|
from pydantic import BaseModel, ConfigDict, Field
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class _Base(BaseModel):
|
|
|
|
|
|
model_config = ConfigDict(from_attributes=True)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# ── scenarios ────────────────────────────────────────────────────────
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class ScenarioOut(_Base):
|
|
|
|
|
|
id: int
|
|
|
|
|
|
external_id: str
|
|
|
|
|
|
kind: str
|
|
|
|
|
|
name: str | None
|
|
|
|
|
|
description: str | None
|
|
|
|
|
|
parent_scenario_id: int | None
|
|
|
|
|
|
jurisdiction: str
|
|
|
|
|
|
strategy: str
|
|
|
|
|
|
leave_uk_year: int
|
|
|
|
|
|
glide_path: str
|
|
|
|
|
|
spending_gbp: Decimal
|
|
|
|
|
|
horizon_years: int
|
|
|
|
|
|
nw_seed_gbp: Decimal
|
|
|
|
|
|
savings_per_year_gbp: Decimal
|
|
|
|
|
|
config_json: dict[str, Any]
|
|
|
|
|
|
created_at: datetime
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class ScenarioCreate(BaseModel):
|
|
|
|
|
|
"""Body for POST /scenarios — user-defined scenario."""
|
|
|
|
|
|
name: str = Field(min_length=1, max_length=200)
|
|
|
|
|
|
description: str | None = None
|
|
|
|
|
|
parent_scenario_id: int | None = None
|
|
|
|
|
|
jurisdiction: str
|
|
|
|
|
|
strategy: str
|
|
|
|
|
|
leave_uk_year: int = Field(ge=0, le=60)
|
|
|
|
|
|
glide_path: str
|
|
|
|
|
|
spending_gbp: Decimal = Field(gt=0)
|
|
|
|
|
|
horizon_years: int = Field(ge=5, le=100, default=60)
|
|
|
|
|
|
nw_seed_gbp: Decimal = Field(ge=0)
|
|
|
|
|
|
savings_per_year_gbp: Decimal = Field(ge=0, default=Decimal("0"))
|
|
|
|
|
|
config_json: dict[str, Any] = Field(default_factory=dict)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class ScenarioPatch(BaseModel):
|
|
|
|
|
|
"""Body for PATCH /scenarios/{id} — all fields optional."""
|
|
|
|
|
|
name: str | None = None
|
|
|
|
|
|
description: str | None = None
|
|
|
|
|
|
jurisdiction: str | None = None
|
|
|
|
|
|
strategy: str | None = None
|
|
|
|
|
|
leave_uk_year: int | None = None
|
|
|
|
|
|
glide_path: str | None = None
|
|
|
|
|
|
spending_gbp: Decimal | None = None
|
|
|
|
|
|
horizon_years: int | None = None
|
|
|
|
|
|
nw_seed_gbp: Decimal | None = None
|
|
|
|
|
|
savings_per_year_gbp: Decimal | None = None
|
|
|
|
|
|
config_json: dict[str, Any] | None = None
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# ── projections ──────────────────────────────────────────────────────
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class ProjectionPoint(_Base):
|
|
|
|
|
|
year_idx: int
|
|
|
|
|
|
p10_portfolio_gbp: Decimal
|
|
|
|
|
|
p25_portfolio_gbp: Decimal
|
|
|
|
|
|
p50_portfolio_gbp: Decimal
|
|
|
|
|
|
p75_portfolio_gbp: Decimal
|
|
|
|
|
|
p90_portfolio_gbp: Decimal
|
|
|
|
|
|
p50_withdrawal_gbp: Decimal
|
|
|
|
|
|
p50_tax_gbp: Decimal
|
|
|
|
|
|
survival_rate: Decimal
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class ScenarioProjection(BaseModel):
|
|
|
|
|
|
"""Latest MC run + per-year fan-chart series for a scenario."""
|
|
|
|
|
|
scenario_id: int
|
|
|
|
|
|
external_id: str
|
|
|
|
|
|
mc_run_id: int
|
|
|
|
|
|
run_at: datetime
|
|
|
|
|
|
n_paths: int
|
|
|
|
|
|
success_rate: Decimal
|
|
|
|
|
|
p10_ending_gbp: Decimal
|
|
|
|
|
|
p50_ending_gbp: Decimal
|
|
|
|
|
|
p90_ending_gbp: Decimal
|
|
|
|
|
|
median_lifetime_tax_gbp: Decimal
|
|
|
|
|
|
median_years_to_ruin: Decimal | None
|
|
|
|
|
|
yearly: list[ProjectionPoint]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# ── net worth ────────────────────────────────────────────────────────
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class AccountSnapshotOut(_Base):
|
|
|
|
|
|
account_id: str
|
|
|
|
|
|
account_name: str
|
|
|
|
|
|
account_type: str
|
|
|
|
|
|
currency: str
|
|
|
|
|
|
snapshot_date: date
|
|
|
|
|
|
market_value: Decimal
|
|
|
|
|
|
market_value_gbp: Decimal
|
|
|
|
|
|
cost_basis_gbp: Decimal | None
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class NetWorthCurrent(BaseModel):
|
|
|
|
|
|
"""Snapshot at one point in time (latest by default)."""
|
|
|
|
|
|
snapshot_date: date
|
|
|
|
|
|
total_gbp: Decimal
|
|
|
|
|
|
accounts: list[AccountSnapshotOut]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class NetWorthHistoryPoint(BaseModel):
|
|
|
|
|
|
snapshot_date: date
|
|
|
|
|
|
total_gbp: Decimal
|
|
|
|
|
|
by_account: dict[str, Decimal]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class NetWorthHistory(BaseModel):
|
|
|
|
|
|
"""Per-day NW totals + per-account breakdown for a stacked area chart."""
|
|
|
|
|
|
points: list[NetWorthHistoryPoint]
|
|
|
|
|
|
|
|
|
|
|
|
|
2026-05-10 11:11:51 +00:00
|
|
|
|
# ── annual spending (from actualbudget) ──────────────────────────────
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class SpendingMonth(BaseModel):
|
|
|
|
|
|
"""One month's outflows (positive £) by category group, after
|
|
|
|
|
|
income groups have been dropped upstream."""
|
|
|
|
|
|
month: str # "YYYY-MM"
|
|
|
|
|
|
by_group: dict[str, Decimal]
|
|
|
|
|
|
total_gbp: Decimal
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class AnnualSpending(BaseModel):
|
|
|
|
|
|
"""Aggregated trailing-N-month spending pulled from actualbudget.
|
|
|
|
|
|
|
2026-05-10 11:27:22 +00:00
|
|
|
|
`total_gbp` is the headline figure used as the "Annual spending"
|
|
|
|
|
|
default in the WhatIf form. It is **inflation-adjusted to today's
|
|
|
|
|
|
£** (each month's nominal pence revalued forward by
|
|
|
|
|
|
`inflation_pct` compounded monthly), matching the simulator's
|
|
|
|
|
|
real-£ convention.
|
|
|
|
|
|
|
|
|
|
|
|
`nominal_total_gbp` is the same window without inflation
|
|
|
|
|
|
adjustment — for transparency / comparison.
|
|
|
|
|
|
|
|
|
|
|
|
`raw_total_gbp` is the nominal sum *including* groups that were
|
|
|
|
|
|
excluded (e.g. investment transfers) — useful when you want to
|
|
|
|
|
|
see your full cash outflow.
|
2026-05-10 11:11:51 +00:00
|
|
|
|
"""
|
|
|
|
|
|
months: int
|
|
|
|
|
|
window_start: str # "YYYY-MM" (oldest month included)
|
|
|
|
|
|
window_end: str # "YYYY-MM" (newest)
|
|
|
|
|
|
excluded_groups: list[str]
|
2026-05-10 11:27:22 +00:00
|
|
|
|
inflation_pct: Decimal # annual rate applied
|
|
|
|
|
|
total_gbp: Decimal # inflation-adjusted, after exclusions
|
|
|
|
|
|
nominal_total_gbp: Decimal # not adjusted, after exclusions
|
|
|
|
|
|
raw_total_gbp: Decimal # nominal, before exclusions
|
|
|
|
|
|
by_group_total_gbp: dict[str, Decimal] # nominal 12-mo group sums (incl. excluded)
|
2026-05-10 11:11:51 +00:00
|
|
|
|
monthly: list[SpendingMonth]
|
|
|
|
|
|
|
|
|
|
|
|
|
2026-05-09 21:48:36 +00:00
|
|
|
|
# ── life events ──────────────────────────────────────────────────────
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class LifeEventOut(_Base):
|
|
|
|
|
|
id: int
|
|
|
|
|
|
scenario_id: int
|
|
|
|
|
|
kind: str
|
|
|
|
|
|
name: str
|
|
|
|
|
|
year_start: int
|
|
|
|
|
|
year_end: int | None
|
|
|
|
|
|
delta_gbp_per_year: Decimal
|
|
|
|
|
|
one_time_amount_gbp: Decimal | None
|
|
|
|
|
|
enabled: bool
|
|
|
|
|
|
payload: dict[str, Any] | None
|
|
|
|
|
|
created_at: datetime
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class LifeEventCreate(BaseModel):
|
|
|
|
|
|
kind: str
|
|
|
|
|
|
name: str = Field(min_length=1, max_length=200)
|
|
|
|
|
|
year_start: int = Field(ge=0, le=100)
|
|
|
|
|
|
year_end: int | None = Field(default=None, ge=0, le=100)
|
|
|
|
|
|
delta_gbp_per_year: Decimal = Decimal("0")
|
|
|
|
|
|
one_time_amount_gbp: Decimal | None = None
|
|
|
|
|
|
enabled: bool = True
|
|
|
|
|
|
payload: dict[str, Any] | None = None
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class LifeEventPatch(BaseModel):
|
|
|
|
|
|
kind: str | None = None
|
|
|
|
|
|
name: str | None = None
|
|
|
|
|
|
year_start: int | None = None
|
|
|
|
|
|
year_end: int | None = None
|
|
|
|
|
|
delta_gbp_per_year: Decimal | None = None
|
|
|
|
|
|
one_time_amount_gbp: Decimal | None = None
|
|
|
|
|
|
enabled: bool | None = None
|
|
|
|
|
|
payload: dict[str, Any] | None = None
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# ── goals ────────────────────────────────────────────────────────────
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class GoalOut(_Base):
|
|
|
|
|
|
id: int
|
|
|
|
|
|
scenario_id: int
|
|
|
|
|
|
kind: str
|
|
|
|
|
|
name: str
|
|
|
|
|
|
target_amount_gbp: Decimal | None
|
|
|
|
|
|
target_year: int | None
|
|
|
|
|
|
comparator: str
|
|
|
|
|
|
success_threshold: Decimal
|
|
|
|
|
|
enabled: bool
|
|
|
|
|
|
payload: dict[str, Any] | None
|
|
|
|
|
|
created_at: datetime
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class GoalCreate(BaseModel):
|
|
|
|
|
|
kind: str
|
|
|
|
|
|
name: str = Field(min_length=1, max_length=200)
|
|
|
|
|
|
target_amount_gbp: Decimal | None = None
|
|
|
|
|
|
target_year: int | None = Field(default=None, ge=0, le=100)
|
|
|
|
|
|
comparator: str = ">="
|
|
|
|
|
|
success_threshold: Decimal = Field(default=Decimal("0.95"), ge=0, le=1)
|
|
|
|
|
|
enabled: bool = True
|
|
|
|
|
|
payload: dict[str, Any] | None = None
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# ── simulate / compare ───────────────────────────────────────────────
|
|
|
|
|
|
|
|
|
|
|
|
|
engine+api: plumb life events into the simulator
Until now life events were stored but ignored by the engine — pure
metadata. Now they actually move portfolios.
Engine:
- simulator.simulate() takes optional cashflow_adjustments: a (n_years,)
real-GBP array applied each year *after* savings + return but
*before* withdrawal. Positive = inflow, negative = outflow.
- New fire_planner/life_events.py with EventInput dataclass +
events_to_cashflow_array(events, horizon). Handles ranged deltas,
one-time amounts, disabled events, year clipping past horizon,
negative year_start (clipped to 0), and summing multiple events.
API:
- /simulate accepts optional life_events list. Server converts each
to EventInput, builds cashflow_adjustments, passes to simulate().
- Frontend Run-now on scenario detail now fetches the scenario's
life events and includes them in the request — projections finally
reflect "retire at 50, kid born at y3, inheritance at y22".
Tests: 11 events helper + 4 end-to-end engine + 1 API integration =
16 new tests. 188 total (was 172). mypy strict + ruff clean.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-09 22:30:33 +00:00
|
|
|
|
class LifeEventInput(BaseModel):
|
|
|
|
|
|
"""Engine-level event shape — same as the DB row's relevant fields."""
|
|
|
|
|
|
year_start: int = Field(ge=0, le=100)
|
|
|
|
|
|
year_end: int | None = Field(default=None, ge=0, le=100)
|
|
|
|
|
|
delta_gbp_per_year: Decimal = Decimal("0")
|
|
|
|
|
|
one_time_amount_gbp: Decimal | None = None
|
|
|
|
|
|
enabled: bool = True
|
|
|
|
|
|
|
|
|
|
|
|
|
2026-05-09 21:48:36 +00:00
|
|
|
|
class SimulateRequest(BaseModel):
|
2026-05-10 01:51:24 +00:00
|
|
|
|
"""Sync, non-persisted simulate. Used by the React UI for what-if.
|
|
|
|
|
|
|
|
|
|
|
|
Allocation is hardcoded to 100% stocks at the engine layer
|
|
|
|
|
|
(`api/simulate.py::_project`). The UI removed the glide-path knob
|
|
|
|
|
|
in 2026-05; persisted Cartesian scenarios still carry their own
|
|
|
|
|
|
`glide_path` string on the `scenario` table.
|
|
|
|
|
|
"""
|
2026-05-09 21:48:36 +00:00
|
|
|
|
jurisdiction: str
|
|
|
|
|
|
strategy: str
|
|
|
|
|
|
leave_uk_year: int = Field(ge=0, le=60)
|
|
|
|
|
|
spending_gbp: Decimal = Field(gt=0)
|
|
|
|
|
|
nw_seed_gbp: Decimal = Field(ge=0)
|
|
|
|
|
|
savings_per_year_gbp: Decimal = Decimal("0")
|
|
|
|
|
|
horizon_years: int = Field(ge=5, le=100, default=60)
|
|
|
|
|
|
floor_gbp: Decimal | None = None
|
|
|
|
|
|
n_paths: int = Field(ge=100, le=50_000, default=5_000)
|
|
|
|
|
|
seed: int = 42
|
engine+api: plumb life events into the simulator
Until now life events were stored but ignored by the engine — pure
metadata. Now they actually move portfolios.
Engine:
- simulator.simulate() takes optional cashflow_adjustments: a (n_years,)
real-GBP array applied each year *after* savings + return but
*before* withdrawal. Positive = inflow, negative = outflow.
- New fire_planner/life_events.py with EventInput dataclass +
events_to_cashflow_array(events, horizon). Handles ranged deltas,
one-time amounts, disabled events, year clipping past horizon,
negative year_start (clipped to 0), and summing multiple events.
API:
- /simulate accepts optional life_events list. Server converts each
to EventInput, builds cashflow_adjustments, passes to simulate().
- Frontend Run-now on scenario detail now fetches the scenario's
life events and includes them in the request — projections finally
reflect "retire at 50, kid born at y3, inheritance at y22".
Tests: 11 events helper + 4 end-to-end engine + 1 API integration =
16 new tests. 188 total (was 172). mypy strict + ruff clean.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-09 22:30:33 +00:00
|
|
|
|
life_events: list[LifeEventInput] = Field(default_factory=list)
|
returns: 3 models — Shiller bootstrap (default), manual %, Wealthfolio history
Adds a "Returns model" picker on /what-if that switches how the
simulator's `paths` (n_paths × n_years × 3) is built:
1. shiller (default) — current behaviour, block-bootstrap of the
Shiller 1871+ historical series (or its synthetic-calibrated
fallback when the CSV isn't mounted).
2. manual — every year of every path = the user's "real return %"
input. Deterministic, no fan, useful for sanity checks. New
helper `constant_real_return_paths` constructs the (n_paths,
n_years, 3) tensor with stock=bond=real, cpi=0 so the simulator's
`(1+nominal)/(1+cpi)-1` short-circuits to exactly the input.
3. wealthfolio — pulls daily_account_valuation from the wealthfolio_sync
PG mirror, sums total_value + net_contribution across accounts per
day (FX-adjusted), strips contribution deltas to isolate market
return, compounds daily returns into per-calendar-year samples,
block-bootstraps with block_size=1 (only ~6 distinct samples
available, no serial-correlation signal to preserve). Glide path
is a no-op in this mode — the user's actual blended portfolio is
treated as a single asset.
API: SimulateRequest gains `returns_mode` ("shiller"|"manual"|
"wealthfolio") + `manual_real_return_pct`. simulate.py's `_build_paths`
dispatches; wealthfolio mode opens a transient session against the
mirror DB.
UI: new Field on the form (next to Strategy / Glide path) with a
contextual hint that explains each option's tradeoff. The "About the
model" panel at the bottom now has a "Returns model" section
mirroring the same content. The Manual % input only shows when
returns_mode='manual'.
10 new tests on the Wealthfolio helper (contribution-stripping,
multi-account aggregation, FX, partial-year drop, TOTAL filter,
empty-input, plus 3 deterministic-paths tests). 198 backend tests +
7 frontend tests. mypy strict + ruff + tsc strict all pass.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-10 01:04:25 +00:00
|
|
|
|
# Returns model — controls how `paths` (n_paths × n_years × 3) is built:
|
|
|
|
|
|
# "shiller" — block-bootstrap of Shiller 1871+ historical returns
|
|
|
|
|
|
# (or the synthetic Shiller-calibrated stream when the
|
|
|
|
|
|
# CSV isn't mounted). The default; broadest regime
|
|
|
|
|
|
# coverage including 1929/1973/2000/2008.
|
|
|
|
|
|
# "manual" — every year of every path = `manual_real_return_pct`.
|
|
|
|
|
|
# Deterministic, no fan, useful for sanity checks.
|
|
|
|
|
|
# "wealthfolio" — block-bootstrap of the user's actual blended real
|
|
|
|
|
|
# returns derived from wealthfolio_sync. Reflects the
|
|
|
|
|
|
# recent regime only (~6 years). Glide path is moot.
|
|
|
|
|
|
returns_mode: str = Field(default="shiller", pattern="^(shiller|manual|wealthfolio)$")
|
|
|
|
|
|
manual_real_return_pct: Decimal | None = None
|
strategies: spending input is honoured + new "Custom" preset with guardrails
The user noticed the "Annual spending" field was a no-op for Trinity,
GK, VPW, VPW+floor — the strategies internally hardcoded the year-0
withdrawal as `initial_portfolio × initial_rate` (4% / 5.5%) and
ignored what the user typed. Two fixes:
(1) Trinity + GK now use state.initial_withdrawal (= the user's
spending_target) as the year-0 draw. GK's guardrail anchor
becomes the implied initial rate (initial_withdrawal /
initial_portfolio), so the rule shape adapts to the user's
chosen rate. Both strategies still fall back to their preset
rate × initial_portfolio when initial_withdrawal isn't set
(test paths). VPW and VPW+floor stay algorithmic — they're
"withdraw-what's-sustainable" by design and don't take a
spending input.
(2) New "custom" preset (SpendingPlanStrategy) exposing all the
knobs:
- initial_spend = "Annual spending" input
- annual_real_adjust_pct = scale last year's withdrawal by N%
each year (0 = constant real £, +0.02 = 2%/yr healthcare
creep, -0.005 = -0.5%/yr slow-down with age)
- guardrail_threshold_pct = if portfolio falls below X% of
starting NW, trigger a cut (None = disabled)
- guardrail_cut_pct = cut last year's withdrawal by Y% each
triggered year
Adjust applies first, then guardrail cut — so a triggered year in
+2% adjust mode goes 40k → 40.8k → 36.7k.
UI: "custom" added to the strategy dropdown; when selected, three
extra fields appear (annual real adjustment %, guardrail trigger
threshold, guardrail cut size) with hints. The existing inputs
(spending, NW seed) drive year 0 across all strategies that use
them. About-the-model panel updated.
10 new tests on SpendingPlanStrategy + adjusted GK tests for the
new spending_target-aware behaviour. 209 backend tests + 7
frontend tests. mypy + ruff + tsc all pass.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-10 01:21:55 +00:00
|
|
|
|
# Custom spending-plan parameters — only consulted when strategy="custom".
|
|
|
|
|
|
# All real-£ / real-fraction. annual_real_adjust_pct = 0 means constant
|
|
|
|
|
|
# real spending (Trinity-shape). Non-zero scales last year's withdrawal
|
|
|
|
|
|
# multiplicatively each year (e.g. -0.005 for slow-down with age,
|
|
|
|
|
|
# +0.02 for healthcare creep). Guardrail cuts spending by
|
|
|
|
|
|
# `guardrail_cut_pct` whenever the portfolio falls below
|
|
|
|
|
|
# `guardrail_threshold_pct` of its starting value; null disables.
|
|
|
|
|
|
annual_real_adjust_pct: Decimal = Decimal("0")
|
|
|
|
|
|
guardrail_threshold_pct: Decimal | None = None
|
|
|
|
|
|
guardrail_cut_pct: Decimal = Decimal("0.10")
|
2026-05-09 21:48:36 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class SimulateResult(BaseModel):
|
|
|
|
|
|
success_rate: Decimal
|
|
|
|
|
|
p10_ending_gbp: Decimal
|
|
|
|
|
|
p50_ending_gbp: Decimal
|
|
|
|
|
|
p90_ending_gbp: Decimal
|
|
|
|
|
|
median_lifetime_tax_gbp: Decimal
|
|
|
|
|
|
median_years_to_ruin: Decimal | None
|
|
|
|
|
|
elapsed_seconds: Decimal
|
|
|
|
|
|
yearly: list[ProjectionPoint]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class CompareRequest(BaseModel):
|
|
|
|
|
|
scenarios: list[SimulateRequest] = Field(min_length=2, max_length=5)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class CompareResult(BaseModel):
|
|
|
|
|
|
results: list[SimulateResult]
|