Sovereign Directory · Data Structure & Immutable Seed · IAMPRO.ONE

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.

LevelTypeExampleArea Code Inherited?Emblem Inherited?
0Planet / SystemEarth, Mars, Solar System
1Continent / RegionAmericas, Europe
2NationUSA (+1), Ecuador (+593), Spain (+34)✓ Eagle, Condor, Toro
3State / Province / Com. AutónomaNew York, Pichincha, Andalucía
4County / CantonKings County, Quito Cantón
5City / MunicipalityBrooklyn, Quito, Barcelona
6District / Barrio / NeighborhoodCarroll Gardens, La Floresta, Guápulo
7Street / Public Space / LandmarkGonzález Suárez, Parque de Guápulo
8Venue / BuildingAngry Wade's, Casa Somos Guápulo
9Business / OrganizationLicores Don E, Paul de Cosas, Buen Fruto
10Individual (Person / Animal)Joaquin Soto, Mijo, LaMichu, Maricela
11Inner / 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.

IDNameLevelParentArea CodeEmblemTags
earthEarth0planet
americasAmericas1earthcontinent
USAUnited States2americas+1eaglenation
EcuadorEcuador2americas+593condornation
SpainEspaña2europe+34toronation
NYNew York3USA+1state
PichinchaPichincha3Ecuador+593 2province
QuitoQuito5Pichincha+593 2city
LaFlorestaLa Floresta6Quito+593 2barrio
GuapuloGuápulo6Quito+593 2barrio
AngryWadesAngry Wade's8CarrollGardensvenue, pool
CasaSomosCasa Somos Guápulo8Guapulovenue, community
LicoresDonELicores Don E9LaFlorestacommerce, amplifica
PaulDeCosasPaul de Cosas9Quitoart, mining
JoaquinJoaquin Soto10LaFlorestaperson, founder
MijoMijo 🐕10LaFlorestaanimal, companion
LaMichuLaMichu 🐈10LaFlorestaanimal, 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.