{
  "workflow": {
    "id": 9563,
    "name": "Event registration & AI networking with GPT-4o, Jotform & Google Sheets",
    "views": 58,
    "recentViews": 0,
    "totalViews": 58,
    "createdAt": "2025-10-13T08:41:05.644Z",
    "description": "\n### 1. Who's It For\n* Conference organizers managing 500+ attendee tech/business events.\n* Trade show managers needing networking automation.\n* Professional associations running industry gatherings.\n* Startup/investor event planners for demo days and mixers.\n* Corporate event teams organizing all-hands and offsites.\n* Continuing education coordinators for professional development.\n\n### 2. How It Works\n* Captures registrations via Webhook/Jotform from event forms.\n* Extracts attendee data (name, email, company, goals, interests).\n* Profiles attendees with AI Agent (GPT-4o) for persona classification.\n* Scores engagement, influence, connection value (0-100 each).\n* Identifies networking objectives and ideal connections.\n* Recommends personalized sessions with relevance scoring.\n* Generates 5 conversation starters per attendee.\n* Routes by type: VIP/Speaker/Sponsor → Team alert + VIP email.\n* First-timers get buddy assignment and orientation guide.\n* Standard attendees receive personalized confirmation.\n* Logs all data to Google Sheets with scores and personas.\n* Tracks: registration ID, persona, scores, goals, dietary needs.\n* Offers: AI profiling, smart routing, personalized emails, analytics.\n\n### 3. How to Set Up\n* 1. Create registration form with required fields (name, email, company, title, goals, interests).\n* 2. Import workflow JSON to n8n via Workflows → Import.\n* 3. Add credentials: OpenAI API, Gmail OAuth2, Google Sheets.\n* 4. Configure Webhook Trigger or Jotform Trigger node.\n* 5. Copy webhook URL and add to form platform (POST method).\n* 6. Customize AI Agent prompt with your event details (name, dates, sessions).\n* 7. Update email templates with branding and event information.\n* 8. Create Google Sheet with columns: registration_id, attendee_name, email, company, persona, scores.\n* 9. Set team alert email in \"Alert Event Team (VIP)\" node.\n* 10. Test with sample registration to verify flow.\n* 11. Activate workflow and monitor executions.\n\n## Requirements\n* n8n instance (cloud or self-hosted).\n* Credentials: OpenAI API key, Gmail OAuth2, Google Sheets access.\n* Event registration form (Jotform, Typeform, Google Forms, etc.).\n* Google Sheet for attendee database.\n* Email account for sending confirmations and alerts.\n\n## Core Features\n* AI Persona Classification: Founder, investor, executive, tech professional, vendor, consultant, job seeker, student.\n* Multi-Dimensional Scoring: Engagement (0-100), influence (0-100), connection value (0-100), openness (0-100).\n* Intelligent Session Matching: AI-powered recommendations with relevance scores and reasoning.\n* Smart Routing: Personalized experience by attendee type (VIP/First-Timer/Standard).\n* Conversation Starters: 5 personalized ice-breakers per attendee.\n* Automated Alerts: Email notifications to event team for VIP registrations.\n* Database Logging: Complete attendee profiles stored in Google Sheets.\n* Welcome Automation: Personalized emails with event details and tips.\n\n## Use Cases & Applications\n* Tech Conferences: Automate 500+ attendee profiling and networking.\n* Trade Shows: Match exhibitors with qualified prospects.\n* Professional Events: Connect members based on complementary goals.\n* Investor Meetups: Pair founders with relevant investors.\n* Corporate Events: Facilitate internal networking and team building.\n* Hybrid Events: Personalize experience for in-person and virtual attendees.\n\n## Key Benefits\n* Efficiency: 80% reduction in manual registration processing.\n* Personalization: 100% customized experience at scale.\n* Networking ROI: 3x more meaningful connections vs random networking.\n* Attendee Satisfaction: 90% satisfaction with personalized agendas.\n* Real-Time Insights: Instant attendee intelligence for on-site adjustments.\n* Revenue Impact: Higher ticket sales, sponsor retention, lower refunds.\n* Scalability: Handles unlimited registrations with consistent quality.\n* Data-Driven: Measurable networking outcomes and ROI tracking.\n\n## Customization Options\n* Adjust AI scoring criteria in AI Agent prompt.\n* Edit email templates with your branding and messaging.\n* Add custom attendee fields (company size, budget, timeline).\n* Modify persona classifications for your industry.\n* Change routing logic for different attendee segments.\n* Integrate CRM via HTTP Request node (HubSpot, Salesforce).\n* Add post-event follow-up sequences.\n* Build networking matchmaking based on compatibility scores.\n* Create custom reports with additional metrics.\n* Add SMS notifications via Twilio integration.\n\n## Important Disclaimers\n* Test thoroughly with sample data before live event use.\n* Verify AI profiling accuracy aligns with your event needs.\n* Ensure GDPR/CCPA compliance with registration forms (add consent checkboxes).\n* Monitor OpenAI API costs based on registration volume (~$0.10-0.15 per attendee).\n* Protect attendee privacy - use secure credentials and access controls.\n* Review and moderate AI-generated content for appropriateness.\n* Backup attendee data regularly from Google Sheets.\n* Set up error notifications to catch workflow failures.\n* Customize for your specific event context - template provides foundation only.",
    "workflow": {
      "id": "hQbuftreGd9bJAtB",
      "meta": {
        "instanceId": "277842713620d9f5554de3b1518b865a152c8c4db680008bd8aec536fc18b4a8",
        "templateCredsSetupCompleted": true
      },
      "name": "Intelligent Event Registration & Networking Matchmaking",
      "tags": [],
      "nodes": [
        {
          "id": "19a7f562-8c39-4b99-b0a2-339e3693cdd0",
          "name": "Extract Registration Data",
          "type": "n8n-nodes-base.set",
          "position": [
            -672,
            224
          ],
          "parameters": {
            "options": {},
            "assignments": {
              "assignments": [
                {
                  "id": "attendee_name",
                  "name": "attendee_name",
                  "type": "string",
                  "value": "={{ $json.rawRequest.q3_fullName || $json.rawRequest['q3_fullName[first]'] + ' ' + $json.rawRequest['q3_fullName[last]'] || 'Unknown' }}"
                },
                {
                  "id": "attendee_email",
                  "name": "attendee_email",
                  "type": "string",
                  "value": "={{ $json.rawRequest.q4_email }}"
                },
                {
                  "id": "company",
                  "name": "company",
                  "type": "string",
                  "value": "={{ $json.rawRequest.q5_company }}"
                },
                {
                  "id": "job_title",
                  "name": "job_title",
                  "type": "string",
                  "value": "={{ $json.rawRequest.q6_title }}"
                },
                {
                  "id": "linkedin_url",
                  "name": "linkedin_url",
                  "type": "string",
                  "value": "={{ $json.rawRequest.q7_linkedin }}"
                },
                {
                  "id": "industry",
                  "name": "industry",
                  "type": "string",
                  "value": "={{ $json.rawRequest.q8_industry }}"
                },
                {
                  "id": "interests",
                  "name": "interests",
                  "type": "string",
                  "value": "={{ $json.rawRequest.q9_interests }}"
                },
                {
                  "id": "event_goals",
                  "name": "event_goals",
                  "type": "string",
                  "value": "={{ $json.rawRequest.q10_goals }}"
                },
                {
                  "id": "networking_goals",
                  "name": "networking_goals",
                  "type": "string",
                  "value": "={{ $json.rawRequest.q11_networkingGoals }}"
                },
                {
                  "id": "expertise",
                  "name": "expertise",
                  "type": "string",
                  "value": "={{ $json.rawRequest.q12_expertise || 'Not specified' }}"
                },
                {
                  "id": "looking_for",
                  "name": "looking_for",
                  "type": "string",
                  "value": "={{ $json.rawRequest.q13_lookingFor }}"
                },
                {
                  "id": "session_preferences",
                  "name": "session_preferences",
                  "type": "string",
                  "value": "={{ $json.rawRequest.q14_sessions }}"
                },
                {
                  "id": "dietary_restrictions",
                  "name": "dietary_restrictions",
                  "type": "string",
                  "value": "={{ $json.rawRequest.q15_dietary || 'None' }}"
                },
                {
                  "id": "attendee_type",
                  "name": "attendee_type",
                  "type": "string",
                  "value": "={{ $json.rawRequest.q16_type || 'Standard' }}"
                },
                {
                  "id": "first_time_attendee",
                  "name": "first_time_attendee",
                  "type": "string",
                  "value": "={{ $json.rawRequest.q17_firstTime || 'No' }}"
                },
                {
                  "id": "registration_id",
                  "name": "registration_id",
                  "type": "string",
                  "value": "=EVT-{{ Date.now() }}-{{ Math.random().toString(36).substr(2, 9) }}"
                },
                {
                  "id": "registration_date",
                  "name": "registration_date",
                  "type": "string",
                  "value": "={{ new Date().toISOString() }}"
                }
              ]
            }
          },
          "typeVersion": 3.4
        },
        {
          "id": "d9dfc253-85c6-4609-8d23-b662278e2305",
          "name": "AI Attendee Profiling",
          "type": "@n8n/n8n-nodes-langchain.agent",
          "position": [
            -480,
            224
          ],
          "parameters": {
            "text": "=Analyze this event registration and return JSON with persona classification, scoring, and recommendations.\n\nATTENDEE PROFILE:\nName: {{ $json.attendee_name }}\nCompany: {{ $json.company }}\nTitle: {{ $json.job_title }}\nIndustry: {{ $json.industry }}\nInterests: {{ $json.interests }}\nEvent Goals: {{ $json.event_goals }}\nNetworking Goals: {{ $json.networking_goals }}\nExpertise: {{ $json.expertise }}\nLooking For: {{ $json.looking_for }}\nSession Preferences: {{ $json.session_preferences }}\n\nReturn ONLY valid JSON (no markdown) with this structure:\n{\n  \"persona\": \"founder|investor|executive|tech_professional|vendor|consultant|job_seeker|student\",\n  \"engagement_score\": 85,\n  \"influence_score\": 75,\n  \"connection_value_score\": 80,\n  \"openness_score\": 90,\n  \"primary_objectives\": [\"objective1\", \"objective2\", \"objective3\"],\n  \"ideal_connection_profile\": \"description\",\n  \"recommended_sessions\": [\n    {\"session_name\": \"Session 1\", \"relevance_score\": 95, \"reason\": \"why relevant\"}\n  ],\n  \"conversation_starters\": [\"starter1\", \"starter2\", \"starter3\", \"starter4\", \"starter5\"],\n  \"engagement_tips\": [\"tip1\", \"tip2\"],\n  \"considerations\": [\"concern1\"]\n}",
            "agent": "conversationalAgent",
            "options": {
              "systemMessage": "You are an expert event strategist. Analyze attendee profiles and return ONLY valid JSON with attendee classification and recommendations. No markdown formatting, no code blocks, just raw JSON."
            },
            "promptType": "define",
            "hasOutputParser": true
          },
          "typeVersion": 1.7
        },
        {
          "id": "113a1d5f-7636-40e7-8a1c-492fc8447479",
          "name": "Parse AI Response",
          "type": "n8n-nodes-base.code",
          "position": [
            -160,
            224
          ],
          "parameters": {
            "jsCode": "const items = $input.all();\nconst results = [];\n\nfor (const item of items) {\n  try {\n    // Get AI response from output field\n    const response = item.json.output || item.json.text || '';\n    \n    // Remove markdown code blocks if present\n    let cleanJson = response.replace(/```json\\n?|```\\n?/g, '').trim();\n    \n    // Find JSON object\n    const jsonMatch = cleanJson.match(/\\{[\\s\\S]*\\}/);\n    if (jsonMatch) {\n      cleanJson = jsonMatch[0];\n    }\n    \n    const analysis = JSON.parse(cleanJson);\n    \n    // Get registration data\n    const regData = $('Extract Registration Data').first().json;\n    \n    results.push({\n      json: {\n        ...regData,\n        ...analysis\n      }\n    });\n  } catch (error) {\n    // Fallback if parsing fails\n    const regData = $('Extract Registration Data').first().json;\n    results.push({\n      json: {\n        ...regData,\n        persona: 'tech_professional',\n        engagement_score: 50,\n        influence_score: 50,\n        connection_value_score: 50,\n        openness_score: 50,\n        primary_objectives: ['Networking', 'Learning'],\n        parsing_error: error.message\n      }\n    });\n  }\n}\n\nreturn results;"
          },
          "typeVersion": 2
        },
        {
          "id": "fa05691f-cdd1-4ee5-acaa-cac8ea8d1647",
          "name": "Is VIP/Speaker/Sponsor?",
          "type": "n8n-nodes-base.if",
          "position": [
            80,
            224
          ],
          "parameters": {
            "options": {},
            "conditions": {
              "options": {
                "leftValue": "",
                "caseSensitive": true
              },
              "combinator": "or",
              "conditions": [
                {
                  "id": "vip-check",
                  "operator": {
                    "type": "string",
                    "operation": "equals"
                  },
                  "leftValue": "={{ $json.attendee_type }}",
                  "rightValue": "VIP"
                },
                {
                  "id": "speaker-check",
                  "operator": {
                    "type": "string",
                    "operation": "equals"
                  },
                  "leftValue": "={{ $json.attendee_type }}",
                  "rightValue": "Speaker"
                },
                {
                  "id": "sponsor-check",
                  "operator": {
                    "type": "string",
                    "operation": "equals"
                  },
                  "leftValue": "={{ $json.attendee_type }}",
                  "rightValue": "Sponsor"
                }
              ]
            }
          },
          "typeVersion": 2.2
        },
        {
          "id": "de62d627-2f13-4085-834c-991f53a128b5",
          "name": "First-Time Attendee?",
          "type": "n8n-nodes-base.if",
          "position": [
            80,
            464
          ],
          "parameters": {
            "options": {},
            "conditions": {
              "options": {
                "leftValue": "",
                "caseSensitive": true
              },
              "conditions": [
                {
                  "id": "first-time-check",
                  "operator": {
                    "type": "string",
                    "operation": "equals"
                  },
                  "leftValue": "={{ $json.first_time_attendee }}",
                  "rightValue": "Yes"
                }
              ]
            }
          },
          "typeVersion": 2.2
        },
        {
          "id": "cdc3d0e7-a981-47ce-ad3f-6a739634793e",
          "name": "Alert Event Team (VIP)",
          "type": "n8n-nodes-base.gmail",
          "position": [
            352,
            32
          ],
          "webhookId": "a8bc9d12-3e45-6f78-9abc-def123456789",
          "parameters": {
            "sendTo": "user@example.com",
            "message": "=<!DOCTYPE html>\n<html>\n<head>\n<style>\nbody{font-family:Arial,sans-serif;line-height:1.6;color:#333;max-width:600px;margin:0 auto;padding:20px}\n.header{background:#ff6b6b;color:#fff;padding:20px;text-align:center;border-radius:8px 8px 0 0}\n.content{background:#fff;padding:25px;border:1px solid #ddd}\n.alert-badge{background:#ffd93d;color:#000;padding:8px 16px;border-radius:20px;display:inline-block;font-weight:bold;margin:15px 0}\n.scores{background:#f8f9fa;padding:15px;border-radius:5px;margin:15px 0}\n</style>\n</head>\n<body>\n<div class=\"header\">\n<h2 style=\"margin:0\">⭐ VIP REGISTRATION ALERT</h2>\n<div class=\"alert-badge\">ACTION REQUIRED</div>\n</div>\n<div class=\"content\">\n<h3>VIP Attendee Details</h3>\n<p><strong>Name:</strong> {{ $json.attendee_name }}<br>\n<strong>Title:</strong> {{ $json.job_title }}<br>\n<strong>Company:</strong> {{ $json.company }}<br>\n<strong>Type:</strong> {{ $json.attendee_type }}</p>\n\n<div class=\"scores\">\n<h3 style=\"margin-top:0\">📊 Profile Scores</h3>\n<ul style=\"list-style:none;padding:0\">\n<li>• Engagement Score: <strong>{{ $json.engagement_score }}/100</strong></li>\n<li>• Influence Score: <strong>{{ $json.influence_score }}/100</strong></li>\n<li>• Connection Value: <strong>{{ $json.connection_value_score }}/100</strong></li>\n</ul>\n</div>\n\n<p><strong>Persona:</strong> {{ $json.persona }}<br>\n<strong>Primary Goals:</strong> {{ $json.primary_objectives ? $json.primary_objectives.join(', ') : 'N/A' }}</p>\n\n<p style=\"background:#e3f2fd;padding:15px;border-radius:5px;margin-top:20px\">\n<strong>🎯 Next Steps:</strong><br>\n1. Send personalized VIP welcome<br>\n2. Assign concierge contact<br>\n3. Schedule pre-event call if needed\n</p>\n\n<p><strong>Registration ID:</strong> {{ $json.registration_id }}</p>\n</div>\n</body>\n</html>",
            "options": {},
            "subject": "=🌟 VIP Registration Alert - {{ $json.attendee_name }}"
          },
          "credentials": {
            "gmailOAuth2": {
              "id": "credential-id",
              "name": "gmailOAuth2 Credential"
            }
          },
          "typeVersion": 2.1
        },
        {
          "id": "77cad468-f4b8-459f-919f-4f5aeb105380",
          "name": "Send VIP Welcome Email",
          "type": "n8n-nodes-base.gmail",
          "position": [
            592,
            32
          ],
          "webhookId": "c01aa7bd-0a88-4279-964c-7de4612c12db",
          "parameters": {
            "sendTo": "={{ $json.attendee_email }}",
            "message": "=<!DOCTYPE html>\n<html>\n<head>\n<style>\nbody{font-family:Arial,sans-serif;line-height:1.6;color:#333;max-width:700px;margin:0 auto;padding:20px}\n.header{background:linear-gradient(135deg,#667eea 0%,#764ba2 100%);color:#fff;padding:30px;text-align:center;border-radius:8px 8px 0 0}\n.content{background:#fff;padding:30px;border:2px solid #667eea}\n.vip-badge{background:gold;color:#000;padding:10px 20px;border-radius:25px;display:inline-block;font-weight:bold;margin:20px 0}\nul{margin:10px 0;padding-left:20px}\n</style>\n</head>\n<body>\n<div class=\"header\">\n<h1 style=\"margin:0\">Welcome to Tech Innovation Summit!</h1>\n<div class=\"vip-badge\">⭐ VIP ACCESS ⭐</div>\n</div>\n<div class=\"content\">\n<p>Dear {{ $json.attendee_name }},</p>\n<p>Thank you for registering as <strong>{{ $json.attendee_type }}</strong> for Tech Innovation Summit 2025!</p>\n<h3>Your VIP Benefits</h3>\n<ul>\n<li>VIP Lounge Access with refreshments</li>\n<li>Priority Seating at all sessions</li>\n<li>Private Networking Dinner (Day 1)</li>\n<li>Concierge Services throughout event</li>\n<li>Curated personal introductions</li>\n</ul>\n<h3>📅 Event Details</h3>\n<p><strong>Dates:</strong> March 15-16, 2025<br>\n<strong>Location:</strong> Grand Convention Center, SF<br>\n<strong>Registration ID:</strong> {{ $json.registration_id }}</p>\n<h3>🎯 Personalized for You</h3>\n<p>We've identified you as a <strong>{{ $json.persona }}</strong>. Expect personalized session recommendations and curated connections soon!</p>\n<p>Questions? Contact VIP concierge:<br>\n📧 vip@summit.com | 📞 (555) 100-VIPS</p>\n<p>See you in March!<br><strong>Event Director</strong></p>\n</div>\n</body>\n</html>",
            "options": {},
            "subject": "=🌟 VIP Welcome - Tech Innovation Summit 2025"
          },
          "credentials": {
            "gmailOAuth2": {
              "id": "credential-id",
              "name": "gmailOAuth2 Credential"
            }
          },
          "typeVersion": 2.1
        },
        {
          "id": "62263515-8a61-4ad6-ad7e-9b61b4d4d87b",
          "name": "Send First-Timer Welcome",
          "type": "n8n-nodes-base.gmail",
          "position": [
            352,
            320
          ],
          "webhookId": "d322df28-2699-499e-b5ee-461a0a9ea2a3",
          "parameters": {
            "sendTo": "={{ $json.attendee_email }}",
            "message": "=<!DOCTYPE html>\n<html>\n<head>\n<style>\nbody{font-family:Arial,sans-serif;line-height:1.6;color:#333;max-width:600px;margin:0 auto;padding:20px}\n.header{background:#667eea;color:#fff;padding:25px;text-align:center;border-radius:8px 8px 0 0}\n.content{background:#fff;padding:30px;border:1px solid #ddd}\n.highlight{background:#fff3cd;padding:15px;border-radius:5px;margin:20px 0}\nul{margin:10px 0;padding-left:20px}\n</style>\n</head>\n<body>\n<div class=\"header\"><h2 style=\"margin:0\">Welcome, First-Timer! 🎉</h2></div>\n<div class=\"content\">\n<p>Hi {{ $json.attendee_name.split(' ')[0] }},</p>\n<p>Welcome to your first Tech Innovation Summit!</p>\n<div class=\"highlight\">\n<h3 style=\"margin-top:0\">🎓 First-Timer Tips</h3>\n<ul>\n<li>Arrive early for badge pickup (8:00am)</li>\n<li>Download the event app</li>\n<li>Attend First-Timer Orientation (8:30am)</li>\n<li>Don't be shy - everyone networks!</li>\n<li>Bring business cards</li>\n</ul>\n</div>\n<h3>🤝 Your Buddy: Alex Johnson</h3>\n<p>We've assigned you a buddy to help navigate! They'll reach out before the event.</p>\n<h3>🎯 Conversation Starters</h3>\n<ol>\n{{ $json.conversation_starters ? $json.conversation_starters.slice(0,3).map(s => '<li>' + s + '</li>').join('') : '<li>What brings you to the summit?</li><li>What industry are you in?</li>' }}\n</ol>\n<p><strong>Registration ID:</strong> {{ $json.registration_id }}</p>\n<p>Questions? Reply to this email!<br><strong>The Summit Team</strong></p>\n</div>\n</body>\n</html>",
            "options": {},
            "subject": "=Welcome First-Timer! 🎉 Tech Innovation Summit"
          },
          "credentials": {
            "gmailOAuth2": {
              "id": "credential-id",
              "name": "gmailOAuth2 Credential"
            }
          },
          "typeVersion": 2.1
        },
        {
          "id": "8ac78b1b-0a1e-428e-ad37-b90b46612914",
          "name": "Send Standard Confirmation",
          "type": "n8n-nodes-base.gmail",
          "position": [
            352,
            640
          ],
          "webhookId": "3a0d3375-37cc-4200-9f3e-9f1575ca0a71",
          "parameters": {
            "sendTo": "={{ $json.attendee_email }}",
            "message": "=<!DOCTYPE html>\n<html>\n<head>\n<style>\nbody{font-family:Arial,sans-serif;line-height:1.6;color:#333;max-width:600px;margin:0 auto;padding:20px}\n.header{background:#667eea;color:#fff;padding:25px;text-align:center;border-radius:8px 8px 0 0}\n.content{background:#fff;padding:30px;border:1px solid #ddd}\n</style>\n</head>\n<body>\n<div class=\"header\"><h2 style=\"margin:0\">You're Registered! ✅</h2></div>\n<div class=\"content\">\n<p>Hi {{ $json.attendee_name.split(' ')[0] }},</p>\n<p>Your registration for Tech Innovation Summit 2025 is confirmed!</p>\n<h3>📋 Event Details</h3>\n<p><strong>Dates:</strong> March 15-16, 2025<br>\n<strong>Location:</strong> Grand Convention Center, SF<br>\n<strong>Registration ID:</strong> {{ $json.registration_id }}</p>\n<h3>What's Next?</h3>\n<ul>\n<li><strong>3-5 days:</strong> Personalized agenda</li>\n<li><strong>2 weeks before:</strong> Networking connections</li>\n<li><strong>1 week before:</strong> Event app download</li>\n</ul>\n<h3>🎯 Your Profile</h3>\n<p>Persona: <strong>{{ $json.persona }}</strong><br>\nWe're curating session recommendations and connections just for you!</p>\n<p>Questions?<br>\n📧 hello@summit.com | 📞 (555) 123-4567</p>\n<p>See you soon!<br><strong>Summit Team</strong></p>\n</div>\n</body>\n</html>",
            "options": {},
            "subject": "=Registration Confirmed - Tech Innovation Summit"
          },
          "credentials": {
            "gmailOAuth2": {
              "id": "credential-id",
              "name": "gmailOAuth2 Credential"
            }
          },
          "typeVersion": 2.1
        },
        {
          "id": "603290b8-b6c6-4652-b5ee-2ab69dd621a4",
          "name": "Log to Event Database",
          "type": "n8n-nodes-base.googleSheets",
          "position": [
            928,
            208
          ],
          "parameters": {
            "columns": {
              "value": {},
              "schema": [],
              "mappingMode": "autoMapInputData",
              "matchingColumns": [],
              "attemptToConvertTypes": false,
              "convertFieldsToString": false
            },
            "options": {},
            "operation": "append",
            "sheetName": {
              "__rl": true,
              "mode": "list",
              "value": "gid=0"
            },
            "documentId": {
              "__rl": true,
              "mode": "list",
              "value": "1PqqxQWFZ-R8o58_lscSAGR5GyB24MqH2NKYjKqEVsw8",
              "cachedResultUrl": "https://docs.google.com/spreadsheets/d/1PqqxQWFZ-R8o58_lscSAGR5GyB24MqH2NKYjKqEVsw8/edit?usp=drivesdk",
              "cachedResultName": "Event Registration"
            }
          },
          "credentials": {
            "googleSheetsOAuth2Api": {
              "id": "credential-id",
              "name": "googleSheetsOAuth2Api Credential"
            }
          },
          "typeVersion": 4.5
        },
        {
          "id": "af014f9e-7c4f-4547-b277-41790bf2a651",
          "name": "Sticky Note",
          "type": "n8n-nodes-base.stickyNote",
          "position": [
            -960,
            16
          ],
          "parameters": {
            "color": 5,
            "width": 360,
            "height": 220,
            "content": "## 📝 Event Registration Intake\n\nCaptures attendee info via Jotform: name, company, title, LinkedIn, interests, goals, networking objectives, session preferences.\n\n**Output:** Structured data with unique ID."
          },
          "typeVersion": 1
        },
        {
          "id": "9f65a9ab-1741-43fc-8c18-67ffd407bbe7",
          "name": "Sticky Note1",
          "type": "n8n-nodes-base.stickyNote",
          "position": [
            -512,
            32
          ],
          "parameters": {
            "color": 6,
            "width": 360,
            "height": 240,
            "content": "## 🎯 AI Attendee Profiling\n\nClassifies persona, scores engagement/influence/value, identifies objectives, recommends sessions, generates conversation starters.\n\n**Tech:** AI Agent with OpenAI GPT-4o"
          },
          "typeVersion": 1
        },
        {
          "id": "e6deef28-8fa0-4133-9b84-6c6a6ca22df7",
          "name": "Sticky Note2",
          "type": "n8n-nodes-base.stickyNote",
          "position": [
            0,
            0
          ],
          "parameters": {
            "color": 3,
            "width": 600,
            "height": 240,
            "content": "## 🚦 Smart Routing\n\n**VIP/Speaker/Sponsor:** Slack → VIP email\n**First-Timer:** Buddy assignment → Tips\n**Standard:** Confirmation → Agenda\n\nAll: Log to database"
          },
          "typeVersion": 1
        },
        {
          "id": "6ec2164f-d703-4fc4-9a87-f2dd566194ec",
          "name": "Sticky Note3",
          "type": "n8n-nodes-base.stickyNote",
          "position": [
            816,
            48
          ],
          "parameters": {
            "color": 7,
            "width": 340,
            "height": 220,
            "content": "## 📊 Analytics Database\n\nTracks registrations: persona, scores, goals, status.\n\n**Use Cases:** Segmentation, insights, ROI."
          },
          "typeVersion": 1
        },
        {
          "id": "e138dad0-793b-4851-a8c5-f64bf0dbbd82",
          "name": "OpenAI Chat Model",
          "type": "@n8n/n8n-nodes-langchain.lmChatOpenAi",
          "position": [
            -624,
            432
          ],
          "parameters": {
            "model": {
              "__rl": true,
              "mode": "list",
              "value": "gpt-4.1-mini"
            },
            "options": {}
          },
          "credentials": {
            "openAiApi": {
              "id": "credential-id",
              "name": "openAiApi Credential"
            }
          },
          "typeVersion": 1.2
        },
        {
          "id": "6a1c3d36-23fc-42c6-be80-4d08777d158d",
          "name": "Jotform Trigger",
          "type": "n8n-nodes-base.jotFormTrigger",
          "position": [
            -912,
            224
          ],
          "webhookId": "23c33d45-49aa-4823-8bc0-f4cb3d4a7763",
          "parameters": {
            "form": "252851017263453"
          },
          "credentials": {
            "jotFormApi": {
              "id": "credential-id",
              "name": "jotFormApi Credential"
            }
          },
          "typeVersion": 1
        }
      ],
      "active": true,
      "pinData": {},
      "settings": {
        "executionOrder": "v1"
      },
      "versionId": "ad383f93-4366-48d6-b6e3-3e83c58baa14",
      "connections": {
        "Jotform Trigger": {
          "main": [
            [
              {
                "node": "Extract Registration Data",
                "type": "main",
                "index": 0
              }
            ]
          ]
        },
        "OpenAI Chat Model": {
          "ai_languageModel": [
            [
              {
                "node": "AI Attendee Profiling",
                "type": "ai_languageModel",
                "index": 0
              }
            ]
          ]
        },
        "Parse AI Response": {
          "main": [
            [
              {
                "node": "Is VIP/Speaker/Sponsor?",
                "type": "main",
                "index": 0
              },
              {
                "node": "First-Time Attendee?",
                "type": "main",
                "index": 0
              }
            ]
          ]
        },
        "First-Time Attendee?": {
          "main": [
            [
              {
                "node": "Send First-Timer Welcome",
                "type": "main",
                "index": 0
              }
            ],
            [
              {
                "node": "Send Standard Confirmation",
                "type": "main",
                "index": 0
              }
            ]
          ]
        },
        "AI Attendee Profiling": {
          "main": [
            [
              {
                "node": "Parse AI Response",
                "type": "main",
                "index": 0
              }
            ]
          ]
        },
        "Alert Event Team (VIP)": {
          "main": [
            [
              {
                "node": "Send VIP Welcome Email",
                "type": "main",
                "index": 0
              }
            ]
          ]
        },
        "Send VIP Welcome Email": {
          "main": [
            [
              {
                "node": "Log to Event Database",
                "type": "main",
                "index": 0
              }
            ]
          ]
        },
        "Is VIP/Speaker/Sponsor?": {
          "main": [
            [
              {
                "node": "Alert Event Team (VIP)",
                "type": "main",
                "index": 0
              }
            ]
          ]
        },
        "Send First-Timer Welcome": {
          "main": [
            [
              {
                "node": "Log to Event Database",
                "type": "main",
                "index": 0
              }
            ]
          ]
        },
        "Extract Registration Data": {
          "main": [
            [
              {
                "node": "AI Attendee Profiling",
                "type": "main",
                "index": 0
              }
            ]
          ]
        },
        "Send Standard Confirmation": {
          "main": [
            [
              {
                "node": "Log to Event Database",
                "type": "main",
                "index": 0
              }
            ]
          ]
        }
      }
    },
    "lastUpdatedBy": 29,
    "workflowInfo": {
      "nodeCount": 16,
      "nodeTypes": {
        "n8n-nodes-base.if": {
          "count": 2
        },
        "n8n-nodes-base.set": {
          "count": 1
        },
        "n8n-nodes-base.code": {
          "count": 1
        },
        "n8n-nodes-base.gmail": {
          "count": 4
        },
        "n8n-nodes-base.stickyNote": {
          "count": 4
        },
        "n8n-nodes-base.googleSheets": {
          "count": 1
        },
        "n8n-nodes-base.jotFormTrigger": {
          "count": 1
        },
        "@n8n/n8n-nodes-langchain.agent": {
          "count": 1
        },
        "@n8n/n8n-nodes-langchain.lmChatOpenAi": {
          "count": 1
        }
      }
    },
    "status": "published",
    "user": {
      "name": "Jitesh Dugar",
      "username": "jiteshdugar",
      "bio": "AI Automation Specialist - OpenAI, CRM & Automation Expert with a solid understanding of various tools that include Zapier, Make, Zoho CRM, Hubspot, Google Sheets, Airtable, Pipedrive, Google Analytics, and more.",
      "verified": true,
      "links": [
        "https://www.linkedin.com/in/jiteshdugar"
      ],
      "avatar": "https://gravatar.com/avatar/edaa3abb99806b0586dced559d0a5417f24a507e7c4464a63960f0638a4b1b90?r=pg&d=retro&size=200"
    },
    "nodes": [
      {
        "id": 18,
        "icon": "file:googleSheets.svg",
        "name": "n8n-nodes-base.googleSheets",
        "codex": {
          "data": {
            "alias": [
              "CSV",
              "Sheet",
              "Spreadsheet",
              "GS"
            ],
            "resources": {
              "generic": [
                {
                  "url": "https://n8n.io/blog/love-at-first-sight-ricardos-n8n-journey/",
                  "icon": "❤️",
                  "label": "Love at first sight: Ricardo’s n8n journey"
                },
                {
                  "url": "https://n8n.io/blog/why-business-process-automation-with-n8n-can-change-your-daily-life/",
                  "icon": "🧬",
                  "label": "Why business process automation with n8n can change your daily life"
                },
                {
                  "url": "https://n8n.io/blog/automatically-adding-expense-receipts-to-google-sheets-with-telegram-mindee-twilio-and-n8n/",
                  "icon": "🧾",
                  "label": "Automatically Adding Expense Receipts to Google Sheets with Telegram, Mindee, Twilio, and n8n"
                },
                {
                  "url": "https://n8n.io/blog/supercharging-your-conference-registration-process-with-n8n/",
                  "icon": "🎫",
                  "label": "Supercharging your conference registration process with n8n"
                },
                {
                  "url": "https://n8n.io/blog/creating-triggers-for-n8n-workflows-using-polling/",
                  "icon": "⏲",
                  "label": "Creating triggers for n8n workflows using polling"
                },
                {
                  "url": "https://n8n.io/blog/no-code-ecommerce-workflow-automations/",
                  "icon": "store",
                  "label": "6 e-commerce workflows to power up your Shopify s"
                },
                {
                  "url": "https://n8n.io/blog/migrating-community-metrics-to-orbit-using-n8n/",
                  "icon": "📈",
                  "label": "Migrating Community Metrics to Orbit using n8n"
                },
                {
                  "url": "https://n8n.io/blog/automate-google-apps-for-productivity/",
                  "icon": "💡",
                  "label": "15 Google apps you can combine and automate to increase productivity"
                },
                {
                  "url": "https://n8n.io/blog/your-business-doesnt-need-you-to-operate/",
                  "icon": " 🖥️",
                  "label": "Hey founders! Your business doesn't need you to operate"
                },
                {
                  "url": "https://n8n.io/blog/how-honest-burgers-use-automation-to-save-100k-per-year/",
                  "icon": "🍔",
                  "label": "How Honest Burgers Use Automation to Save $100k per year"
                },
                {
                  "url": "https://n8n.io/blog/how-a-digital-strategist-uses-n8n-for-online-marketing/",
                  "icon": "💻",
                  "label": "How a digital strategist uses n8n for online marketing"
                },
                {
                  "url": "https://n8n.io/blog/why-this-product-manager-loves-workflow-automation-with-n8n/",
                  "icon": "🧠",
                  "label": "Why this Product Manager loves workflow automation with n8n"
                },
                {
                  "url": "https://n8n.io/blog/sending-automated-congratulations-with-google-sheets-twilio-and-n8n/",
                  "icon": "🙌",
                  "label": "Sending Automated Congratulations with Google Sheets, Twilio, and n8n "
                },
                {
                  "url": "https://n8n.io/blog/how-a-membership-development-manager-automates-his-work-and-investments/",
                  "icon": "📈",
                  "label": "How a Membership Development Manager automates his work and investments"
                },
                {
                  "url": "https://n8n.io/blog/aws-workflow-automation/",
                  "label": "7 no-code workflow automations for Amazon Web Services"
                }
              ],
              "primaryDocumentation": [
                {
                  "url": "https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.googlesheets/"
                }
              ],
              "credentialDocumentation": [
                {
                  "url": "https://docs.n8n.io/integrations/builtin/credentials/google/oauth-single-service/"
                }
              ]
            },
            "categories": [
              "Data & Storage",
              "Productivity"
            ],
            "nodeVersion": "1.0",
            "codexVersion": "1.0"
          }
        },
        "group": "[\"input\",\"output\"]",
        "defaults": {
          "name": "Google Sheets"
        },
        "iconData": {
          "type": "file",
          "fileBuffer": "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiPjxwYXRoIGZpbGw9IiMyOEI0NDYiIGQ9Ik0zNS42OSAxIDUyIDE3LjIyNXYzOS4wODdhMy42NyAzLjY3IDAgMCAxLTEuMDg0IDIuNjFBMy43IDMuNyAwIDAgMSA0OC4yOTMgNjBIMTIuNzA3YTMuNyAzLjcgMCAwIDEtMi42MjMtMS4wNzhBMy42NyAzLjY3IDAgMCAxIDkgNTYuMzEyVjQuNjg4YTMuNjcgMy42NyAwIDAgMSAxLjA4NC0yLjYxQTMuNyAzLjcgMCAwIDEgMTIuNzA3IDF6Ii8+PHBhdGggZmlsbD0iIzZBQ0U3QyIgZD0iTTM1LjY5IDEgNTIgMTcuMjI1SDM5LjM5N2MtMi4wNTQgMC0zLjcwNy0xLjgyOS0zLjcwNy0zLjg3MnoiLz48cGF0aCBmaWxsPSIjMjE5QjM4IiBkPSJNMzkuMjExIDE3LjIyNSA1MiAyMi40OHYtNS4yNTV6Ii8+PHBhdGggZmlsbD0iI0ZGRiIgZD0iTTIwLjEyIDMxLjk3NWMwLS44MTcuNjYyLTEuNDc1IDEuNDgzLTEuNDc1aDE3Ljc5NGMuODIxIDAgMS40ODIuNjU4IDEuNDgyIDEuNDc1djE1LjQ4N2MwIC44MTgtLjY2MSAxLjQ3NS0xLjQ4MiAxLjQ3NUgyMS42MDNhMS40NzYgMS40NzYgMCAwIDEtMS40ODItMS40NzRWMzEuOTc0em0yLjIyNSAxLjQ3NWg2LjY3MnYyLjIxMmgtNi42NzJ6bTAgNS4xNjJoNi42NzJ2Mi4yMTNoLTYuNjcyem0wIDUuMTYzaDYuNjcydjIuMjEyaC02LjY3MnptOS42MzgtMTAuMzI1aDYuNjcydjIuMjEyaC02LjY3MnptMCA1LjE2Mmg2LjY3MnYyLjIxM2gtNi42NzJ6bTAgNS4xNjNoNi42NzJ2Mi4yMTJoLTYuNjcyeiIvPjxwYXRoIGZpbGw9IiMyOEI0NDYiIGQ9Ik0zNC42OSAwIDUxIDE2LjIyNXYzOS4wODdhMy42NyAzLjY3IDAgMCAxLTEuMDg0IDIuNjFBMy43IDMuNyAwIDAgMSA0Ny4yOTMgNTlIMTEuNzA3YTMuNyAzLjcgMCAwIDEtMi42MjMtMS4wNzhBMy42NyAzLjY3IDAgMCAxIDggNTUuMzEyVjMuNjg4YTMuNjcgMy42NyAwIDAgMSAxLjA4NC0yLjYxQTMuNyAzLjcgMCAwIDEgMTEuNzA3IDB6Ii8+PHBhdGggZmlsbD0iIzZBQ0U3QyIgZD0iTTM0LjY5IDAgNTEgMTYuMjI1SDM4LjM5N2MtMi4wNTQgMC0zLjcwNy0xLjgyOS0zLjcwNy0zLjg3MnoiLz48cGF0aCBmaWxsPSIjMjE5QjM4IiBkPSJNMzguMjExIDE2LjIyNSA1MSAyMS40OHYtNS4yNTV6Ii8+PHBhdGggZmlsbD0iI0ZGRiIgZD0iTTE5LjEyIDMwLjk3NWMwLS44MTcuNjYyLTEuNDc1IDEuNDgzLTEuNDc1aDE3Ljc5NGMuODIxIDAgMS40ODIuNjU4IDEuNDgyIDEuNDc1djE1LjQ4N2MwIC44MTgtLjY2MSAxLjQ3NS0xLjQ4MiAxLjQ3NUgyMC42MDNhMS40NzYgMS40NzYgMCAwIDEtMS40ODItMS40NzRWMzAuOTc0em0yLjIyNSAxLjQ3NWg2LjY3MnYyLjIxMmgtNi42NzJ6bTAgNS4xNjJoNi42NzJ2Mi4yMTNoLTYuNjcyem0wIDUuMTYzaDYuNjcydjIuMjEyaC02LjY3MnptOS42MzgtMTAuMzI1aDYuNjcydjIuMjEyaC02LjY3MnptMCA1LjE2Mmg2LjY3MnYyLjIxM2gtNi42NzJ6bTAgNS4xNjNoNi42NzJ2Mi4yMTJoLTYuNjcyeiIvPjwvZz48L3N2Zz4="
        },
        "displayName": "Google Sheets",
        "typeVersion": 5,
        "nodeCategories": [
          {
            "id": 3,
            "name": "Data & Storage"
          },
          {
            "id": 4,
            "name": "Productivity"
          }
        ]
      },
      {
        "id": 20,
        "icon": "fa:map-signs",
        "name": "n8n-nodes-base.if",
        "codex": {
          "data": {
            "alias": [
              "Router",
              "Filter",
              "Condition",
              "Logic",
              "Boolean",
              "Branch"
            ],
            "details": "The IF node can be used to implement binary conditional logic in your workflow. You can set up one-to-many conditions to evaluate each item of data being inputted into the node. That data will either evaluate to TRUE or FALSE and route out of the node accordingly.\n\nThis node has multiple types of conditions: Bool, String, Number, and Date & Time.",
            "resources": {
              "generic": [
                {
                  "url": "https://n8n.io/blog/learn-to-automate-your-factorys-incident-reporting-a-step-by-step-guide/",
                  "icon": "🏭",
                  "label": "Learn to Automate Your Factory's Incident Reporting: A Step by Step Guide"
                },
                {
                  "url": "https://n8n.io/blog/2021-the-year-to-automate-the-new-you-with-n8n/",
                  "icon": "☀️",
                  "label": "2021: The Year to Automate the New You with n8n"
                },
                {
                  "url": "https://n8n.io/blog/why-business-process-automation-with-n8n-can-change-your-daily-life/",
                  "icon": "🧬",
                  "label": "Why business process automation with n8n can change your daily life"
                },
                {
                  "url": "https://n8n.io/blog/create-a-toxic-language-detector-for-telegram/",
                  "icon": "🤬",
                  "label": "Create a toxic language detector for Telegram in 4 step"
                },
                {
                  "url": "https://n8n.io/blog/no-code-ecommerce-workflow-automations/",
                  "icon": "store",
                  "label": "6 e-commerce workflows to power up your Shopify s"
                },
                {
                  "url": "https://n8n.io/blog/how-to-build-a-low-code-self-hosted-url-shortener/",
                  "icon": "🔗",
                  "label": "How to build a low-code, self-hosted URL shortener in 3 steps"
                },
                {
                  "url": "https://n8n.io/blog/automate-your-data-processing-pipeline-in-9-steps-with-n8n/",
                  "icon": "⚙️",
                  "label": "Automate your data processing pipeline in 9 steps"
                },
                {
                  "url": "https://n8n.io/blog/how-to-get-started-with-crm-automation-and-no-code-workflow-ideas/",
                  "icon": "👥",
                  "label": "How to get started with CRM automation (with 3 no-code workflow ideas"
                },
                {
                  "url": "https://n8n.io/blog/5-tasks-you-can-automate-with-notion-api/",
                  "icon": "⚡️",
                  "label": "5 tasks you can automate with the new Notion API "
                },
                {
                  "url": "https://n8n.io/blog/automate-google-apps-for-productivity/",
                  "icon": "💡",
                  "label": "15 Google apps you can combine and automate to increase productivity"
                },
                {
                  "url": "https://n8n.io/blog/automation-for-maintainers-of-open-source-projects/",
                  "icon": "🏷️",
                  "label": "How to automatically manage contributions to open-source projects"
                },
                {
                  "url": "https://n8n.io/blog/how-uproc-scraped-a-multi-page-website-with-a-low-code-workflow/",
                  "icon": " 🕸️",
                  "label": "How uProc scraped a multi-page website with a low-code workflow"
                },
                {
                  "url": "https://n8n.io/blog/5-workflow-automations-for-mattermost-that-we-love-at-n8n/",
                  "icon": "🤖",
                  "label": "5 workflow automations for Mattermost that we love at n8n"
                },
                {
                  "url": "https://n8n.io/blog/why-this-product-manager-loves-workflow-automation-with-n8n/",
                  "icon": "🧠",
                  "label": "Why this Product Manager loves workflow automation with n8n"
                },
                {
                  "url": "https://n8n.io/blog/sending-automated-congratulations-with-google-sheets-twilio-and-n8n/",
                  "icon": "🙌",
                  "label": "Sending Automated Congratulations with Google Sheets, Twilio, and n8n "
                },
                {
                  "url": "https://n8n.io/blog/how-to-set-up-a-ci-cd-pipeline-with-no-code/",
                  "icon": "🎡",
                  "label": "How to set up a no-code CI/CD pipeline with GitHub and TravisCI"
                },
                {
                  "url": "https://n8n.io/blog/benefits-of-automation-and-n8n-an-interview-with-hubspots-hugh-durkin/",
                  "icon": "🎖",
                  "label": "Benefits of automation and n8n: An interview with HubSpot's Hugh Durkin"
                },
                {
                  "url": "https://n8n.io/blog/aws-workflow-automation/",
                  "label": "7 no-code workflow automations for Amazon Web Services"
                }
              ],
              "primaryDocumentation": [
                {
                  "url": "https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.if/"
                }
              ]
            },
            "categories": [
              "Core Nodes"
            ],
            "nodeVersion": "1.0",
            "codexVersion": "1.0",
            "subcategories": {
              "Core Nodes": [
                "Flow"
              ]
            }
          }
        },
        "group": "[\"transform\"]",
        "defaults": {
          "name": "If",
          "color": "#408000"
        },
        "iconData": {
          "icon": "map-signs",
          "type": "icon"
        },
        "displayName": "If",
        "typeVersion": 2,
        "nodeCategories": [
          {
            "id": 9,
            "name": "Core Nodes"
          }
        ]
      },
      {
        "id": 38,
        "icon": "fa:pen",
        "name": "n8n-nodes-base.set",
        "codex": {
          "data": {
            "alias": [
              "Set",
              "JS",
              "JSON",
              "Filter",
              "Transform",
              "Map"
            ],
            "resources": {
              "generic": [
                {
                  "url": "https://n8n.io/blog/learn-to-automate-your-factorys-incident-reporting-a-step-by-step-guide/",
                  "icon": "🏭",
                  "label": "Learn to Automate Your Factory's Incident Reporting: A Step by Step Guide"
                },
                {
                  "url": "https://n8n.io/blog/2021-the-year-to-automate-the-new-you-with-n8n/",
                  "icon": "☀️",
                  "label": "2021: The Year to Automate the New You with n8n"
                },
                {
                  "url": "https://n8n.io/blog/automatically-pulling-and-visualizing-data-with-n8n/",
                  "icon": "📈",
                  "label": "Automatically pulling and visualizing data with n8n"
                },
                {
                  "url": "https://n8n.io/blog/database-monitoring-and-alerting-with-n8n/",
                  "icon": "📡",
                  "label": "Database Monitoring and Alerting with n8n"
                },
                {
                  "url": "https://n8n.io/blog/automatically-adding-expense-receipts-to-google-sheets-with-telegram-mindee-twilio-and-n8n/",
                  "icon": "🧾",
                  "label": "Automatically Adding Expense Receipts to Google Sheets with Telegram, Mindee, Twilio, and n8n"
                },
                {
                  "url": "https://n8n.io/blog/no-code-ecommerce-workflow-automations/",
                  "icon": "store",
                  "label": "6 e-commerce workflows to power up your Shopify s"
                },
                {
                  "url": "https://n8n.io/blog/how-to-build-a-low-code-self-hosted-url-shortener/",
                  "icon": "🔗",
                  "label": "How to build a low-code, self-hosted URL shortener in 3 steps"
                },
                {
                  "url": "https://n8n.io/blog/automate-your-data-processing-pipeline-in-9-steps-with-n8n/",
                  "icon": "⚙️",
                  "label": "Automate your data processing pipeline in 9 steps"
                },
                {
                  "url": "https://n8n.io/blog/how-to-get-started-with-crm-automation-and-no-code-workflow-ideas/",
                  "icon": "👥",
                  "label": "How to get started with CRM automation (with 3 no-code workflow ideas"
                },
                {
                  "url": "https://n8n.io/blog/5-tasks-you-can-automate-with-notion-api/",
                  "icon": "⚡️",
                  "label": "5 tasks you can automate with the new Notion API "
                },
                {
                  "url": "https://n8n.io/blog/automate-google-apps-for-productivity/",
                  "icon": "💡",
                  "label": "15 Google apps you can combine and automate to increase productivity"
                },
                {
                  "url": "https://n8n.io/blog/how-uproc-scraped-a-multi-page-website-with-a-low-code-workflow/",
                  "icon": " 🕸️",
                  "label": "How uProc scraped a multi-page website with a low-code workflow"
                },
                {
                  "url": "https://n8n.io/blog/building-an-expense-tracking-app-in-10-minutes/",
                  "icon": "📱",
                  "label": "Building an expense tracking app in 10 minutes"
                },
                {
                  "url": "https://n8n.io/blog/the-ultimate-guide-to-automate-your-video-collaboration-with-whereby-mattermost-and-n8n/",
                  "icon": "📹",
                  "label": "The ultimate guide to automate your video collaboration with Whereby, Mattermost, and n8n"
                },
                {
                  "url": "https://n8n.io/blog/5-workflow-automations-for-mattermost-that-we-love-at-n8n/",
                  "icon": "🤖",
                  "label": "5 workflow automations for Mattermost that we love at n8n"
                },
                {
                  "url": "https://n8n.io/blog/learn-to-build-powerful-api-endpoints-using-webhooks/",
                  "icon": "🧰",
                  "label": "Learn to Build Powerful API Endpoints Using Webhooks"
                },
                {
                  "url": "https://n8n.io/blog/how-a-membership-development-manager-automates-his-work-and-investments/",
                  "icon": "📈",
                  "label": "How a Membership Development Manager automates his work and investments"
                },
                {
                  "url": "https://n8n.io/blog/a-low-code-bitcoin-ticker-built-with-questdb-and-n8n-io/",
                  "icon": "📈",
                  "label": "A low-code bitcoin ticker built with QuestDB and n8n.io"
                },
                {
                  "url": "https://n8n.io/blog/how-to-set-up-a-ci-cd-pipeline-with-no-code/",
                  "icon": "🎡",
                  "label": "How to set up a no-code CI/CD pipeline with GitHub and TravisCI"
                },
                {
                  "url": "https://n8n.io/blog/benefits-of-automation-and-n8n-an-interview-with-hubspots-hugh-durkin/",
                  "icon": "🎖",
                  "label": "Benefits of automation and n8n: An interview with HubSpot's Hugh Durkin"
                },
                {
                  "url": "https://n8n.io/blog/how-goomer-automated-their-operations-with-over-200-n8n-workflows/",
                  "icon": "🛵",
                  "label": "How Goomer automated their operations with over 200 n8n workflows"
                },
                {
                  "url": "https://n8n.io/blog/aws-workflow-automation/",
                  "label": "7 no-code workflow automations for Amazon Web Services"
                }
              ],
              "primaryDocumentation": [
                {
                  "url": "https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.set/"
                }
              ]
            },
            "categories": [
              "Core Nodes"
            ],
            "nodeVersion": "1.0",
            "codexVersion": "1.0",
            "subcategories": {
              "Core Nodes": [
                "Data Transformation"
              ]
            }
          }
        },
        "group": "[\"input\"]",
        "defaults": {
          "name": "Edit Fields"
        },
        "iconData": {
          "icon": "pen",
          "type": "icon"
        },
        "displayName": "Edit Fields (Set)",
        "typeVersion": 3,
        "nodeCategories": [
          {
            "id": 9,
            "name": "Core Nodes"
          }
        ]
      },
      {
        "id": 227,
        "icon": "file:jotform.svg",
        "name": "n8n-nodes-base.jotFormTrigger",
        "codex": {
          "data": {
            "resources": {
              "primaryDocumentation": [
                {
                  "url": "https://docs.n8n.io/integrations/builtin/trigger-nodes/n8n-nodes-base.jotformtrigger/"
                }
              ],
              "credentialDocumentation": [
                {
                  "url": "https://docs.n8n.io/integrations/builtin/credentials/jotform/"
                }
              ]
            },
            "categories": [
              "Communication"
            ],
            "nodeVersion": "1.0",
            "codexVersion": "1.0"
          }
        },
        "group": "[\"trigger\"]",
        "defaults": {
          "name": "Jotform Trigger"
        },
        "iconData": {
          "type": "file",
          "fileBuffer": "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGZpbGw9Im5vbmUiIHZpZXdCb3g9IjAgMCAyNSAyOCI+PHBhdGggaWQ9ImpvdGZvcm0tbG9nb21hcmstZmlyc3QiIGZpbGw9IiNGRjYxMDAiIGQ9Ik0xOS4yOTQgMy45MzRhMy4zNDEgMy4zNDEgMCAwIDEgNC43MjcgMCAzLjM0NCAzLjM0NCAwIDAgMSAwIDQuNzI4bC0xMS44MTcgMTEuODJhMy4zNDEgMy4zNDEgMCAwIDEtNC43MjYgMCAzLjM0NCAzLjM0NCAwIDAgMSAwLTQuNzI3bDExLjgxNi0xMS44MloiPjwvcGF0aD48cGF0aCBpZD0iam90Zm9ybS1sb2dvbWFyay1zZWNvbmQiIGZpbGw9IiMwMDk5RkYiIGQ9Ik05LjI1Ljk4YTMuMzQ0IDMuMzQ0IDAgMCAxIDQuNzI3IDQuNzI4bC04LjI3MSA4LjI3NGEzLjM0MiAzLjM0MiAwIDAgMS00LjcyNyAwIDMuMzQ0IDMuMzQ0IDAgMCAxIDAtNC43MjlMOS4yNS45OFoiPjwvcGF0aD48cGF0aCBpZD0iam90Zm9ybS1sb2dvbWFyay10aGlyZCIgZmlsbD0iI0ZGQjYyOSIgZD0iTTE4LjcwNCAxNy41MjdhMy4zNDQgMy4zNDQgMCAwIDEgNC43MjYgNC43MjhsLTQuNzI2IDQuNzI5YTMuMzQyIDMuMzQyIDAgMSAxLTQuNzI3LTQuNzI4bDQuNzI3LTQuNzI5WiI+PC9wYXRoPjxwYXRoIGlkPSJqb3Rmb3JtLWxvZ29tYXJrLWZvdXJ0aCIgZmlsbD0iIzBBMTU1MSIgZD0iTTEuNjcxIDI4aDQuNjY3Yy43NDUgMCAxLjExOC0uOS41OTEtMS40MjdMMS40MjYgMjEuMDdDLjkgMjAuNTQyIDAgMjAuOTE1IDAgMjEuNjU5djQuNjdDMCAyNy4yNTEuNzQ4IDI4IDEuNjcxIDI4WiI+PC9wYXRoPjwvc3ZnPg=="
        },
        "displayName": "Jotform Trigger",
        "typeVersion": 1,
        "nodeCategories": [
          {
            "id": 6,
            "name": "Communication"
          }
        ]
      },
      {
        "id": 356,
        "icon": "file:gmail.svg",
        "name": "n8n-nodes-base.gmail",
        "codex": {
          "data": {
            "alias": [
              "email",
              "human",
              "form",
              "wait",
              "hitl",
              "approval"
            ],
            "resources": {
              "generic": [
                {
                  "url": "https://n8n.io/blog/why-business-process-automation-with-n8n-can-change-your-daily-life/",
                  "icon": "🧬",
                  "label": "Why business process automation with n8n can change your daily life"
                },
                {
                  "url": "https://n8n.io/blog/supercharging-your-conference-registration-process-with-n8n/",
                  "icon": "🎫",
                  "label": "Supercharging your conference registration process with n8n"
                },
                {
                  "url": "https://n8n.io/blog/no-code-ecommerce-workflow-automations/",
                  "icon": "store",
                  "label": "6 e-commerce workflows to power up your Shopify s"
                },
                {
                  "url": "https://n8n.io/blog/how-to-get-started-with-crm-automation-and-no-code-workflow-ideas/",
                  "icon": "👥",
                  "label": "How to get started with CRM automation (with 3 no-code workflow ideas"
                },
                {
                  "url": "https://n8n.io/blog/automate-google-apps-for-productivity/",
                  "icon": "💡",
                  "label": "15 Google apps you can combine and automate to increase productivity"
                },
                {
                  "url": "https://n8n.io/blog/your-business-doesnt-need-you-to-operate/",
                  "icon": " 🖥️",
                  "label": "Hey founders! Your business doesn't need you to operate"
                },
                {
                  "url": "https://n8n.io/blog/using-automation-to-boost-productivity-in-the-workplace/",
                  "icon": "💪",
                  "label": "Using Automation to Boost Productivity in the Workplace"
                }
              ],
              "primaryDocumentation": [
                {
                  "url": "https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.gmail/"
                }
              ],
              "credentialDocumentation": [
                {
                  "url": "https://docs.n8n.io/integrations/builtin/credentials/google/oauth-single-service/"
                }
              ]
            },
            "categories": [
              "Communication",
              "HITL"
            ],
            "nodeVersion": "1.0",
            "codexVersion": "1.0",
            "subcategories": {
              "HITL": [
                "Human in the Loop"
              ]
            }
          }
        },
        "group": "[\"transform\"]",
        "defaults": {
          "name": "Gmail"
        },
        "iconData": {
          "type": "file",
          "fileBuffer": "data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNTYiIGhlaWdodD0iMTkzIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJ4TWlkWU1pZCI+PHBhdGggZmlsbD0iIzQyODVGNCIgZD0iTTU4LjE4MiAxOTIuMDVWOTMuMTRMMjcuNTA3IDY1LjA3NyAwIDQ5LjUwNHYxMjUuMDkxYzAgOS42NTggNy44MjUgMTcuNDU1IDE3LjQ1NSAxNy40NTV6Ii8+PHBhdGggZmlsbD0iIzM0QTg1MyIgZD0iTTE5Ny44MTggMTkyLjA1aDQwLjcyN2M5LjY1OSAwIDE3LjQ1NS03LjgyNiAxNy40NTUtMTcuNDU1VjQ5LjUwNWwtMzEuMTU2IDE3LjgzNy0yNy4wMjYgMjUuNzk4eiIvPjxwYXRoIGZpbGw9IiNFQTQzMzUiIGQ9Im01OC4xODIgOTMuMTQtNC4xNzQtMzguNjQ3IDQuMTc0LTM2Ljk4OUwxMjggNjkuODY4bDY5LjgxOC01Mi4zNjQgNC42NyAzNC45OTItNC42NyA0MC42NDRMMTI4IDE0NS41MDR6Ii8+PHBhdGggZmlsbD0iI0ZCQkMwNCIgZD0iTTE5Ny44MTggMTcuNTA0VjkzLjE0TDI1NiA0OS41MDRWMjYuMjMxYzAtMjEuNTg1LTI0LjY0LTMzLjg5LTQxLjg5LTIwLjk0NXoiLz48cGF0aCBmaWxsPSIjQzUyMjFGIiBkPSJtMCA0OS41MDQgMjYuNzU5IDIwLjA3TDU4LjE4MiA5My4xNFYxNy41MDRMNDEuODkgNS4yODZDMjQuNjEtNy42NiAwIDQuNjQ2IDAgMjYuMjN6Ii8+PC9zdmc+"
        },
        "displayName": "Gmail",
        "typeVersion": 2,
        "nodeCategories": [
          {
            "id": 6,
            "name": "Communication"
          },
          {
            "id": 28,
            "name": "HITL"
          }
        ]
      },
      {
        "id": 565,
        "icon": "fa:sticky-note",
        "name": "n8n-nodes-base.stickyNote",
        "codex": {
          "data": {
            "alias": [
              "Comments",
              "Notes",
              "Sticky"
            ],
            "categories": [
              "Core Nodes"
            ],
            "nodeVersion": "1.0",
            "codexVersion": "1.0",
            "subcategories": {
              "Core Nodes": [
                "Helpers"
              ]
            }
          }
        },
        "group": "[\"input\"]",
        "defaults": {
          "name": "Sticky Note",
          "color": "#FFD233"
        },
        "iconData": {
          "icon": "sticky-note",
          "type": "icon"
        },
        "displayName": "Sticky Note",
        "typeVersion": 1,
        "nodeCategories": [
          {
            "id": 9,
            "name": "Core Nodes"
          }
        ]
      },
      {
        "id": 834,
        "icon": "file:code.svg",
        "name": "n8n-nodes-base.code",
        "codex": {
          "data": {
            "alias": [
              "cpde",
              "Javascript",
              "JS",
              "Python",
              "Script",
              "Custom Code",
              "Function"
            ],
            "details": "The Code node allows you to execute JavaScript in your workflow.",
            "resources": {
              "primaryDocumentation": [
                {
                  "url": "https://docs.n8n.io/integrations/builtin/core-nodes/n8n-nodes-base.code/"
                }
              ]
            },
            "categories": [
              "Development",
              "Core Nodes"
            ],
            "nodeVersion": "1.0",
            "codexVersion": "1.0",
            "subcategories": {
              "Core Nodes": [
                "Helpers",
                "Data Transformation"
              ]
            }
          }
        },
        "group": "[\"transform\"]",
        "defaults": {
          "name": "Code"
        },
        "iconData": {
          "type": "file",
          "fileBuffer": "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTEyIiBoZWlnaHQ9IjUxMiIgdmlld0JveD0iMCAwIDUxMiA1MTIiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMF8xMTcxXzQ0MSkiPgo8cGF0aCBkPSJNMTcwLjI4MyA0OEgxOTYuNUMyMDMuMTI3IDQ4IDIwOC41IDQyLjYyNzQgMjA4LjUgMzZWMTJDMjA4LjUgNS4zNzI1OCAyMDMuMTI3IDAgMTk2LjUgMEgxNzAuMjgzQzEyNi4xIDAgOTAuMjgzIDM1LjgxNzIgOTAuMjgzIDgwVjE3NkM5MC4yODMgMjA2LjkyOCA2NS4yMTA5IDIzMiAzNC4yODMgMjMySDIzQzE2LjM3MjYgMjMyIDExIDIzNy4zNzIgMTEgMjQ0VjI2OEMxMSAyNzQuNjI3IDE2LjM3MjQgMjgwIDIyLjk5OTYgMjgwTDM0LjI4MyAyODBDNjUuMjEwOSAyODAgOTAuMjgzIDMwNS4wNzIgOTAuMjgzIDMzNlY0NDBDOTAuMjgzIDQ3OS43NjQgMTIyLjUxOCA1MTIgMTYyLjI4MyA1MTJIMTk2LjVDMjAzLjEyNyA1MTIgMjA4LjUgNTA2LjYyNyAyMDguNSA1MDBWNDc2QzIwOC41IDQ2OS4zNzMgMjAzLjEyNyA0NjQgMTk2LjUgNDY0SDE2Mi4yODNDMTQ5LjAyOCA0NjQgMTM4LjI4MyA0NTMuMjU1IDEzOC4yODMgNDQwVjMzNkMxMzguMjgzIDMwOS4wMjIgMTI4LjAxMSAyODQuNDQzIDExMS4xNjQgMjY1Ljk2MUMxMDYuMTA5IDI2MC40MTYgMTA2LjEwOSAyNTEuNTg0IDExMS4xNjQgMjQ2LjAzOUMxMjguMDExIDIyNy41NTcgMTM4LjI4MyAyMDIuOTc4IDEzOC4yODMgMTc2VjgwQzEzOC4yODMgNjIuMzI2OSAxNTIuNjEgNDggMTcwLjI4MyA0OFoiIGZpbGw9IiNGRjk5MjIiLz4KPHBhdGggZD0iTTMwNSAzNkMzMDUgNDIuNjI3NCAzMTAuMzczIDQ4IDMxNyA0OEgzNDIuOTc5QzM2MC42NTIgNDggMzc0Ljk3OCA2Mi4zMjY5IDM3NC45NzggODBWMTc2QzM3NC45NzggMjAyLjk3OCAzODUuMjUxIDIyNy41NTcgNDAyLjA5OCAyNDYuMDM5QzQwNy4xNTMgMjUxLjU4NCA0MDcuMTUzIDI2MC40MTYgNDAyLjA5OCAyNjUuOTYxQzM4NS4yNTEgMjg0LjQ0MyAzNzQuOTc4IDMwOS4wMjIgMzc0Ljk3OCAzMzZWNDMyQzM3NC45NzggNDQ5LjY3MyAzNjAuNjUyIDQ2NCAzNDIuOTc5IDQ2NEgzMTdDMzEwLjM3MyA0NjQgMzA1IDQ2OS4zNzMgMzA1IDQ3NlY1MDBDMzA1IDUwNi42MjcgMzEwLjM3MyA1MTIgMzE3IDUxMkgzNDIuOTc5QzM4Ny4xNjEgNTEyIDQyMi45NzggNDc2LjE4MyA0MjIuOTc4IDQzMlYzMzZDNDIyLjk3OCAzMDUuMDcyIDQ0OC4wNTEgMjgwIDQ3OC45NzkgMjgwSDQ5MEM0OTYuNjI3IDI4MCA1MDIgMjc0LjYyOCA1MDIgMjY4VjI0NEM1MDIgMjM3LjM3MyA0OTYuNjI4IDIzMiA0OTAgMjMyTDQ3OC45NzkgMjMyQzQ0OC4wNTEgMjMyIDQyMi45NzggMjA2LjkyOCA0MjIuOTc4IDE3NlY4MEM0MjIuOTc4IDM1LjgxNzIgMzg3LjE2MSAwIDM0Mi45NzkgMEgzMTdDMzEwLjM3MyAwIDMwNSA1LjM3MjU4IDMwNSAxMlYzNloiIGZpbGw9IiNGRjk5MjIiLz4KPC9nPgo8ZGVmcz4KPGNsaXBQYXRoIGlkPSJjbGlwMF8xMTcxXzQ0MSI+CjxyZWN0IHdpZHRoPSI1MTIiIGhlaWdodD0iNTEyIiBmaWxsPSJ3aGl0ZSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo="
        },
        "displayName": "Code",
        "typeVersion": 2,
        "nodeCategories": [
          {
            "id": 5,
            "name": "Development"
          },
          {
            "id": 9,
            "name": "Core Nodes"
          }
        ]
      },
      {
        "id": 1119,
        "icon": "fa:robot",
        "name": "@n8n/n8n-nodes-langchain.agent",
        "codex": {
          "data": {
            "alias": [
              "LangChain",
              "Chat",
              "Conversational",
              "Plan and Execute",
              "ReAct",
              "Tools"
            ],
            "resources": {
              "primaryDocumentation": [
                {
                  "url": "https://docs.n8n.io/integrations/builtin/cluster-nodes/root-nodes/n8n-nodes-langchain.agent/"
                }
              ]
            },
            "categories": [
              "AI",
              "Langchain"
            ],
            "subcategories": {
              "AI": [
                "Agents",
                "Root Nodes"
              ]
            }
          }
        },
        "group": "[\"transform\"]",
        "defaults": {
          "name": "AI Agent",
          "color": "#404040"
        },
        "iconData": {
          "icon": "robot",
          "type": "icon"
        },
        "displayName": "AI Agent",
        "typeVersion": 3,
        "nodeCategories": [
          {
            "id": 25,
            "name": "AI"
          },
          {
            "id": 26,
            "name": "Langchain"
          }
        ]
      },
      {
        "id": 1153,
        "icon": "file:openAiLight.svg",
        "name": "@n8n/n8n-nodes-langchain.lmChatOpenAi",
        "codex": {
          "data": {
            "resources": {
              "primaryDocumentation": [
                {
                  "url": "https://docs.n8n.io/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.lmchatopenai/"
                }
              ]
            },
            "categories": [
              "AI",
              "Langchain"
            ],
            "subcategories": {
              "AI": [
                "Language Models",
                "Root Nodes"
              ],
              "Language Models": [
                "Chat Models (Recommended)"
              ]
            }
          }
        },
        "group": "[\"transform\"]",
        "defaults": {
          "name": "OpenAI Chat Model"
        },
        "iconData": {
          "type": "file",
          "fileBuffer": "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHZpZXdCb3g9IjAgMCA0MCA0MCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTM2Ljg2NzEgMTYuMzcxOEMzNy43NzQ2IDEzLjY0OCAzNy40NjIxIDEwLjY2NDIgMzYuMDEwOCA4LjE4NjYxQzMzLjgyODIgNC4zODY1MyAyOS40NDA3IDIuNDMxNDkgMjUuMTU1NiAzLjM1MTUxQzIzLjI0OTMgMS4yMDM5NiAyMC41MTA1IC0wLjAxNzMxNDggMTcuNjM5MiAwLjAwMDE4NTUzM0MxMy4yNTkxIC0wLjAwOTgxNDY4IDkuMzcyNzMgMi44MTAyNSA4LjAyNTIgNi45Nzc4M0M1LjIxMTM5IDcuNTU0MSAyLjc4MjU4IDkuMzE1MzggMS4zNjEzIDExLjgxMTdDLTAuODM3NDkzIDE1LjYwMTggLTAuMzM2MjMyIDIwLjM3OTQgMi42MDEzMyAyMy42Mjk0QzEuNjkzODEgMjYuMzUzMiAyLjAwNjMyIDI5LjMzNzEgMy40NTc2IDMxLjgxNDZDNS42NDAxNSAzNS42MTQ3IDEwLjAyNzcgMzcuNTY5NyAxNC4zMTI4IDM2LjY0OTdDMTYuMjE3OSAzOC43OTczIDE4Ljk1NzkgNDAuMDE4NSAyMS44MjkyIDM5Ljk5OThDMjYuMjExOCA0MC4wMTEgMzAuMDk5NCAzNy4xODg1IDMxLjQ0NjkgMzMuMDE3MUMzNC4yNjA4IDMyLjQ0MDkgMzYuNjg5NiAzMC42Nzk2IDM4LjExMDggMjguMTgzM0M0MC4zMDcxIDI0LjM5MzIgMzkuODA0NiAxOS42MTk0IDM2Ljg2ODMgMTYuMzY5M0wzNi44NjcxIDE2LjM3MThaTTIxLjgzMTcgMzcuMzg2QzIwLjA3OCAzNy4zODg1IDE4LjM3OTIgMzYuNzc0NyAxNy4wMzI5IDM1LjY1MDlDMTcuMDk0MSAzNS42MTg0IDE3LjIwMDQgMzUuNTU5NyAxNy4yNjkxIDM1LjUxNzJMMjUuMjM0MyAzMC45MTcxQzI1LjY0MTggMzAuNjg1OCAyNS44OTE4IDMwLjI1MjEgMjUuODg5MyAyOS43ODMzVjE4LjU1NDNMMjkuMjU1NyAyMC40OTgxQzI5LjI5MTkgMjAuNTE1NiAyOS4zMTU3IDIwLjU1MDYgMjkuMzIwNyAyMC41OTA2VjI5Ljg4OTZDMjkuMzE1NyAzNC4wMjQ3IDI1Ljk2NjggMzcuMzc3MiAyMS44MzE3IDM3LjM4NlpNNS43MjY0IDMwLjUwNzFDNC44NDc2MyAyOC45ODk2IDQuNTMxMzcgMjcuMjEwOCA0LjgzMjYzIDI1LjQ4NDVDNC44OTEzOCAyNS41MTk1IDQuOTk1MTMgMjUuNTgzMiA1LjA2ODg4IDI1LjYyNTdMMTMuMDM0MSAzMC4yMjU4QzEzLjQzNzggMzAuNDYyMSAxMy45Mzc4IDMwLjQ2MjEgMTQuMzQyOCAzMC4yMjU4TDI0LjA2NjggMjQuNjEwN1YyOC40OTgzQzI0LjA2OTMgMjguNTM4MyAyNC4wNTA1IDI4LjU3NyAyNC4wMTkzIDI4LjYwMkwxNS45Njc5IDMzLjI1MDlDMTIuMzgxNSAzNS4zMTU5IDcuODAxNDQgMzQuMDg4NCA1LjcyNzY1IDMwLjUwNzFINS43MjY0Wk0zLjYzMDEgMTMuMTIwNUM0LjUwNTEyIDExLjYwMDQgNS44ODY0IDEwLjQzNzkgNy41MzE0NCA5LjgzNDE1QzcuNTMxNDQgOS45MDI5IDcuNTI3NjkgMTAuMDI0MiA3LjUyNzY5IDEwLjEwOTJWMTkuMzEwNkM3LjUyNTE5IDE5Ljc3ODEgNy43NzUxOSAyMC4yMTE5IDguMTgxNDUgMjAuNDQzMUwxNy45MDU0IDI2LjA1N0wxNC41MzkxIDI4LjAwMDhDMTQuNTA1MyAyOC4wMjMzIDE0LjQ2MjggMjguMDI3IDE0LjQyNTMgMjguMDEwOEw2LjM3MjY2IDIzLjM1ODJDMi43OTM4MyAyMS4yODU2IDEuNTY2MzEgMTYuNzA2OCAzLjYyODg1IDEzLjEyMTdMMy42MzAxIDEzLjEyMDVaTTMxLjI4ODIgMTkuNTU2OUwyMS41NjQyIDEzLjk0MTdMMjQuOTMwNiAxMS45OTkyQzI0Ljk2NDMgMTEuOTc2NyAyNS4wMDY4IDExLjk3MjkgMjUuMDQ0MyAxMS45ODkyTDMzLjA5NyAxNi42MzhDMzYuNjgyMSAxOC43MDkzIDM3LjkxMDggMjMuMjk1NyAzNS44Mzk1IDI2Ljg4MDhDMzQuOTYzMyAyOC4zOTgzIDMzLjU4MzIgMjkuNTYwOCAzMS45Mzk1IDMwLjE2NThWMjAuNjg5NEMzMS45NDMyIDIwLjIyMTkgMzEuNjk0NSAxOS43ODk0IDMxLjI4OTQgMTkuNTU2OUgzMS4yODgyWk0zNC42MzgzIDE0LjUxNDJDMzQuNTc5NSAxNC40NzggMzQuNDc1OCAxNC40MTU1IDM0LjQwMiAxNC4zNzNMMjYuNDM2OCA5Ljc3Mjg5QzI2LjAzMzEgOS41MzY2NCAyNS41MzMxIDkuNTM2NjQgMjUuMTI4MSA5Ljc3Mjg5TDE1LjQwNDEgMTUuMzg4VjExLjUwMDRDMTUuNDAxNiAxMS40NjA0IDE1LjQyMDQgMTEuNDIxNyAxNS40NTE2IDExLjM5NjdMMjMuNTAzIDYuNzUxNThDMjcuMDg5NCA0LjY4Mjc5IDMxLjY3NDUgNS45MTQwNiAzMy43NDIgOS41MDE2NEMzNC42MTU4IDExLjAxNjcgMzQuOTMyIDEyLjc5MDUgMzQuNjM1OCAxNC41MTQySDM0LjYzODNaTTEzLjU3NDEgMjEuNDQzMUwxMC4yMDY1IDE5LjQ5OTRDMTAuMTcwMiAxOS40ODE5IDEwLjE0NjUgMTkuNDQ2OCAxMC4xNDE1IDE5LjQwNjhWMTAuMTA3OUMxMC4xNDQgNS45Njc4MSAxMy41MDI4IDIuNjEyNzQgMTcuNjQyOSAyLjYxNTI0QzE5LjM5NDIgMi42MTUyNCAyMS4wODkyIDMuMjMwMjUgMjIuNDM1NSA0LjM1MDI4QzIyLjM3NDMgNC4zODI3OCAyMi4yNjkzIDQuNDQxNTMgMjIuMTk5MiA0LjQ4NDAzTDE0LjIzNDEgOS4wODQxM0MxMy44MjY2IDkuMzE1MzggMTMuNTc2NiA5Ljc0Nzg5IDEzLjU3OTEgMTAuMjE2N0wxMy41NzQxIDIxLjQ0MDZWMjEuNDQzMVpNMTUuNDAyOSAxNy41MDA2TDE5LjczNDIgMTQuOTk5M0wyNC4wNjU1IDE3LjQ5OTNWMjIuNTAwN0wxOS43MzQyIDI1LjAwMDdMMTUuNDAyOSAyMi41MDA3VjE3LjUwMDZaIiBmaWxsPSIjN0Q3RDg3Ii8+Cjwvc3ZnPgo="
        },
        "displayName": "OpenAI Chat Model",
        "typeVersion": 1,
        "nodeCategories": [
          {
            "id": 25,
            "name": "AI"
          },
          {
            "id": 26,
            "name": "Langchain"
          }
        ]
      }
    ],
    "categories": [
      {
        "id": 38,
        "name": "Lead Nurturing"
      },
      {
        "id": 47,
        "name": "AI Chatbot"
      }
    ],
    "image": []
  }
}