Skip to content

Commit e31c48f

Browse files
add diagram
1 parent d2e1315 commit e31c48f

1 file changed

Lines changed: 78 additions & 0 deletions

File tree

  • blog/2025-12-02-standard-objects-documentation

β€Žblog/2025-12-02-standard-objects-documentation/index.mdβ€Ž

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,44 @@ There's a better way! After every Salesforce release, the SF Explorer team runs
1111

1212
<!-- truncate -->
1313

14+
## πŸ“Š Visual Overview
15+
16+
Here's how the SF Explorer ecosystem provides Salesforce metadata to different users:
17+
18+
```mermaid
19+
graph TB
20+
subgraph "Data Pipeline"
21+
A[Salesforce Release] -->|Official Documentation| B[Script]
22+
B -->|Parses & Extracts| C[sf-explorer/salesforce-object-reference<br/>NPM Package]
23+
end
24+
25+
subgraph "Solutions by User Type"
26+
C --> D{Choose Your Path}
27+
28+
D -->|πŸ‘€ User<br/>Browse Docs| E[Web Interface<br/>sf-explorer.github.io/sf-doc-to-json]
29+
E -->|Features| E1[⚑ Lightning-fast search<br/>🎨 Clean UI<br/>πŸ“± Responsive design]
30+
31+
D -->|πŸ’» Developer<br/>Build Apps| F[NPM Package<br/>npm install @sf-explorer/...-reference]
32+
F -->|Features| F1[πŸ“¦ Easy integration<br/>πŸ”„ Auto-updated<br/>πŸš€ No API calls]
33+
34+
D -->|πŸ”§ Admin<br/>Enhance Setup| G[Chrome Extension<br/>Advanced Setup]
35+
G -->|Features| G1[✨ Inline descriptions<br/>πŸ“ Enhanced Setup<br/>🎯 Better productivity]
36+
37+
D -->|πŸ“Š Architect<br/>Create ERDs| H[Diagrams<br/>Cloud-specific ERDs]
38+
H -->|Features| H1[πŸ—ΊοΈ Visual relationships<br/>πŸ“ DrawIO format<br/>πŸ“₯ Export ready]
39+
40+
D -->|🌐 Any Role<br/>Org-Specific| I[SF Explorer App<br/>app.sf-explorer.com]
41+
I -->|Features| I1[πŸ“š Complete metadata<br/>🎨 Custom objects<br/>πŸ“Š Visualizations]
42+
end
43+
44+
style C fill:#4CAF50,stroke:#2E7D32,color:#fff
45+
style E fill:#2196F3,stroke:#1565C0,color:#fff
46+
style F fill:#FF9800,stroke:#E65100,color:#fff
47+
style G fill:#9C27B0,stroke:#6A1B9A,color:#fff
48+
style H fill:#00BCD4,stroke:#006064,color:#fff
49+
style I fill:#F44336,stroke:#B71C1C,color:#fff
50+
```
51+
1452
## 🎯 The Challenge
1553

1654
As Salesforce developers and administrators, we often need quick access to standard object and field descriptions. But navigating through Setup or hunting through the official documentation can be time-consuming and inefficient.
@@ -103,6 +141,46 @@ Behind the scenes, here's what happens:
103141

104142
## 🎯 Choose Your Path
105143

144+
```mermaid
145+
flowchart TD
146+
Start([Need Salesforce Metadata?]) --> Q1{What's your goal?}
147+
148+
Q1 -->|Quick lookup & browse| User[πŸ‘€ User Path]
149+
Q1 -->|Build an application| Dev[πŸ’» Developer Path]
150+
Q1 -->|Improve Setup UI| Admin[πŸ”§ Admin Path]
151+
Q1 -->|Visualize relationships| Arch[πŸ“Š Architect Path]
152+
Q1 -->|Full org analysis| Org[🌐 Org-Specific Path]
153+
154+
User --> UserSol[Web Interface<br/>sf-explorer.github.io/sf-doc-to-json]
155+
UserSol --> UserBen[βœ“ Instant access<br/>βœ“ No installation<br/>βœ“ Fast search]
156+
157+
Dev --> DevSol[NPM Package<br/>npm install]
158+
DevSol --> DevBen[βœ“ Programmatic access<br/>βœ“ Type-safe<br/>βœ“ Offline-ready]
159+
160+
Admin --> AdminSol[Chrome Extension<br/>Advanced Setup]
161+
AdminSol --> AdminBen[βœ“ Enhanced Setup<br/>βœ“ Inline docs<br/>βœ“ Time-saver]
162+
163+
Arch --> ArchSol[ERD Diagrams<br/>DrawIO Charts]
164+
ArchSol --> ArchBen[βœ“ Visual models<br/>βœ“ Cloud-specific<br/>βœ“ Editable]
165+
166+
Org --> OrgSol[SF Explorer App<br/>app.sf-explorer.com]
167+
OrgSol --> OrgBen[βœ“ Your metadata<br/>βœ“ Custom objects<br/>βœ“ Full analysis]
168+
169+
UserBen --> End([Pick your solution!])
170+
DevBen --> End
171+
AdminBen --> End
172+
ArchBen --> End
173+
OrgBen --> End
174+
175+
style Start fill:#E8EAF6,stroke:#3F51B5,stroke-width:3px
176+
style End fill:#E8F5E9,stroke:#4CAF50,stroke-width:3px
177+
style UserSol fill:#2196F3,stroke:#1565C0,color:#fff
178+
style DevSol fill:#FF9800,stroke:#E65100,color:#fff
179+
style AdminSol fill:#9C27B0,stroke:#6A1B9A,color:#fff
180+
style ArchSol fill:#00BCD4,stroke:#006064,color:#fff
181+
style OrgSol fill:#F44336,stroke:#B71C1C,color:#fff
182+
```
183+
106184
Depending on your role and needs, pick the solution that works best for you:
107185

108186
| Role | Use Case | Solution |

0 commit comments

Comments
Β (0)