# Explore Data Ownership Boundaries in User Info > Published on ADIN (https://adin.chat/s/data-ownership-boundaries-user-info-8vu2) > Type: Diagram > Date: 2026-03-11 > Description: Interactive flowchart detailing user-owned data like identity and preferences for better understanding of data portability. Mermaid diagram: flowchart TB subgraph USER_OWNED["USER OWNED (Portable)"] direction TB IDENTITY["User Identity"] PREFS["Preferences"] MEMORY["Personal Memory"] RELATIONSHIPS["Relationships"] CONSENT["Consent Records"] EXPORT["Export / Delete Rights"] end subgraph PLASTIC_LABS["PLASTIC LABS OWNED (Infrastructure)"] direction TB HONCHO_RUNTIME["Honcho Runtime"] NEUROMANCER["Neuromancer Models"] IDENTITY_SCHEMA["Identity Schema"] REASONING_LOGIC["Reasoning Logic"] EVAL_DATA["Aggregate Eval Data"] end subgraph APP_OWNED["APPLICATION OWNED (Tenant)"] direction TB APP_CONFIG["App Configuration"] BUSINESS_LOGIC["Business Logic"] APP_DB["Application Database"] USAGE_LOGS["Usage Logs"] BILLING["Billing Records"] end subgraph FOUNDATION_MODEL["FOUNDATION MODEL OWNED"] direction TB WEIGHTS["Model Weights"] TRAINING_DATA["Training Data"] INFERENCE_API["Inference API"] end %% Relationships IDENTITY -->|"Reads/Writes via"| HONCHO_RUNTIME HONCHO_RUNTIME -->|"Reasons with"| NEUROMANCER HONCHO_RUNTIME -->|"Calls"| INFERENCE_API APP_CONFIG -->|"Configures"| HONCHO_RUNTIME APP_DB -.->|"Optional sync"| IDENTITY %% Styling style USER_OWNED fill:#e3f2fd,stroke:#1565c0,stroke-width:3px style PLASTIC_LABS fill:#fff3e0,stroke:#ef6c00,stroke-width:2px style APP_OWNED fill:#f3e5f5,stroke:#7b1fa2,stroke-width:2px style FOUNDATION_MODEL fill:#fce4ec,stroke:#c2185b,stroke-width:2px