# Preset Prompt Object div strong 🔨 In Development — This section is still being developed and may change. Represents a reusable quick-start prompt associated with an assistant. ## Properties **`id`** integer Unique identifier of the preset prompt. **`name`** string Display name shown in the UI. **`value`** string The full prompt text that will be inserted into the conversation. **`icon`** object UI-friendly icon metadata for rendering. details summary Show properties **`id`** string Stable icon identifier from the Aitronos icon library. **`url`** string Absolute or CDN-backed URL to the icon asset (SVG/PNG). **`alt`** string Accessible, human-readable description of the icon. **`orderIndex`** integer Zero-based position used for sorting. **`isActive`** boolean Whether the preset prompt is visible and selectable. **`createdAt`** string ISO 8601 timestamp when the preset prompt was created. **`updatedAt`** string ISO 8601 timestamp when the preset prompt was last updated. ## Example ```json { "id": 12, "name": "Welcome Message", "value": "Hello! How can I help you today?", "icon": { "id": "icon_welcome", "url": "https://cdn.aitronos.com/icons/icon-welcome.svg", "alt": "Speech bubble icon" }, "orderIndex": 0, "isActive": true, "createdAt": "2025-01-20T10:30:00Z", "updatedAt": "2025-01-20T10:30:00Z" } ```