{
  "version": "1.0.0",
  "exported_at": "2026-05-31T12:25:00.000Z",
  "project": {
    "name": "Amazon Product Scraper for US",
    "description": "Scrapes Amazon US product detail pages by product URL, extracting title, ASIN, price, ratings, reviews count, seller, availability, bullets, product details, breadcrumbs, brand/seller URLs, current scrape time, and up to 6 image URLs. Product pages themselves are not paginated; navigation is implemented with navigate.urls[] plus loop-continue so more /dp/ product URLs can be added and appended into one CSV. Best-effort: Amazon may show CAPTCHA, bot checks, regional variations, or hide fields.",
    "color": "bg-[#ff9900]",
    "template_id": "ai-generated"
  },
  "blocks": [
    {
      "block_id": "set-window-size-1",
      "block_type": "process",
      "title": "Set Window Size",
      "description": "Set browser window size",
      "position_x": 120,
      "position_y": 220,
      "config": {
        "width": 1920,
        "height": 1080,
        "color": "bg-[#4589ff]"
      }
    },
    {
      "block_id": "navigate-1",
      "block_type": "process",
      "title": "Navigate",
      "description": "Go to a URL",
      "position_x": 480,
      "position_y": 220,
      "config": {
        "urls": [
          "https://www.amazon.com/dp/B0BR3M8XHK"
        ],
        "color": "bg-[#08bdba]"
      }
    },
    {
      "block_id": "wait-for-page-load-1",
      "block_type": "process",
      "title": "Wait for Page Load",
      "description": "Wait for page to finish loading",
      "position_x": 840,
      "position_y": 220,
      "config": {
        "timeout": 45,
        "color": "bg-[#08bdba]"
      }
    },
    {
      "block_id": "wait-for-element-1",
      "block_type": "process",
      "title": "Wait for Element",
      "description": "Wait until element appears",
      "position_x": 1200,
      "position_y": 220,
      "config": {
        "selector": "#productTitle",
        "timeout": 45,
        "visible": true,
        "color": "bg-[#08bdba]"
      }
    },
    {
      "block_id": "inject-javascript-1",
      "block_type": "process",
      "title": "Inject JavaScript",
      "description": "Execute custom JavaScript",
      "position_x": 1560,
      "position_y": 220,
      "config": {
        "jsCode": "window.scrollTo(0, document.body.scrollHeight);",
        "waitForCompletion": true,
        "timeout": 10,
        "color": "bg-[#a56eff]"
      }
    },
    {
      "block_id": "sleep-1",
      "block_type": "process",
      "title": "Sleep",
      "description": "Wait for specified time",
      "position_x": 1920,
      "position_y": 220,
      "config": {
        "duration": 2,
        "color": "bg-[#a56eff]"
      }
    },
    {
      "block_id": "structured-export-1",
      "block_type": "process",
      "title": "Structured Export",
      "description": "Export data with custom columns",
      "position_x": 2280,
      "position_y": 220,
      "config": {
        "rowSelector": "body",
        "fileName": "amazon_product_details_scraper.csv",
        "saveLocation": "C:\\Users\\theskd\\Documents\\UScraper\\templates",
        "includeHeaders": true,
        "fileMode": "append",
        "color": "bg-[#42be65]",
        "columns": [
          {
            "name": "asin",
            "selector": "(() => { const q=s=>document.querySelector(s); const clean=s=>(s||'').trim(); const asin=clean((q('#ASIN')||{}).value); if(asin) return asin; const m=location.href.match(/\\/(?:dp|gp\\/product)\\/([A-Z0-9]{10})/i); return m ? m[1] : ''; })()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "url",
            "selector": "(() => location.href.split('?')[0])()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "title",
            "selector": "(() => { const e=document.querySelector('#productTitle'); return e ? e.innerText.replace(/\\s+/g,' ').trim() : ''; })()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "brand",
            "selector": "(() => { const clean=s=>(s||'').replace(/\\s+/g,' ').trim(); let e=document.querySelector('#bylineInfo'); let v=clean(e && e.innerText); if(v) return v; e=document.querySelector('tr.po-brand td.a-span9 span, .po-brand .po-break-word'); if(e){ v=clean(e.innerText); if(v && !/^brand$/i.test(v)) return v; } const rows=Array.from(document.querySelectorAll('#productOverview_feature_div tr, table tr')); for(const r of rows){ const t=clean(r.innerText); if(/^Brand\\s+/i.test(t)) return t.replace(/^Brand\\s+/i,''); } return ''; })()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "stars",
            "selector": "(() => { const e=document.querySelector('#acrPopover'); const alt=document.querySelector('#acrPopover .a-icon-alt, .reviewCountTextLinkedHistogram .a-icon-alt'); return (e && e.getAttribute('title')) || (alt && alt.innerText.replace(/\\s+/g,' ').trim()) || ''; })()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "rating_count",
            "selector": "(() => { const e=document.querySelector('#acrCustomerReviewText'); return e ? e.innerText.replace(/\\s+/g,' ').trim() : ''; })()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "answer_questions",
            "selector": "(() => { const e=document.querySelector('#askATFLink, a[href*=\"/ask/questions\"], a[href*=\"ask/questions\"]'); return e ? e.innerText.replace(/\\s+/g,' ').trim() : ''; })()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "price",
            "selector": "(() => { const sels=['.priceToPay .a-offscreen','#corePrice_feature_div .a-offscreen','#priceblock_ourprice','#priceblock_dealprice','#price_inside_buybox']; for(const s of sels){ const e=document.querySelector(s); const v=e && (e.innerText || e.textContent || '').replace(/\\s+/g,' ').trim(); if(v) return v; } return ''; })()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "variant_attribute",
            "selector": "(() => Array.from(document.querySelectorAll('#variation_color_name .selection, #variation_size_name .selection, #variation_style_name .selection, .variationSelected')).map(e=>e.innerText.replace(/\\s+/g,' ').trim()).filter(Boolean).join(' | '))()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "recent_purchase",
            "selector": "(() => { const txt=document.body.innerText || ''; const m=txt.match(/\\b[\\d,.]+\\s*K?\\+?\\s+bought in past month\\b/i); return m ? m[0].replace(/\\s+/g,' ').trim() : ''; })()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "in_stock",
            "selector": "(() => { const e=document.querySelector('#availability'); return e ? e.innerText.replace(/\\s+/g,' ').trim() : ''; })()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "seller",
            "selector": "(() => { const e=document.querySelector('#sellerProfileTriggerId, #merchant-info a'); if(e) return e.innerText.replace(/\\s+/g,' ').trim(); const m=document.querySelector('#merchant-info'); return m ? m.innerText.replace(/\\s+/g,' ').trim() : ''; })()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "about_this_item",
            "selector": "(() => Array.from(document.querySelectorAll('#feature-bullets ul li span.a-list-item')).map(e=>e.innerText.replace(/\\s+/g,' ').trim()).filter(t=>t && !/report an issue/i.test(t)).join(' | '))()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "delivery",
            "selector": "(() => { const e=document.querySelector('#mir-layout-DELIVERY_BLOCK-slot-PRIMARY_DELIVERY_MESSAGE_LARGE, #deliveryBlockMessage, #ddmDeliveryMessage'); return e ? e.innerText.replace(/\\s+/g,' ').trim() : ''; })()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "fastest_delivery",
            "selector": "(() => { const e=document.querySelector('#mir-layout-DELIVERY_BLOCK-slot-SECONDARY_DELIVERY_MESSAGE_LARGE, #mir-layout-DELIVERY_BLOCK-slot-FASTEST_DELIVERY_MESSAGE_LARGE'); return e ? e.innerText.replace(/\\s+/g,' ').trim() : ''; })()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "product_description",
            "selector": "(() => { const e=document.querySelector('#productDescription'); if(e) return e.innerText.replace(/\\s+/g,' ').trim(); const a=document.querySelector('#aplus, #aplus_feature_div'); return a ? a.innerText.replace(/\\s+/g,' ').trim() : ''; })()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "best_sellers_rank",
            "selector": "(() => { const clean=s=>(s||'').replace(/\\s+/g,' ').trim(); const rows=Array.from(document.querySelectorAll('#detailBullets_feature_div li, #detailBulletsWrapper_feature_div li, #productDetails_detailBullets_sections1 tr, table.prodDetTable tr')); for(const r of rows){ const key=clean((r.querySelector('th,.a-text-bold')||{}).innerText).replace(/[:‎‏]/g,''); if(/Best Sellers Rank/i.test(key)){ let val=clean((r.querySelector('td')||r).innerText); return val.replace(key,'').replace(/^[:\\s]+/,''); } } const m=(document.body.innerText||'').match(/Best Sellers Rank\\s*[:\\s]*([^\\n]+)/i); return m ? clean(m[1]) : ''; })()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "brand_url",
            "selector": "(() => { const e=document.querySelector('#bylineInfo'); return e && e.href ? new URL(e.getAttribute('href'), location.origin).href : ''; })()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "item_model_number",
            "selector": "(() => { const clean=s=>(s||'').replace(/\\s+/g,' ').trim(); const find=label=>{ const rows=Array.from(document.querySelectorAll('#detailBullets_feature_div li, #detailBulletsWrapper_feature_div li, #productDetails_techSpec_section_1 tr, #productDetails_detailBullets_sections1 tr, table.prodDetTable tr')); for(const r of rows){ const key=clean((r.querySelector('th,.a-text-bold')||{}).innerText).replace(/[:‎‏]/g,''); if(key.toLowerCase().includes(label.toLowerCase())){ let val=clean((r.querySelector('td')||r).innerText); return val.replace(new RegExp('^'+key+'\\\\s*:?\\\\s*','i'),''); } } return ''; }; return find('Item model number'); })()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "manufacturer_url",
            "selector": "(() => { const e=document.querySelector('#manufacturer-info a, a[href*=\"/stores/\"][href*=\"ref_=ast\"]'); return e && e.href ? new URL(e.getAttribute('href'), location.origin).href : ''; })()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "country_of_origin",
            "selector": "(() => { const clean=s=>(s||'').replace(/\\s+/g,' ').trim(); const find=label=>{ const rows=Array.from(document.querySelectorAll('#detailBullets_feature_div li, #detailBulletsWrapper_feature_div li, #productDetails_techSpec_section_1 tr, #productDetails_detailBullets_sections1 tr, table.prodDetTable tr')); for(const r of rows){ const key=clean((r.querySelector('th,.a-text-bold')||{}).innerText).replace(/[:‎‏]/g,''); if(key.toLowerCase().includes(label.toLowerCase())){ let val=clean((r.querySelector('td')||r).innerText); return val.replace(new RegExp('^'+key+'\\\\s*:?\\\\s*','i'),''); } } return ''; }; return find('Country of Origin'); })()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "manufacturer",
            "selector": "(() => { const clean=s=>(s||'').replace(/\\s+/g,' ').trim(); const find=label=>{ const rows=Array.from(document.querySelectorAll('#detailBullets_feature_div li, #detailBulletsWrapper_feature_div li, #productDetails_techSpec_section_1 tr, #productDetails_detailBullets_sections1 tr, table.prodDetTable tr')); for(const r of rows){ const key=clean((r.querySelector('th,.a-text-bold')||{}).innerText).replace(/[:‎‏]/g,''); if(key.toLowerCase().includes(label.toLowerCase())){ let val=clean((r.querySelector('td')||r).innerText); return val.replace(new RegExp('^'+key+'\\\\s*:?\\\\s*','i'),''); } } return ''; }; return find('Manufacturer'); })()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "breadcrumbs",
            "selector": "(() => Array.from(document.querySelectorAll('#wayfinding-breadcrumbs_feature_div a')).map(e=>e.innerText.replace(/\\s+/g,' ').trim()).filter(Boolean).join(' › '))()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "category",
            "selector": "(() => { const arr=Array.from(document.querySelectorAll('#wayfinding-breadcrumbs_feature_div a')).map(e=>e.innerText.replace(/\\s+/g,' ').trim()).filter(Boolean); return arr.length ? arr[arr.length-1] : ''; })()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "dimensions",
            "selector": "(() => { const clean=s=>(s||'').replace(/\\s+/g,' ').trim(); const find=label=>{ const rows=Array.from(document.querySelectorAll('#detailBullets_feature_div li, #detailBulletsWrapper_feature_div li, #productDetails_techSpec_section_1 tr, #productDetails_detailBullets_sections1 tr, table.prodDetTable tr')); for(const r of rows){ const key=clean((r.querySelector('th,.a-text-bold')||{}).innerText).replace(/[:‎‏]/g,''); if(key.toLowerCase().includes(label.toLowerCase())){ let val=clean((r.querySelector('td')||r).innerText); return val.replace(new RegExp('^'+key+'\\\\s*:?\\\\s*','i'),''); } } return ''; }; return find('Product Dimensions') || find('Package Dimensions') || find('Dimensions'); })()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "date_first_available",
            "selector": "(() => { const clean=s=>(s||'').replace(/\\s+/g,' ').trim(); const find=label=>{ const rows=Array.from(document.querySelectorAll('#detailBullets_feature_div li, #detailBulletsWrapper_feature_div li, #productDetails_techSpec_section_1 tr, #productDetails_detailBullets_sections1 tr, table.prodDetTable tr')); for(const r of rows){ const key=clean((r.querySelector('th,.a-text-bold')||{}).innerText).replace(/[:‎‏]/g,''); if(key.toLowerCase().includes(label.toLowerCase())){ let val=clean((r.querySelector('td')||r).innerText); return val.replace(new RegExp('^'+key+'\\\\s*:?\\\\s*','i'),''); } } return ''; }; return find('Date First Available'); })()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "seller_name",
            "selector": "(() => { const e=document.querySelector('#sellerProfileTriggerId, #merchant-info a'); return e ? e.innerText.replace(/\\s+/g,' ').trim() : ''; })()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "sell_url",
            "selector": "(() => { const e=document.querySelector('#sellerProfileTriggerId, #merchant-info a[href*=\"seller\"], #merchant-info a[href*=\"/sp\"]'); return e && e.href ? new URL(e.getAttribute('href'), location.origin).href : ''; })()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "current_time",
            "selector": "(() => new Date().toISOString())()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "image_url_1",
            "selector": "(() => { const imgs=[]; const main=document.querySelector('#landingImage'); if(main && main.getAttribute('data-a-dynamic-image')){ try{ imgs.push(...Object.keys(JSON.parse(main.getAttribute('data-a-dynamic-image')))); }catch(e){} } imgs.push(...Array.from(document.querySelectorAll('#altImages img')).map(i=>i.src)); const clean=[...new Set(imgs.map(u=>(u||'').replace(/\\._[^.]+_\\./,'.')).filter(u=>/^https?:\\/\\//.test(u)))]; return clean[0] || ''; })()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "image_url_2",
            "selector": "(() => { const imgs=[]; const main=document.querySelector('#landingImage'); if(main && main.getAttribute('data-a-dynamic-image')){ try{ imgs.push(...Object.keys(JSON.parse(main.getAttribute('data-a-dynamic-image')))); }catch(e){} } imgs.push(...Array.from(document.querySelectorAll('#altImages img')).map(i=>i.src)); const clean=[...new Set(imgs.map(u=>(u||'').replace(/\\._[^.]+_\\./,'.')).filter(u=>/^https?:\\/\\//.test(u)))]; return clean[1] || ''; })()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "image_url_3",
            "selector": "(() => { const imgs=[]; const main=document.querySelector('#landingImage'); if(main && main.getAttribute('data-a-dynamic-image')){ try{ imgs.push(...Object.keys(JSON.parse(main.getAttribute('data-a-dynamic-image')))); }catch(e){} } imgs.push(...Array.from(document.querySelectorAll('#altImages img')).map(i=>i.src)); const clean=[...new Set(imgs.map(u=>(u||'').replace(/\\._[^.]+_\\./,'.')).filter(u=>/^https?:\\/\\//.test(u)))]; return clean[2] || ''; })()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "image_url_4",
            "selector": "(() => { const imgs=[]; const main=document.querySelector('#landingImage'); if(main && main.getAttribute('data-a-dynamic-image')){ try{ imgs.push(...Object.keys(JSON.parse(main.getAttribute('data-a-dynamic-image')))); }catch(e){} } imgs.push(...Array.from(document.querySelectorAll('#altImages img')).map(i=>i.src)); const clean=[...new Set(imgs.map(u=>(u||'').replace(/\\._[^.]+_\\./,'.')).filter(u=>/^https?:\\/\\//.test(u)))]; return clean[3] || ''; })()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "image_url_5",
            "selector": "(() => { const imgs=[]; const main=document.querySelector('#landingImage'); if(main && main.getAttribute('data-a-dynamic-image')){ try{ imgs.push(...Object.keys(JSON.parse(main.getAttribute('data-a-dynamic-image')))); }catch(e){} } imgs.push(...Array.from(document.querySelectorAll('#altImages img')).map(i=>i.src)); const clean=[...new Set(imgs.map(u=>(u||'').replace(/\\._[^.]+_\\./,'.')).filter(u=>/^https?:\\/\\//.test(u)))]; return clean[4] || ''; })()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "image_url_6",
            "selector": "(() => { const imgs=[]; const main=document.querySelector('#landingImage'); if(main && main.getAttribute('data-a-dynamic-image')){ try{ imgs.push(...Object.keys(JSON.parse(main.getAttribute('data-a-dynamic-image')))); }catch(e){} } imgs.push(...Array.from(document.querySelectorAll('#altImages img')).map(i=>i.src)); const clean=[...new Set(imgs.map(u=>(u||'').replace(/\\._[^.]+_\\./,'.')).filter(u=>/^https?:\\/\\//.test(u)))]; return clean[5] || ''; })()",
            "attribute": "text",
            "isJs": true
          }
        ]
      }
    },
    {
      "block_id": "loop-continue-1",
      "block_type": "process",
      "title": "Loop Continue",
      "description": "Continue multi-input loop",
      "position_x": 2640,
      "position_y": 220,
      "config": {
        "color": "bg-[#8d8d8d]"
      }
    }
  ],
  "connections": [
    {
      "from_block_id": "set-window-size-1",
      "from_connector_id": "right",
      "to_block_id": "navigate-1",
      "to_connector_id": "left"
    },
    {
      "from_block_id": "navigate-1",
      "from_connector_id": "right",
      "to_block_id": "wait-for-page-load-1",
      "to_connector_id": "left"
    },
    {
      "from_block_id": "wait-for-page-load-1",
      "from_connector_id": "right",
      "to_block_id": "wait-for-element-1",
      "to_connector_id": "left"
    },
    {
      "from_block_id": "wait-for-element-1",
      "from_connector_id": "right",
      "to_block_id": "inject-javascript-1",
      "to_connector_id": "left"
    },
    {
      "from_block_id": "inject-javascript-1",
      "from_connector_id": "right",
      "to_block_id": "sleep-1",
      "to_connector_id": "left"
    },
    {
      "from_block_id": "sleep-1",
      "from_connector_id": "right",
      "to_block_id": "structured-export-1",
      "to_connector_id": "left"
    },
    {
      "from_block_id": "structured-export-1",
      "from_connector_id": "right",
      "to_block_id": "loop-continue-1",
      "to_connector_id": "left"
    }
  ],
  "canvas_elements": [
    {
      "id": "group-entry",
      "element_type": "group",
      "title": "Entry & Setup",
      "color": "#4589ff",
      "position_x": 48,
      "position_y": 116,
      "width": 380,
      "height": 296,
      "z_index": 20,
      "data": {
        "memberBlockIds": [
          "set-window-size-1"
        ]
      }
    },
    {
      "id": "group-load",
      "element_type": "group",
      "title": "Page Load",
      "color": "#08bdba",
      "position_x": 408,
      "position_y": 116,
      "width": 1760,
      "height": 296,
      "z_index": 20,
      "data": {
        "memberBlockIds": [
          "navigate-1",
          "wait-for-page-load-1",
          "wait-for-element-1",
          "sleep-1"
        ]
      }
    },
    {
      "id": "group-interaction",
      "element_type": "group",
      "title": "Interaction",
      "color": "#a56eff",
      "position_x": 1488,
      "position_y": 116,
      "width": 380,
      "height": 296,
      "z_index": 20,
      "data": {
        "memberBlockIds": [
          "inject-javascript-1"
        ]
      }
    },
    {
      "id": "group-extract",
      "element_type": "group",
      "title": "Data Extraction",
      "color": "#42be65",
      "position_x": 2208,
      "position_y": 116,
      "width": 380,
      "height": 296,
      "z_index": 20,
      "data": {
        "memberBlockIds": [
          "structured-export-1"
        ]
      }
    },
    {
      "id": "group-pagination",
      "element_type": "group",
      "title": "Pagination Loop",
      "color": "#ff832b",
      "position_x": 2568,
      "position_y": 116,
      "width": 380,
      "height": 296,
      "z_index": 20,
      "data": {
        "memberBlockIds": [
          "loop-continue-1"
        ]
      }
    },
    {
      "id": "note-overview",
      "element_type": "note",
      "title": "Overview",
      "content": "Scrapes Amazon US product detail pages by product URL, extracting title, ASIN, price, ratings, reviews count, seller, availability, bullets, product details, breadcrumbs, brand/seller URLs, current scrape time, and up to 6 image URLs. Product pages themselves are not paginated; navigation is implemented with navigate.urls[] plus loop-continue so more /dp/ product URLs can be added and appended into one CSV. Best-effort: Amazon may show CAPTCHA, bot checks, regional variations, or hide fields.",
      "color": "#f1c21b",
      "position_x": 80,
      "position_y": 20,
      "width": 480,
      "height": 160,
      "z_index": 22,
      "data": {}
    },
    {
      "id": "note-block-inject-javascript-1",
      "element_type": "note",
      "title": "Note: Inject JavaScript",
      "content": "Runs custom JavaScript in the page: `window.scrollTo(0, document.body.scrollHeight);...` Verify in browser if results are empty.",
      "color": "#ee5396",
      "position_x": 1760,
      "position_y": 200,
      "width": 340,
      "height": 122,
      "z_index": 22,
      "data": {
        "block_id": "inject-javascript-1"
      }
    },
    {
      "id": "note-block-structured-export-1",
      "element_type": "note",
      "title": "Note: Structured Export",
      "content": "Structured export with JS columns (asin, url, title, brand, stars). These selectors are fragile — update if the site layout changes.",
      "color": "#ee5396",
      "position_x": 2480,
      "position_y": 200,
      "width": 340,
      "height": 124,
      "z_index": 22,
      "data": {
        "block_id": "structured-export-1"
      }
    },
    {
      "id": "note-block-loop-continue-1",
      "element_type": "note",
      "title": "Note: Loop Continue",
      "content": "Loop Continue advances a multi-URL or multi-text loop. Place at the end of the loop body with a clear back-edge to the loop start.",
      "color": "#ee5396",
      "position_x": 2840,
      "position_y": 200,
      "width": 340,
      "height": 123,
      "z_index": 22,
      "data": {
        "block_id": "loop-continue-1"
      }
    }
  ]
}