submit_fact_verification
ActiveTool of OpenAccountants
AUTHENTICATED (approved accountants). Attest or correct one or more individual facts of a skill — directly, no workbook. Pass the skill `slug` and `rows`: one entry per fact you're acting on, each with its `fact_key` (from list_verification_targets) and a `status` — 'correct' (attest as-is), 'needs-correction' (fix the value and/or citation; a `source` is REQUIRED), or 'needs-context' (flag as unsure with a `note`, no fix). Your change applies IMMEDIATELY and the served skill is regenerated from its facts — you carry the liability. An automated reviewer checks each correction; any concern comes back as a non-blocking `warning` and the change STILL applies. Call preview_fact_verification first if you want the reviewer's take before committing. Scoped to your approved jurisdictions.
Parameters schema
{
"type": "object",
"required": [
"slug",
"rows"
],
"properties": {
"rows": {
"type": "array",
"items": {
"type": "object",
"required": [
"fact_key",
"status"
],
"properties": {
"note": {
"type": "string",
"description": "Optional note (especially for needs-context)."
},
"source": {
"type": "string",
"description": "Primary-authority citation supporting the correction. REQUIRED for needs-correction."
},
"status": {
"enum": [
"correct",
"needs-correction",
"needs-context",
"skip"
],
"type": "string",
"description": "correct = attest as-is; needs-correction = fix value/citation (source required); needs-context = flag unsure with a note; skip = leave untouched."
},
"fact_key": {
"type": "string",
"description": "The fact's key, from list_verification_targets."
},
"corrected_value": {
"type": "string",
"description": "The corrected value (for needs-correction; omit to fix only the citation)."
}
}
},
"description": "One entry per fact you're verifying/correcting."
},
"slug": {
"type": "string",
"description": "Skill slug, e.g. 'us-crypto-tax'."
}
}
}No endpoints wrapped at confidence ≥ 0.50.
Parent server
OpenAccountants
https://github.com/openaccountants/openaccountants
2/7 registries