Create one immutable, content-addressed review version.
Create one immutable content-addressed review version. The version is addressable by itsDocumentation Index
Fetch the complete documentation index at: https://docs.retab.com/llms.txt
Use this file to discover all available pages before exploring further.
rvr_… id and forms the parent of any subsequent
correction in the version graph.
Versions live in their own collection, addressable via flat CRUD —
review_id lives in the body, not the URL.
sha256(canonical_json(normalized_snapshot)). Submitting
the same (review_id, parent_id, snapshot) triple returns the existing
row; the server does not create a duplicate. Submitting the same content
with a different parent_id returns 409 parent_conflict.POST /workflows/reviews/versions body.
Public callers create corrections, not seeds. parent_id must
reference an existing version under the same review_id; seed versions
are created by the runtime through the store path.
1^rvr_[A-Z2-7]{26}$The full reviewed snapshot to store as an immutable version. The object must match the gated block type: extract uses the raw output object; classifier uses {'category': string}; split uses {'documents': [{'name': string, 'pages': positive sorted int[]}]}; for_each uses {'partitions': [{'key': string, 'pages': positive sorted int[]}]}. The server validates the shape and stores the exact submitted object when valid.
Successful Response