summary object that condenses the underlying signals into three fields you can act on directly: risk_score, risk_level, and action.
The summary object
risk_score: an integer from0(safe) to100(highest risk).risk_level: a coarse bucket derived from the score, one oflow,medium, orhigh.action: the recommended enforcement decision, one ofALLOWorBLOCK.
Risk levels
Exact thresholds can shift as AuthFlame updates its models. Prefer branching on
summary.action unless you need fine-grained control.Recommended actions
summary.action is AuthFlame’s opinion about what your signup flow should do.
-
ALLOW: proceed with account creation. -
BLOCK: reject the signup. Show a generic error so you don’t leak which signal tripped.
Rolling your own thresholds
If you need custom behavior (for example, blocking anything above85 on a free-trial signup) branch on summary.risk_score directly and ignore action. The score is stable across time for the same input signals, so it’s safe to use in your own rules engine..png?fit=max&auto=format&n=I1VHCABaGN8XUrA3&q=85&s=a6ef4d31dcedaa6714272989ceab62a2)
.png?fit=max&auto=format&n=I1VHCABaGN8XUrA3&q=85&s=d9708474bd0c0cd8c6223006c4baeca5)