Sovereign Directory
Data Structure & Immutable Seed
This is the immutable seed and data contract for the Sovereign Directory — the structured backbone that powers every visualization, tool, and projection across IAMPRO.ONE. From planetary scale to individual presence, every node follows the same sealed schema. This document is the single source of truth.
🧬 Hierarchy · The Levels of Sovereignty
Every node in the directory belongs to exactly one level. Levels are ordered from the most encompassing (Planet) to the most granular (Inner Self). Each node references its parent, forming a strict tree that also carries cross‑connections.
| Level | Type | Example | Area Code Inherited? | Emblem Inherited? |
|---|---|---|---|---|
| 0 | Planet / System | Earth, Mars, Solar System | — | — |
| 1 | Continent / Region | Americas, Europe | — | — |
| 2 | Nation | USA (+1), Ecuador (+593), Spain (+34) | ✓ | ✓ Eagle, Condor, Toro |
| 3 | State / Province / Com. Autónoma | New York, Pichincha, Andalucía | ✓ | — |
| 4 | County / Canton | Kings County, Quito Cantón | ✓ | — |
| 5 | City / Municipality | Brooklyn, Quito, Barcelona | ✓ | — |
| 6 | District / Barrio / Neighborhood | Carroll Gardens, La Floresta, Guápulo | ✓ | — |
| 7 | Street / Public Space / Landmark | González Suárez, Parque de Guápulo | — | — |
| 8 | Venue / Building | Angry Wade's, Casa Somos Guápulo | — | — |
| 9 | Business / Organization | Licores Don E, Paul de Cosas, Buen Fruto | — | — |
| 10 | Individual (Person / Animal) | Joaquin Soto, Mijo, LaMichu, Maricela | — | — |
| 11 | Inner / Presence | /presence, /sanar, /thefoolsjourney | — | — |
📐 The Node Schema (Sealed Contract)
Every node in the sovereign directory MUST implement this schema. This is the contract between the data seed and every tool that consumes it.
{
"id": "string (unique slug, e.g. 'la-floresta')",
"name": "string (human-readable, e.g. 'La Floresta')",
"type": "nation | state | province | county | city | district | barrio | street | venue | business | person | animal | inner",
"level": 0–11,
"parent": "string | null (id of parent node)",
"areaCode": "string | null (inherited from nation downward)",
"emblem": "string | null (e.g. 'eagle', 'condor', 'toro')",
"coordinates": { "lat": number, "lng": number } | null,
"url": "string (canonical IAMPRO.ONE page)",
"status": "active | claimed | pending | archived",
"tags": ["string array (cross‑cutting taxonomies)"],
"connections": ["array of related node ids (non‑hierarchical)"],
"metadata": {
"description": "string",
"population": number | null,
"founded": "string | null",
"contact": "string | null (WhatsApp, email)"
}
}
🔀 Cross‑Cutting Taxonomies
Beyond the strict parent‑child hierarchy, nodes are grouped by orthogonal dimensions — area codes, emblems, wellness, commerce, land, and animal companions. These are implemented via the tags and connections fields.
📞 By Area Code
Area codes form a parallel hierarchy: +1 → USA, +593 → Ecuador, +34 → Spain. Within a nation, area codes subdivide into states/provinces (e.g., +593 2 → Pichincha).
tag: area-code-1 tag: area-code-593 tag: area-code-34
🦅 By Emblem
Nations carry emblematic symbols: Eagle → USA, Condor → Ecuador, Toro → Spain. Emblems cascade to descendant nodes automatically.
tag: emblem-eagle tag: emblem-condor tag: emblem-toro
🌿 Wellness & Healing
Nodes linked to /sanar, /sana-sana, /presence, and /trueque-global form a wellness network. Any business or individual offering healing services can be tagged.
tag: wellness tag: sanar
💼 Commerce & Amplifica
Businesses using Amplifica Sales CC or SignalCV are tagged for the commerce directory. This connects local economies to the global constellation.
tag: commerce tag: amplifica
🌍 Land & Territory
Physical land projects (EdenInPuembo, Tiolando, Campo VIVO) and urban properties are tagged as territorial assets.
tag: territory tag: land-asset
🐾 Animal Companions
Animals are level‑10 individuals with their own pages. They connect to their human companions and to the wellness network via /presence.
tag: animal tag: companion
🌐 Real Seed Data (Partial)
All nodes gathered from our walks, conversations, and existing pages. This is the actual immutable seed that will be loaded by every tool.
| ID | Name | Level | Parent | Area Code | Emblem | Tags |
|---|---|---|---|---|---|---|
| earth | Earth | 0 | — | — | — | planet |
| americas | Americas | 1 | earth | — | — | continent |
| USA | United States | 2 | americas | +1 | eagle | nation |
| Ecuador | Ecuador | 2 | americas | +593 | condor | nation |
| Spain | España | 2 | europe | +34 | toro | nation |
| NY | New York | 3 | USA | +1 | — | state |
| Pichincha | Pichincha | 3 | Ecuador | +593 2 | — | province |
| Quito | Quito | 5 | Pichincha | +593 2 | — | city |
| LaFloresta | La Floresta | 6 | Quito | +593 2 | — | barrio |
| Guapulo | Guápulo | 6 | Quito | +593 2 | — | barrio |
| AngryWades | Angry Wade's | 8 | CarrollGardens | — | — | venue, pool |
| CasaSomos | Casa Somos Guápulo | 8 | Guapulo | — | — | venue, community |
| LicoresDonE | Licores Don E | 9 | LaFloresta | — | — | commerce, amplifica |
| PaulDeCosas | Paul de Cosas | 9 | Quito | — | — | art, mining |
| Joaquin | Joaquin Soto | 10 | LaFloresta | — | — | person, founder |
| Mijo | Mijo 🐕 | 10 | LaFloresta | — | — | animal, companion |
| LaMichu | LaMichu 🐈 | 10 | LaFloresta | — | — | animal, companion |
🔐 Contract Compliance
✅ Naming Convention
URLs follow /nation/state/city/barrio. Canonical slugs, no numeric suffixes — the hierarchy is encoded in the path.
✅ Immutable Seed
The directory JSON is the seed. Tools consume and project it, but never mutate it. Changes are versioned separately.
✅ Offline‑First
Seed stored in localStorage under sovereign_directory_v1. Tools load locally first, then sync with Infynexus.
✅ Infynexus API
Endpoints: GET /directory/{id}, GET /directory?parent={id}, GET /directory?tag={tag}. Mock fallback with ❤️.
The directory is not just data. It is a living map of territory, people, animals, and presence. Every node — from a nation to a dog in La Floresta — carries the same grain. Walk the field. Touch Earth. Be kind to every node you encounter.
🚀 Next: The Star Trek Visualization
With this data structure sealed and populated, the visualization becomes a pure projection. The same seed can be rendered as:
- 3D Constellation — nodes orbiting their parents, colored by type.
- Area Code Map — parallel view grouped by phone prefix.
- Emblem Network — eagle, condor, and toro as gravitational centers.
- Wellness Graph — /sanar and /presence as hubs.
- Individual Path — Joaquin's personal constellation: Brooklyn → Quito → Puembo.
Immediate next step: Download the full JSON seed (coming as /sovereign-directory.json) or contribute a node by reaching out.