graph TD
A[Start] --> B[Receive ChatbotStructurePrompt]
B --> C[Initialize Skill #190]
C --> D[Parse Input Prompt]
D --> E[Extract Key Components]
E --> F[Structure JSON Elements]
F --> G1[Define Greeting Messages]
F --> G2[Define Quiz Logic]
F --> G3[Define Response Handling]
F --> G4[Define Farewell Messages]
G1 --> H[Compile JSON Configuration]
G2 --> H
G3 --> H
G4 --> H
H --> I[Validate JSON Structure]
I --> J{Is JSON Valid?}
J -->|Yes| K[Output chatbot-configuration]
J -->|No| F
K --> L[End]