Skip to content

VisualGrid Access Surfaces

VisualGrid provides root-only access for operators and engineers who need unrestricted visibility into the entire data topology.


Root Mode

Audience

Operators, platform engineers, and support staff who need unrestricted visibility into the entire data topology across all 20 services (20 DynamoDB tables).

Authentication

  1. Operator calls POST /visualgrid/root/auth with the root secret_code.
  2. The secret code is verified against a scrypt hash stored in the visualgrid_main DDB table (PK=SYSTEM#SECRET_CODE, SK=META).
  3. On success, a short-lived token (1h TTL) is returned and stored as a VG_SESSION#<token> record.
  4. All subsequent requests include the token as an x-vg-token header.

Capabilities

CapabilityDetails
Graph entryGET /root/graph returns all 20 service tables as entry nodes
Node loadLoad any item from any table by PK + SK
Node childrenBrowse children of any node with pagination
Node exportExport any node as JSON
No org scopingRoot mode sees everything — no org filter applied
UnredactedAll fields returned as-is (root-only access = no untrusted users)

Accessed Tables (all 20)

#TableService
1uas_mainUAS — User Account Service
2usm_mainUSM — User Session Management
3ofm_mainOFM — Organization and Facility Management
4mrs_mainMRS — Metarecord Service
5pvm_mainPVM — Product & Vendor Management
6pmc_mainPMC — Product Merchandising Control
7pmc_group_rollupPMC — Group Rollup Aggregates
8ics_mainICS — Inventory Control Service
9ppm_mainPPM — Pricing & Promotions Management
10scm_mainSCM — Sales Cycle Management
11pcm_mainPCM — Procurement Cycle Management
12crm_mainCRM — Customer Relationship & Loyalty
13influencer_mainInfluencer — Influencer & Referral Earnings
14accounting_mainAccounting — Accounting & ERP Integration Readiness
15ipm_mainIPM — Integration Plane Management
16ipm_eventsIPM — Integration Events
17rbs_mainRBS — Retail Bus Service
18utl_mainUTL — Utility Service
19ops_mainOPS — Operations Management
20ucp_mainUCP — Universal Commerce Protocol Adapter

Use Cases

  • Incident investigation: Trace a user account across UAS -> USM -> OFM -> SCM to understand session, membership, and order state during an incident.
  • Data integrity checks: Browse DDB records directly to verify cross-service references (e.g., PVM product exists before SCM order references it).
  • Onboarding verification: Walk through a new org's setup across OFM, PVM, ICS, and PPM to confirm all data is seeded correctly.
  • Architecture exploration: Navigate the live graph to understand PK/SK patterns and cross-table relationships.

Security Notes

  • Root-only access. All fields are returned unredacted. Root access is restricted to operators with the secret code.
  • Root secret rotation: Update the scrypt hash in visualgrid_main (PK=SYSTEM#SECRET_CODE, SK=META). All existing root sessions continue until their 1h TTL expires.
  • Audit: All VisualGrid API calls are logged to EventBridge (visualgrid-events) and Firehose for compliance.