Extracting Trust Terms From a Revocable Living Trust Document
9 min read · updated August 11, 2026
The question anyone asks of an extracted trust record is: who is the trustee right now, and what evidence says so. A schema that stores trustees as an array of names cannot answer it, because both halves of the answer — the position in the sequence and the condition that moves it along — have been thrown away before the record was written.
The successor chain is ordered and conditional
A revocable living trust nominates an initial trustee, then a sequence of successors. The sequence is almost always numbered in the instrument, and each link carries a condition in the form of a standard phrase: if the prior trustee is unable or unwilling to serve, if the prior trustee resigns, dies, or is removed, on the settlor’s incapacity. Sometimes the condition differs between links, which is precisely the case a flat list hides.
The correct record keeps three things per link: the ordinal, the named person or institution, and the verbatim condition text. Add the page it came from and a co-trustee flag, because two names at one position is a different arrangement from two names at consecutive positions.
{
"trustee_chain": [
{ "position": 0, "name": "M. Ferreira", "role": "initial_trustee",
"condition": null, "co_trustee": false, "page": 3 },
{ "position": 1, "name": "R. Ferreira", "role": "successor_trustee",
"condition": "if M. Ferreira is unable or unwilling to serve",
"co_trustee": false, "page": 3 },
{ "position": 2, "name": "Northgate Trust Company", "role": "successor_trustee",
"condition": "if no individual successor named above is able and willing to serve",
"co_trustee": false, "page": 4 }
]
}Notice that position 2 in the example is conditioned on the whole preceding list rather than on the immediately prior trustee. Those two conditions look interchangeable in a summary and are not, and the only way a reviewer can tell which one the instrument used is by reading the text your extraction preserved.
Many instruments also specify how “unable to serve” is to be established — commonly a written certificate from one or two physicians, sometimes a determination by a named person or a committee. That mechanism is a separate provision, usually in an incapacity article some distance from the trustee nominations, and it is what an institution will ask for when a successor tries to act. Extract it as its own field and link it to the chain rather than leaving it buried in the article text.
One person, several roles
In the ordinary revocable living trust the same individual is the settlor who created it, the initial trustee who administers it, and the lifetime beneficiary. An extraction that emits one record per role, keyed by role, therefore produces three parties where there is one person — and any downstream count of parties, beneficiaries or trustees is then wrong.
Model parties once, with roles as a set on the party — the multi-entity document schema shape. That also makes the interesting cases visible: a trust where the settlor is not the initial trustee, or where a beneficiary is also a successor trustee, are both facts a reader wants surfaced rather than reconstructed.
Resist deduplicating parties by name alone. Family instruments are full of near-identical names distinguished only by a suffix, a middle initial, or the phrase “my son” against “my father”. Where the instrument states a relationship, extract it; it is often the only disambiguator in the document.
Distribution provisions attach to beneficiaries and are frequently staged rather than outright — a share at one age, the balance at another — and frequently governed by a standard phrase such as health, education, maintenance and support. Those are structured facts: an age trigger, a fraction, and a stated standard. Pulling them out as one paragraph of prose per beneficiary is how a record ends up searchable for nothing.
Amendment, restatement, and which text governs
Trusts are amended more often than wills, and the amendment mechanism is different in a way that matters for the schema. A numbered amendment edits specified articles, which is the same article-level supersession problem as a codicil to a will. But an instrument titled “Amended and Restated” replaces the entire prior text — every article, including the ones that did not change.
So supersession here is two-level. A restatement makes the whole earlier document historical in one move; an amendment makes specified articles historical. If your pipeline only models one of these, it will either treat a restatement as an amendment and merge stale articles into the current record, or treat an amendment as a restatement and discard articles that are still operative. Detect the instrument type on the first page from the title and the opening recitals, and record it before anything else.
The trust’s own identity is a related trap. A trust is conventionally referred to by name and date — the form “the M. Ferreira Revocable Trust dated 14 March 2018” — and that date is part of the identifier, not an execution date field to be updated when an amendment is signed. Amendments continue to refer to the original date. Store the trust identifier verbatim as a string, and keep instrument execution dates separately.
The schedule of trust property
Most of these documents carry a schedule of property, often Schedule A, listing what the trust holds. It is a separate structure with its own extraction problems: it is frequently typed later than the trust itself, frequently undated, sometimes handwritten, and sometimes replaced without any record of the replacement.
Extract it as its own array with its own document-level date and its own provenance, never merged into the trust body. The reason is that the schedule and the instrument answer different questions and go stale at different rates, and a record that presents an eight-year-old asset list with the same authority as the dispositive articles invites exactly the wrong conclusion.
What breaks
- The signature block loses its capacity. The same person signs once as settlor and once as trustee, on adjacent lines distinguished only by the trailing words “as Trustee”. Extract the capacity along with the signature or the two lines collapse into one.
- Article cross-references. Trusts refer internally — “as provided in Article Seven” — and articles are frequently spelled out in words rather than numerals. Normalise to a canonical key on extraction, and keep the surface form.
- Conditional nominations read as multiple current trustees. The most common single error on this document, and it is prevented entirely by the ordinal-plus-condition shape above.
- Exhibits appended to the instrument. Deeds, assignments and beneficiary designation forms are often bound in after the signature page and have their own layouts. Split the file on document boundaries before extraction rather than sending a sixty-page bundle as one document; the general treatment is in document ingestion.