What everything in GVN means: report statuses, the review notices, how locking works, and what reviewers do behind the scenes — plus answers to the questions submitters ask most. New here? The Demo Quickstart walks you through your first report in five minutes; this page is the reference you come back to.
Every report in your cabinet carries one status:
| Status | What it means |
|---|---|
| Submitted | The report is recorded and on file, waiting for the automated checks to pick it up. |
| Processing | The automated checks are running — right after submission, and again after each correction. |
| In review | The checks have run and the report is open: you can submit corrections (up to 3). If a check flagged the report, a reviewer may step in — the notices below tell you when that happens. |
| Locked | The report is frozen — no further corrections, by anyone. A report locks when the third correction is used, when you press Lock report now, or when a reviewer locks it (see below). |
| Reviewed | A reviewer examined a flagged report and closed the review — either by recording a corrected version or by confirming your text. Reviewed is final: the report cannot change again. |
Filtering. The cabinet's status filter narrows the list by any of these — Submitted / Processing / In review / Reviewed / Locked. Over the API the same lifecycle is reported as raw tokens — see the FAQ below.
GVN automatically checks each report against your organization's reference data. If something does not add up, the report is queued for a human reviewer. You do not need to do anything — the review happens on the reviewer's side, and your report stays visible in your cabinet throughout.
When a reviewer is involved, the report's detail view shows one of three notices:
Either way the report ends at Reviewed, and its full version history — your original, your corrections, and any reviewer correction — stays on the record in the version ledger.
A report becomes Locked in one of three ways:
POST /v1/transaction/{id}/finalize over the API) to
finalize with corrections to spare. Locking early is irreversible:
This report is locked — you finalized it early. Locked reports can't be
edited.Locked is not the end of the story. A locked report can still be reviewed — in fact, locking is the precondition: a reviewer can only resolve a flagged report after it is locked.
This section is for the admin role — the reviewer working in the admin console.
The admin report list surfaces flagged reports first, and the strip above it sums the queue in one glance: Needs attention: N mismatched · M unverifiable · K not verified (or All clear when nothing is flagged). A report's flag is the strictest open finding of the automated checks:
| Flag | What it means |
|---|---|
| Mismatch | The report's figures disagree with the reference matrix. |
| Unverifiable | The report could not be checked against the reference matrix (the cause is recorded in the report log). |
| Not verified | The report has not been verified against the reference matrix. |
| Consistent | The checks passed — nothing to resolve. |
| Resolved | The flag has been closed by a reviewer (the report is Reviewed). |
409 LOCK_REQUIRED: This report must be locked
before it can be resolved. The report may already be locked (third
correction, or the submitter's early lock); otherwise use the admin lock, which
asks for a reason and writes it to the audit log.The Rules tab lists the automated checks. Turn each rule on or off — an inactive rule is skipped by the engine and never flags a report. Rules are authored in code; to change or add a rule, contact your developer.
Does a reviewer's correction use up my 3
corrections? It cannot cost you an edit: a reviewer only acts on a report
that is already locked, and a locked report accepts no further corrections from
you either way. The counter (Corrections 1 / 3 ·
2 remaining) does count every corrected version in the ledger — so a
reviewer's correction advances it too, marked as reviewer in the version
history.
Can I edit a report after it is Reviewed? No. Reviewed is final — like Locked, it accepts no further corrections. The full version history stays visible in the ledger.
Will I lose my text if a reviewer corrects my report? No — corrections never overwrite. Your original is kept, along with every prior version, and the reviewer's text is simply the next version in the ledger.
My report says "Processing" again after I corrected it — is that right? Yes. A correction sends the report back through the automated checks: it reads Processing while they run, then returns to In review. The status stops changing when the report locks.
What statuses does the API return? The API
reports the underlying lifecycle tokens; the cabinet shows the same lifecycle
1:1: SUBMITTED (Submitted),
PROCESSING (Processing),
REVIEW (In review),
LOCKED (Locked) and
REVIEWED (Reviewed). See
GET /v1/transaction/{id} in the
API reference.