← All challenges

Lookup Tables in Decision Models

April 2024

business-rules

Business decision models often rely on lookup tables that can hold thousands of rows, which raises two practical issues: users need to be able to edit the table data without touching the decision model, and the tables may have hundreds of thousands of rows while still needing to stay fast in production.

This challenge is set in medical claim processing. Each claim includes lists of procedures and diagnoses, each with a type and code. The decision model must validate each claim’s procedure/diagnosis pairs against two standard reference lists:

The decision service needs to stay flexible as the reference lists change, and fast enough to process millions of claims a day.

Send your solutions to DecisionManagementCommunity@gmail.com, or open a pull request to add yours here.

Solutions