graph TD
A[Start: Receive Product URL] --> B[Initialize DataExtractionSubagent]
B --> C[Call Skill #226]
C --> D[Extract Title]
C --> E[Extract Bullet Points]
C --> F[Extract Description]
C --> G[Extract Image URL]
D --> H[Format Title JSON]
E --> I[Format Bullets JSON]
F --> J[Format Description JSON]
G --> K[Format Image URL JSON]
H --> L[Combine JSON Components]
I --> L
J --> L
K --> L
L --> M[Validate JSON Structure]
M --> N[Return Final JSON Output]
N --> O[End Process]