Brooks Hill Area Land-Deed Fraud Investigation Whidbey Island · Island County, WA
Documents & Sources › SELF INDEX design and analysis
Rendered from source file SELF_INDEX_design_and_analysis.md · download raw .md

Self-Indexing EagleWeb → Searchable Index: Design, Feasibility & Legal Notes

Question posed by owner: If we pull ALL recordings from EagleWeb (not just my parcels) into an Azure AI Search index, can we then find the malicious / wild deed? And since my title was cleared 3 years ago, the bad filing must be after that — right? And if a recording was denied, does that stop me from selling?

This note is technical + general information only. It is not legal advice. Confirm the legal points with your attorney and title company (Chicago Title).


1. Does an Azure AI Search index help? YES — it removes EagleWeb's core limitation.

EagleWeb's public search only lets you query the county's index fields: grantor/grantee name, parcel, PLSS section, book/page, doc number, date/type. It cannot search the content of the scanned document images, and it cannot search by geography (where the described land actually is).

A wild deed hides precisely in those blind spots: - filed under a fabricated grantor name you'd never think to search, and/or - carrying a legal description that the recorder never tied to your parcel numbers (so a name/parcel search misses it), and/or - rejected / pending — never published to EagleWeb at all (see §5).

An Azure AI Search index built from the document images + OCR text converts the problem from "search the county's name index" into "search the actual words and the geography of every instrument." That is effectively a do-it-yourself title plant — the same concept Chicago Title uses. This is a genuinely good fit for Azure AI Search because it has a built-in OCR / AI-enrichment skillset (Azure AI Document Intelligence / Vision Read) that turns the scanned PDFs into searchable text automatically.

2. Proposed architecture (bounded, tractable)

EagleWeb (Tyler EagleRecorder)
   │  (1) Acquisition: scrape the recording INDEX (metadata) for a bounded date window,
   │      then download each document IMAGE (PDF) via viewAttachment.jsp
   ▼
Blob storage (raw PDFs + a metadata JSON per doc)
   │  (2) Enrichment: OCR each PDF  → full text  (Azure AI Search skillset, or Doc Intelligence)
   │      + entity/keyphrase extraction; parse legal-description calls
   ▼
Azure AI Search index  (fields below)
   │  (3) Research: full-text + semantic queries; grantor≠owner flags; geo/legal matching
   ▼
Hit list → manual review → pull certified copies of anything probative

Suggested index schema (one document = one recorded instrument)

Field Type Source
docNumber Edm.String (key) index
docType String, facetable index
recDate DateTimeOffset, sortable/filterable index
grantor / grantee Collection(String), searchable index
bookPage String index
parcelIds Collection(String), filterable index (may be empty ← the whole point)
plssSection/Township/Range String, filterable index
legalDescriptionText String, searchable OCR
fullText String, searchable (analyzer=standard) OCR
addressesMentioned Collection(String) enrichment
namesMentioned Collection(String) enrichment
geoParsedFootprint Edm.GeographyPolygon (optional) metes-and-bounds parse
blobUrl String acquisition

Detection queries (once indexed)

  1. Content match on the subjects — search fullText/legalDescriptionText for: 4927 Katya, 4924 Katya, R32905-401-5010, R32905-400-4740, SP 79-192, 383-4650, distinctive metes calls (N5*W423, S89*E843), and owner names incl. misspellings (Rutter/Ruter/Rutten, Garibyan/Garabyan/Garibian). A hit that is NOT already indexed to your parcels = prime suspect.
  2. Grantor ≠ record owner — join every conveyance's grantor against the verified true-owner table (03_assessor/owners_and_deeds.csv). A stranger-to-title grantor on/near your land is the classic wild-deed signature. (A parcel-scoped version already run: WILD_DEED_heuristics.txt.)
  3. Geography — if legals are geo-parsed, spatially intersect every instrument's footprint with your two parcels regardless of how it was indexed. This catches the "mis-tied legal" case that the public index structurally cannot.

3. Scope it by DATE — the owner's key insight (mostly correct)

Because a competent title search + owner's policy was issued at your 2023 purchase (Rutter WD #4565727, from Bloom), the recorded chain was clean as of that date. So a newly recorded malicious deed most likely lands in the window 2023-06 (your closing) → present, with the neighbor's map (dated ~2026) suggesting it is recent. That bounds a county-wide pull to ~3 years instead of "all of time," which makes this very tractable (low thousands of instruments, not hundreds of thousands).

Caveats to the "must be after closing" assumption: - A wild deed could predate closing yet have been mis-indexed so the 2023 title search missed it. But a properly recorded deed affecting your parcel should have surfaced in a plant search — and if a covered defect predates your policy, your owner's title policy is the remedy (the title company must defend/clear it). So the new-filing search window is post-closing, while pre-closing defects are a title-insurance claim, not a search project. - The Garibyan parcel took title differently (Decree of Dissolution #4383543), so its clean- date baseline differs. Confirm each parcel's policy/effective date with the title company. - Action: ask Chicago Title for the effective date of your owner's policy and a current date-down / title commitment — that tells you what is of record right now vs. at closing.

4. Cost / effort / risk of the pull

5. "If a recording was DENIED, can I still sell?" (general info — confirm with attorney)

6. Bottom line