> ## Documentation Index
> Fetch the complete documentation index at: https://docs.docex.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# Verify

> Accept or correct analysis results as QA metadata.

# Verify

> Accept or correct analysis results. Verification stores QA metadata for dashboard visibility; it does not promote models, change routes, or trigger optimizer side effects.

## SDK

```js theme={null}
// Accept the result
await docex.verify(jobId, { accepted: true });

// Submit corrections
await docex.verify(jobId, {
  corrections: {
    legal_name: "ACME LOGISTICS LLC",
    license_no: "1019389"
  }
});
```

## CLI

```bash theme={null}
# Accept a result
docex verify job_abc123 --accept

# Submit corrections from a JSON file
docex verify job_abc123 --corrections corrections.json

# Interactive mode
docex verify job_abc123 --interactive
```

## Stored metadata

Verification records the accepted/corrected result, notes, timestamp, and verifier context for run review.
