Product capabilities
Features
Everything required to digitize the provisioning workflow end-to-end.
Adapter pattern
Each HBYS vendor and insurer has its own adapter file. New integration = new file + DB row; engine code never changes. Mock adapters are production-shaped so first-day partner go-live is possible.
Sub-second decision engine
Rule DSL is declarative: when/all/any + eq/in/between operators. No loops, no external IO. Same (request, policy) → same decision; engine_version is stamped on every row.
KVKK and PII minimization
National ID is SHA-256 hash + last 4 digits. Patient health data never leaks cross-org. Your installation runs in Turkiye and the data does not leave it, with an explicit data-processing notice.
Audit + rule_trace
Every state change is recorded in audit_log. Every adjudication writes its rule_trace JSONB: which rule, which coverage, which limit, in what order. Regulator-ready.
Multi-tenant by default
Every business table carries organization_id. Every read / write filters by org_id at the repo layer. IDOR tests are mandatory; cross-tenant access returns 404 (no existence leak).
Durable webhook delivery
Insurer notifications go through outbound_webhook_deliveries. HMAC-SHA256 signed, exponential backoff (60s → 12h), dead_letter after max retries. Admin replay panel for manual retry.
Let's walk through it on a prospect call.
Let's model your own policy plan in a sandbox and watch the flow end to end.