### Structured JSON Output Example for UI - JavaScript Source: https://www.createanything.com/docs/builder/integrations Demonstrates how to request and display AI-generated data in a structured JSON format, suitable for building dynamic user interfaces. This example shows a recipe structure with steps. ```javascript // Example: "Generate a recipe as JSON and show UI for each step" { "title": "Chocolate Cake", "steps": [ {"step": 1, "instruction": "Preheat oven..."}, {"step": 2, "instruction": "Mix ingredients..."} ] } ```