Template Examples

Real before-and-after examples for every built-in template, plus recipes for building your own.

What It Is

A cookbook of real naming-template examples: the exact pattern each built-in template uses, what the AI extracts, and a genuine before-and-after filename — plus recipes for building your own. Field values are extracted by the AI from the file’s actual content: text, vision, and metadata.

How It Helps You

Industries That Benefit

IndustryStart with
Accounting & bookkeepingBilling Documents, Receipts & Expenses, Bank Statements, Tax Documents
Legal practicesContracts & Agreements, Legal Documents, Compliance Documents
HR & recruitingResumes & CVs
Photographers & creatorsPhoto Archive, EXIF Location Photo, Screenshots
Healthcare & researchThe Medical Records and Academic Papers recipes below

Finance

Billing Documents

Pattern{document_date}_{document_type}_{vendor_name}_{document_number}

Separator: _

The AI extracts: Issue date (normalized to YYYY-MM-DD by a date transform), document kind (Invoice / Credit Note / Receipt…), the issuing company from the letterhead, and the document number exactly as printed.

BeforeScan_20260812_094512.pdf
After2026-08-03_Invoice_Acme_Corp_INV-2026-042.pdf

Receipts & Expenses

Pattern{purchase_date}_{merchant}_{amount}_{currency}

Separator: _

The AI extracts: Purchase date, the store name, the grand total actually paid (not a subtotal), and the currency.

BeforeIMG_4821.jpg (photo of a till receipt)
After2026-08-14_Whole_Foods_86.42_USD.jpg

Bank Statements

PatternFrom_{period_start}_To_{period_end}_Bank_Statement_{institution}

Separator: _

The AI extracts: The statement period’s start and end dates and the issuing bank.

Beforeestatement_dl_99321.pdf
AfterFrom_2026-07-01_To_2026-07-31_Bank_Statement_Chase.pdf

Tax Documents

Pattern{tax_year}_{form_type}_{issuer}

Separator: _

The AI extracts: The tax year the document covers, the form type (W-2, 1099-MISC, Return…), and who issued it.

Beforedocument(3).pdf
After2025_W-2_Initech_Inc.pdf

Legal & Business

Contracts & Agreements

PatternContract_{counterparty}_{subject}_{signing_date}

Separator: _

The AI extracts: The other party to the agreement, what the contract is about, and the signing date.

Beforefinal_FINAL_v3.docx
AfterContract_Globex_Ltd_Office_Lease_2026-06-15.docx

Legal Documents

Pattern{document_date}_{document_type}_{parties}_{subject}

Separator: _

The AI extracts: Filing date, the filing type (Motion, Affidavit, Notice…), the parties, and the matter.

Beforedownload.pdf
After2026-05-02_Motion_Smith_v_Jones_Discovery_Extension.pdf

Compliance Documents

Pattern{effective_date}_{compliance_area}_{document_type}_{subject}

Separator: _

The AI extracts: Effective date, the regulation or area (GDPR, SOC2, HIPAA…), the document type, and its subject.

Beforepolicy-v2-draft8-approved.pdf
After2026-01-01_GDPR_Policy_Data_Retention.pdf

Resumes & CVs

Pattern{candidate_name}_{role}_{year_on_resume}

Separator: _

The AI extracts: The candidate’s name, the role they’re applying for or currently hold, and the most recent year on the resume.

Beforeresume (7).pdf
AfterPriya_Sharma_Senior_iOS_Engineer_2026.pdf

Photos & Screenshots

Photo Archive

Pattern{date:YYYY-MM-DD}-{event}-{counter:000}

Separator: -

The AI extracts: The capture date (EXIF) and the event or subject; the counter numbers each photo in the batch (001, 002…).

BeforeDSC01542.jpg
After2026-07-19-Lisbon-Trip-001.jpg

EXIF Location Photo

Pattern{location}-{subject}

Separator: -

The AI extracts: The shooting location — GPS coordinates reverse-geocoded on-device to a place name — plus what’s in the photo.

BeforeIMG_2210.heic
AfterBarcelona-Sagrada-Familia.jpg

Screenshots

Pattern{date}_{app_name}_{subject}

Separator: _

The AI extracts: Today’s date, the app visible in the screenshot, and what the screenshot shows.

BeforeScreenshot 2026-08-20 at 11.52.21 AM.png
After2026-08-20_Xcode_Build_Error_Dialog.png

General

Document Archive

Pattern{date}-{category}-{title}

Separator: -

The AI extracts: The document date, a category the AI assigns (Meeting, Report, Manual…), and a concise title.

Beforenotes_final2.pdf
After2026-08-20-Meeting-Q3-Roadmap-Review.pdf

Build-Your-Own Recipes

Client invoices with amount

Pattern: {invoice_date}_{vendor_name}_{invoice_number}_{total_amount}

FieldAI instruction (the field description)Example
Invoice DateThe invoice issue date converted to YYYY-MM-DD format2026-08-20
Vendor NameThe company that issued the invoice (the sender, not the customer)Acme Corp
Invoice NumberThe invoice number exactly as printed, without the # symbolINV-2026-042
Total AmountThe grand total due including tax, with currency code1250.00USD

Add a Date format → yyyy-MM-dd transform on Invoice Date as a safety net. Result: 2026-08-12_Acme_Corp_INV-2026-042_$1,250.00.pdf — amounts keep their real punctuation.

Medical records

Pattern: {visit_date}_{provider}_{record_type} — fields: visit date, clinic or doctor name, and the record type (Lab Result, Prescription, Imaging…). Result: 2026-03-04_City_Medical_Lab_Result.pdf.

Academic papers

Pattern: {first_author}_{year}_{short_title} — instruct the first-author field with “surname of the first listed author only”. Result: Nakamura_2025_Diffusion_Models_Survey.pdf.

Space-separated names

Any template can use a space separator for natural-reading names: the pattern {document_date} {vendor_name} {document_number} gives 2026-08-03 Acme Corp INV-2026-042.pdf. Dates and amounts keep their internal dashes and dots regardless of the separator you pick.

Tips

Related

Last updated: 20 August 2026