Trust Agreement
This data model captures key information from Trust Agreement documents, including both revocable and irrevocable living trusts and their amendments. It extracts essential details like the type of trust, significant dates (execution), the governing jurisdiction, and the formal name of the trust. It identifies the core parties involved: the Grantors (who create the trust), the Trustees (who manage it), and the Beneficiaries (who benefit from it), including their names, roles, and relevant clauses. Additionally, the model extracts details about assets listed in schedules, specific legal powers and provisions outlined in the document (like trustee powers, distribution rules, amendment/revocation clauses), and information about any legal counsel involved in drafting the document.
| Field name | Type | Description |
|---|---|---|
| document_type | string | Type of document (e.g., 'Revocable Living Trust Agreement', 'Irrevocable Life Insurance Trust', 'First Amendment'). Enum: revocable_living_trust_agreement, irrevocable_living_trust_agreement, irrevocable_life_insurance_trust_ilit, charitable_remainder_trust_crt, charitable_lead_trust_clt, grantor_retained_annuity_trust_grat, spousal_lifetime_access_trust_slat, special_needs_trust, dynasty_trust, amendment, restatement, other |
| execution_date | string | Date the document was signed and executed, in YYYY-MM-DD format. |
| jurisdiction | string | State or jurisdiction governing the trust. |
| document_version | string | Version or amendment number of the document, if applicable. |
| trust_name | string | Formal name of the trust. |
| is_revocable | boolean | Indicates whether the trust is revocable (true) or irrevocable (false). |
| trust_type_statement | string | Text excerpt stating the revocable or irrevocable nature of the trust or the type of trust established. |
| trust_purpose | string | Brief description of the trust's purpose (if explicitly stated). |
| tax_identification_number | string | EIN or Tax ID for the trust (if mentioned in the document). |
| grantors | array | List of Grantors/Settlors who created the trust. |
| grantor_full_name | string | Full name of the Grantor. |
| grantor_address | string | Address of the Grantor (as stated in the document). |
| grantor_role_statement | string | Text excerpt from the document defining their role as Grantor/Settlor. |
| trustees | array | List of Trustees (Initial and Successor) named in the document. |
| trustee_full_name | string | Full name of the Trustee. |
| trustee_address | string | Address of the Trustee (as stated in the document). |
| trustee_type | string | Type of Trustee (e.g., 'Initial Trustee', 'Successor Trustee', 'Co-Trustee'). Enum: initial_trustee, successor_trustee, co_trustee, special_trustee, other_trustee |
| trustee_appointment_clause | string | Text excerpt from the document related to their appointment or powers as Trustee. |
| beneficiaries | array | List of Beneficiaries (Primary and Contingent) named in the document. |
| beneficiary_full_name | string | Full name of the Beneficiary. |
| beneficiary_address | string | Address of the Beneficiary (as stated in the document, may be optional). |
| beneficiary_relationship | string | Relationship to Grantor (if stated, e.g., 'Son', 'Daughter', 'Charity'). |
| beneficiary_type | string | Type of Beneficiary (e.g., 'Primary Beneficiary', 'Income Beneficiary'). Enum: primary_beneficiary, contingent_beneficiary, charitable_beneficiary, income_beneficiary, remainder_beneficiary, special_needs_beneficiary, dynasty_trust_beneficiary, other_beneficiary |
| beneficiary_distribution_clause | string | Text excerpt from the document detailing their distribution rights or conditions. |
| beneficiary_share | string | The beneficiary's share of the trust assets (e.g., '50%', '1/3', 'Specific amount', 'Residue'). |
| assets_schedule | array | List of assets mentioned in any schedule or appendix attached to the trust document (if present). |
| asset_description | string | Description of the asset as listed in the schedule (e.g., 'Primary Residence at 123 Main St.', 'Bank Account #XXXX'). |
| asset_type | string | General type of asset (e.g., 'Real Estate', 'Bank Account', 'Investments'). Enum: real_estate, bank_account, investments, retirement_account, life_insurance, personal_property, business_interests, loans_notes, intellectual_property, mineral_rights, digital_assets, other |
| asset_identifier | string | Specific identifier for the asset (e.g., Account number, Property Address, Vehicle VIN). |
| powers_and_provisions | object | Key powers and provisions sections extracted as text excerpts. |
| trustee_powers | string | Text excerpt detailing the powers granted to the Trustee(s). |
| distribution_provisions | string | Text excerpt describing how distributions to beneficiaries are to be made. |
| amendment_clause | string | Text excerpt detailing the process for amending the trust. |
| revocation_clause | string | Text excerpt detailing the process for revoking the trust (or statement of irrevocability). |
| termination_clause | string | Text excerpt detailing the conditions or process for termination of the trust. |
| governing_law_clause | string | Text excerpt stating the governing law of the trust. |
| special_provisions | string | Text excerpts of any other significant special provisions or clauses. |
| legal_counsel | array | Information about legal counsel or law firms mentioned in the document. |
| counsel_name | string | Name of the attorney or law firm. |
| counsel_contact_info | string | Contact information for the attorney or law firm (address, phone, etc. as mentioned). |
| counsel_role_statement | string | Text excerpt mentioning their role (e.g., 'Prepared by', 'Legal Counsel for'). |
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Trust Agreement",
"description": "Schema for extracting information from both revocable and irrevocable living trust documents, including amendments.",
"type": "object",
"properties": {
"document_type": {
"type": "string",
"description": "Type of document (e.g., 'Revocable Living Trust Agreement', 'Irrevocable Life Insurance Trust', 'First Amendment').",
"enum": [
"revocable_living_trust_agreement",
"irrevocable_living_trust_agreement",
"irrevocable_life_insurance_trust_ilit",
"charitable_remainder_trust_crt",
"charitable_lead_trust_clt",
"grantor_retained_annuity_trust_grat",
"spousal_lifetime_access_trust_slat",
"special_needs_trust",
"dynasty_trust",
"amendment",
"restatement",
"other"
]
},
"execution_date": {
"type": "string",
"description": "Date the document was signed and executed, in YYYY-MM-DD format."
},
"jurisdiction": {
"type": "string",
"description": "State or jurisdiction governing the trust."
},
"document_version": {
"type": "string",
"description": "Version or amendment number of the document, if applicable."
},
"trust_name": {
"type": "string",
"description": "Formal name of the trust."
},
"is_revocable": {
"type": "boolean",
"description": "Indicates whether the trust is revocable (true) or irrevocable (false)."
},
"trust_type_statement": {
"type": "string",
"description": "Text excerpt stating the revocable or irrevocable nature of the trust or the type of trust established."
},
"trust_purpose": {
"type": "string",
"description": "Brief description of the trust's purpose (if explicitly stated)."
},
"tax_identification_number": {
"type": "string",
"description": "EIN or Tax ID for the trust (if mentioned in the document)."
},
"grantors": {
"type": "array",
"description": "List of Grantors/Settlors who created the trust.",
"items": {
"type": "object",
"properties": {
"grantor_full_name": {
"type": "string",
"description": "Full name of the Grantor."
},
"grantor_address": {
"type": "string",
"description": "Address of the Grantor (as stated in the document)."
},
"grantor_role_statement": {
"type": "string",
"description": "Text excerpt from the document defining their role as Grantor/Settlor."
}
}
}
},
"trustees": {
"type": "array",
"description": "List of Trustees (Initial and Successor) named in the document.",
"items": {
"type": "object",
"properties": {
"trustee_full_name": {
"type": "string",
"description": "Full name of the Trustee."
},
"trustee_address": {
"type": "string",
"description": "Address of the Trustee (as stated in the document)."
},
"trustee_type": {
"type": "string",
"description": "Type of Trustee (e.g., 'Initial Trustee', 'Successor Trustee', 'Co-Trustee').",
"enum": [
"initial_trustee",
"successor_trustee",
"co_trustee",
"special_trustee",
"other_trustee"
]
},
"trustee_appointment_clause": {
"type": "string",
"description": "Text excerpt from the document related to their appointment or powers as Trustee."
}
}
}
},
"beneficiaries": {
"type": "array",
"description": "List of Beneficiaries (Primary and Contingent) named in the document.",
"items": {
"type": "object",
"properties": {
"beneficiary_full_name": {
"type": "string",
"description": "Full name of the Beneficiary."
},
"beneficiary_address": {
"type": "string",
"description": "Address of the Beneficiary (as stated in the document, may be optional)."
},
"beneficiary_relationship": {
"type": "string",
"description": "Relationship to Grantor (if stated, e.g., 'Son', 'Daughter', 'Charity')."
},
"beneficiary_type": {
"type": "string",
"description": "Type of Beneficiary (e.g., 'Primary Beneficiary', 'Income Beneficiary').",
"enum": [
"primary_beneficiary",
"contingent_beneficiary",
"charitable_beneficiary",
"income_beneficiary",
"remainder_beneficiary",
"special_needs_beneficiary",
"dynasty_trust_beneficiary",
"other_beneficiary"
]
},
"beneficiary_distribution_clause": {
"type": "string",
"description": "Text excerpt from the document detailing their distribution rights or conditions."
},
"beneficiary_share": {
"type": "string",
"description": "The beneficiary's share of the trust assets (e.g., '50%', '1/3', 'Specific amount', 'Residue')."
}
}
}
},
"assets_schedule": {
"type": "array",
"description": "List of assets mentioned in any schedule or appendix attached to the trust document (if present).",
"items": {
"type": "object",
"properties": {
"asset_description": {
"type": "string",
"description": "Description of the asset as listed in the schedule (e.g., 'Primary Residence at 123 Main St.', 'Bank Account #XXXX')."
},
"asset_type": {
"type": "string",
"description": "General type of asset (e.g., 'Real Estate', 'Bank Account', 'Investments').",
"enum": [
"real_estate",
"bank_account",
"investments",
"retirement_account",
"life_insurance",
"personal_property",
"business_interests",
"loans_notes",
"intellectual_property",
"mineral_rights",
"digital_assets",
"other"
]
},
"asset_identifier": {
"type": "string",
"description": "Specific identifier for the asset (e.g., Account number, Property Address, Vehicle VIN)."
}
}
}
},
"powers_and_provisions": {
"type": "object",
"description": "Key powers and provisions sections extracted as text excerpts.",
"properties": {
"trustee_powers": {
"type": "string",
"description": "Text excerpt detailing the powers granted to the Trustee(s)."
},
"distribution_provisions": {
"type": "string",
"description": "Text excerpt describing how distributions to beneficiaries are to be made."
},
"amendment_clause": {
"type": "string",
"description": "Text excerpt detailing the process for amending the trust."
},
"revocation_clause": {
"type": "string",
"description": "Text excerpt detailing the process for revoking the trust (or statement of irrevocability)."
},
"termination_clause": {
"type": "string",
"description": "Text excerpt detailing the conditions or process for termination of the trust."
},
"governing_law_clause": {
"type": "string",
"description": "Text excerpt stating the governing law of the trust."
},
"special_provisions": {
"type": "string",
"description": "Text excerpts of any other significant special provisions or clauses."
}
}
},
"legal_counsel": {
"type": "array",
"description": "Information about legal counsel or law firms mentioned in the document.",
"items": {
"type": "object",
"properties": {
"counsel_name": {
"type": "string",
"description": "Name of the attorney or law firm."
},
"counsel_contact_info": {
"type": "string",
"description": "Contact information for the attorney or law firm (address, phone, etc. as mentioned)."
},
"counsel_role_statement": {
"type": "string",
"description": "Text excerpt mentioning their role (e.g., 'Prepared by', 'Legal Counsel for')."
}
}
}
}
}
}{
"document_type": "revocable_living_trust_agreement",
"execution_date": "2022-08-15",
"jurisdiction": "California",
"document_version": null,
"trust_name": "The John and Jane Doe Family Trust",
"is_revocable": true,
"trust_type_statement": "ARTICLE I: TRUST NAME AND REVOCABILITY. This trust shall be known as The John and Jane Doe Family Trust. The Grantors declare that they reserve the right to amend or revoke this trust agreement at any time during their joint lifetimes.",
"trust_purpose": "To manage the assets transferred hereto for the benefit of the Grantors during their lifetimes and thereafter for the benefit of the designated beneficiaries.",
"tax_identification_number": null,
"grantors": [
{
"grantor_full_name": "John Doe",
"grantor_address": "123 Main Street, Anytown, CA 90210",
"grantor_role_statement": "This Revocable Living Trust Agreement is made this 15th day of August, 2022, by and between John Doe and Jane Doe, hereinafter referred to as the 'Grantors'..."
},
{
"grantor_full_name": "Jane Doe",
"grantor_address": "123 Main Street, Anytown, CA 90210",
"grantor_role_statement": "...and John Doe and Jane Doe, hereinafter referred to as the 'Grantors'..."
}
],
"trustees": [
{
"trustee_full_name": "John Doe",
"trustee_address": "123 Main Street, Anytown, CA 90210",
"trustee_type": "initial_trustee",
"trustee_appointment_clause": "The Grantors shall serve as the initial Co-Trustees of this trust."
},
{
"trustee_full_name": "Jane Doe",
"trustee_address": "123 Main Street, Anytown, CA 90210",
"trustee_type": "initial_trustee",
"trustee_appointment_clause": "The Grantors shall serve as the initial Co-Trustees of this trust."
},
{
"trustee_full_name": "Robert Smith",
"trustee_address": "456 Oak Avenue, Anytown, CA 90210",
"trustee_type": "successor_trustee",
"trustee_appointment_clause": "Upon the death or incapacity of the surviving Grantor, Robert Smith shall serve as Successor Trustee."
}
],
"beneficiaries": [
{
"beneficiary_full_name": "John Doe",
"beneficiary_address": "123 Main Street, Anytown, CA 90210",
"beneficiary_relationship": "Grantor",
"beneficiary_type": "primary_beneficiary",
"beneficiary_distribution_clause": "During the joint lifetimes of the Grantors, the Trustees shall pay to or apply for the benefit of the Grantors all of the net income of the trust...",
"beneficiary_share": "All income and principal as needed"
},
{
"beneficiary_full_name": "Jane Doe",
"beneficiary_address": "123 Main Street, Anytown, CA 90210",
"beneficiary_relationship": "Grantor",
"beneficiary_type": "primary_beneficiary",
"beneficiary_distribution_clause": "During the joint lifetimes of the Grantors, the Trustees shall pay to or apply for the benefit of the Grantors all of the net income of the trust...",
"beneficiary_share": "All income and principal as needed"
},
{
"beneficiary_full_name": "Alice Doe",
"beneficiary_address": "789 Pine Lane, Anytown, CA 90210",
"beneficiary_relationship": "Daughter",
"beneficiary_type": "remainder_beneficiary",
"beneficiary_distribution_clause": "Upon the death of the surviving Grantor, the remaining trust estate shall be distributed in equal shares to the Grantors' children, Alice Doe and Bob Doe.",
"beneficiary_share": "Equal Share of Residue"
},
{
"beneficiary_full_name": "Bob Doe",
"beneficiary_address": "101 Maple Drive, Anytown, CA 90210",
"beneficiary_relationship": "Son",
"beneficiary_type": "remainder_beneficiary",
"beneficiary_distribution_clause": "Upon the death of the surviving Grantor, the remaining trust estate shall be distributed in equal shares to the Grantors' children, Alice Doe and Bob Doe.",
"beneficiary_share": "Equal Share of Residue"
}
],
"assets_schedule": [
{
"asset_description": "Real property located at 123 Main Street, Anytown, CA 90210",
"asset_type": "real_estate",
"asset_identifier": "123 Main Street, Anytown, CA 90210"
},
{
"asset_description": "Checking Account at ABC Bank",
"asset_type": "bank_account",
"asset_identifier": "Account #xxxx1234"
},
{
"asset_description": "Brokerage Account at XYZ Investments",
"asset_type": "investments",
"asset_identifier": "Account #xxxx5678"
}
],
"powers_and_provisions": {
"trustee_powers": "The Trustee shall have all powers conferred upon trustees by the California Probate Code, as amended from time to time, in addition to those powers expressly granted herein...",
"distribution_provisions": "Upon the death of the surviving Grantor, the Trustee shall distribute the trust estate outright and free of trust to the beneficiaries named herein...",
"amendment_clause": "The Grantors jointly, or the survivor of them, may amend, modify, or revoke this trust agreement, in whole or in part, by a written instrument signed by the Grantor(s) and delivered to the Trustee.",
"revocation_clause": "This trust is revocable. The Grantors jointly, or the survivor of them, may revoke this trust agreement entirely by a written instrument signed by the Grantor(s) and delivered to the Trustee.",
"termination_clause": "This trust shall terminate upon the distribution of all trust assets according to the terms herein.",
"governing_law_clause": "The validity, construction, and administration of this trust shall be governed by the laws of the State of California.",
"special_provisions": "ARTICLE VII: SPENDTHRIFT PROVISION. No interest in the principal or income of any trust created hereunder shall be anticipated, assigned, encumbered, or subjected to any creditor's claim or legal process prior to its actual receipt by the beneficiary."
},
"legal_counsel": [
{
"counsel_name": "Law Offices of Smith & Jones",
"counsel_contact_info": "100 Legal Plaza, Anytown, CA 90210",
"counsel_role_statement": "Prepared by: Law Offices of Smith & Jones"
}
]
}Field Notes
- Dates: All dates (
execution_date) must be extracted in YYYY-MM-DD format. - Text Excerpts: Fields like
trust_type_statement,grantor_role_statement,trustee_appointment_clause,beneficiary_distribution_clause, and all fields underpowers_and_provisionsshould contain direct text quotes from the document relevant to the field description. - Enumerated Values: Fields like
document_type,trustee_type,beneficiary_type, andasset_typehave predefined allowed values listed in the table description. Only these values (orotherif applicable) should be used. - Lists (Arrays): For
grantors,trustees,beneficiaries,assets_schedule, andlegal_counsel, extract all instances found in the document. If no instances are found, return an empty list ([]). - Null Values: If a specific piece of information (e.g.,
tax_identification_number,document_version, optional address fields) is not present in the document, the corresponding field should benull.
Updated over 1 year ago
