-->
Official Metric Documentation
Created through
Metric Harmony Alignment Process
Percent of clients who fully cancel.
Percent of recurring revenue (MRR) lost due to cancellations or contract non-renewals.
Official board-level churn is published monthly, though some advanced analytics might use rolling 30-day windows or a quarterly approach.
Customers who fully cancel any real-estate analytics subscription and non-renewals at the end of an annual contract.
SQL Snippet (Giga Innovate's subscription DB):
WITH start_mrr AS (
SELECT SUM(
CASE
WHEN billing_cycle = 'annual' THEN (amount / 12)
ELSE amount
END
) AS mrr_start
FROM sub_analytics
WHERE status = 'active'
AND period_label = 'start_of_month'
),
lost_mrr AS (
SELECT SUM(
CASE
WHEN billing_cycle = 'annual' THEN (amount / 12)
ELSE amount
END
) AS mrr_lost
FROM sub_analytics
WHERE status = 'canceled'
AND canceled_in_month = 'October'
)
SELECT
(lost_mrr.mrr_lost / start_mrr.mrr_start) * 100 AS revenue_churn_rate
FROM start_mrr, lost_mrr;
In ML, Aurora Milton's team feeds the same cancellation flags into churn prediction models to ensure consistency between finance and product analytics.
Giga Innovate's main subscription table (fields include status, billing_cycle, amount, cancel_date).
Finance transforms data for monthly reports; ML/analytics use near-real-time feeds.
Official churn rate is reported monthly; ML uses rolling 30-day windows.
Documentation is reviewed quarterly; official churn is published monthly.
Proposed changes must be approved by both the CFO and ML lead.
Date | Change | Approved By |
---|---|---|
2024-01-05 | Created official churn doc—excludes downgrades, includes annual plan non-renewals. | Fiona Caldwell (CFO), Aurora Milton |
2024-03-15 | Added partial-month rule for cancellations and alignment with ML prediction pipeline. | Fiona Caldwell, Aurora Milton |
This definition is for Giga Innovate's internal and investor-related reporting. It may not mirror GAAP/IFRS revenue recognition. Data relies on our "Sub_Analytics" pipeline. For advanced ML triggers, partial-day or partial-month changes may appear in near-real-time, but official churn stands monthly under CFO approval.
By clarifying how mid-month cancellations, annual deals, and downgrades are treated, Giga Innovate's CFO and ML teams no longer produce contradictory churn figures. CFO Fiona Caldwell has final sign-off for board reporting, while Aurora Milton's ML pipeline references the exact same cancellation flags. This alignment ensures product analytics match finance's official churn definition—removing previous confusion over partial cancellations.