Evidence by Simulator
Each simulator type produces its own evidence shape. The verification engine dispatches to a check implementation keyed byassertion.assert, and each check pulls evidence from the matching source.
How the Verification Engine Reads Interactions
For each criterion on the task, the engine:- Reads
assertion.assertto pick a check implementation. - Pulls the relevant evidence from the sandbox (a FHIR search against the store, HL7 outbound rows, portal state rows, voice turns, SFTP objects, X12 responses).
- Runs the typed assertion against that evidence.
- Writes a Criterion Run with
passed,score,details, and the evidence it considered.
Reading Interactions
Interactions surface in two places:- Per sandbox:
GET /sandboxes/{id}/eventsreturns the raw event log for a sandbox. Useful for debugging a rollout or authoring new criteria from real traces. - Per criterion run:
GET /criterion-runs/{id}returns the specific evidence the check considered for that criterion, with field-level diffs where applicable.
GET /criterion-runs/{id}.
Retention
Interactions persist after a playground is torn down. Teardown releases the live resources (phone numbers, FHIR stores, portal users) but keeps every recorded event so you can review evidence, debug failed criteria, and compare rollouts across benchmark runs.Next Steps
Verification
How interactions feed the scoring engine.
Sandboxes API
Read the raw event log for any sandbox.