# Process Map Evaluation Checklist

- [ ] Is there a process map for every major user workflow in the FFD?
- [ ] Does each map show the complete flow — from user action to server response to UI update?
- [ ] Are API routes specified with HTTP method (GET, POST, PUT) and payload?
- [ ] Are database writes explicit — which table, which fields?
- [ ] Are error paths documented — what happens when validation fails?
- [ ] Is the state machine complete — every valid transition listed?
- [ ] Are there any "dead ends" — states with no exit path?
- [ ] Are there any impossible transitions — states that shouldn't connect?
- [ ] Could a developer implement each map by reading it line by line without asking questions?
- [ ] Are role-based access checks included — who can trigger each action?
