user_signed_upWhich signup cohorts activate and retain?
A durable account-entry event with acquisition and plan context. Keep identity pseudonymous and capture marketing attribution only after privacy review.
- Grain
- One accepted signup per user and account.
- Owner
- Identity or onboarding service
- Emit when
- After the account and first user are committed successfully.
| Field | Type | Required | Privacy | Meaning |
|---|---|---|---|---|
| timestamp_utc | timestamp | yes | non-sensitive | UTC time at the outcome boundary. |
| event_id | string | yes | non-sensitive | Stable unique identifier used for deduplication. |
| account_id | string | yes | pseudonymous | Stable internal account identifier, never an email or name. |
| release | string | yes | non-sensitive | Application or service version that emitted the event. |
| user_id | string | yes | pseudonymous | Stable internal user identifier. |
| plan | string | yes | non-sensitive | Plan selected at signup. |
| acquisition_channel | string | no | review | Low-cardinality, consent-compatible acquisition source. |
Synthetic JSON event
{
"timestamp_utc": "2026-07-28T14:03:00Z",
"event_id": "evt_signup_01",
"account_id": "acct_8f31",
"release": "2026.07.2",
"user_id": "user_91ac",
"plan": "growth",
"acquisition_channel": "organic"
}