{
  "version": "1.0.0",
  "exported_at": "2026-06-01T05:15:00.000Z",
  "project": {
    "name": "Amazon Japan Product Details Scraper",
    "description": "Best-effort Amazon.co.jp product detail scraper equivalent to the Octoparse ASIN template. It visits one or more Amazon Japan /dp/{ASIN} product URLs, waits for the page body instead of only #productTitle so unavailable/CAPTCHA/page-variant URLs do not halt the full run, scrolls once to encourage lazy detail/image loading, then appends one CSV row per product URL. Navigation strategy: known product URL list via navigate.urls[] plus loop-continue; replace or extend the sample URLs with ASIN URLs from your own Amazon URL/ASIN discovery workflow. Extracts ASIN, page URL, title, brand, rating, review count, price, inventory, seller, bullet points, product information/details, model number, weight, best-seller rank, first available date, up to six image URLs, and current scrape time. Amazon may show localization prompts, CAPTCHAs, unavailable fields, translated labels, or anti-bot blocks; selectors/JS include Japanese and English fallbacks but blocked pages may export partial or blank 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 dimensions",
      "position_x": 120,
      "position_y": 240,
      "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": 240,
      "config": {
        "urls": [
          "https://www.amazon.co.jp/dp/B073726R5M",
          "https://www.amazon.co.jp/dp/B08L6FJJZZ",
          "https://www.amazon.co.jp/dp/B07T35N29H",
          "https://www.amazon.co.jp/dp/B0FKMTS5D5",
          "https://www.amazon.co.jp/dp/B08WP8TZ42"
        ],
        "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": 240,
      "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": 240,
      "config": {
        "selector": "body",
        "timeout": 45,
        "visible": true,
        "color": "bg-[#08bdba]"
      }
    },
    {
      "block_id": "inject-javascript-1",
      "block_type": "process",
      "title": "Inject JavaScript",
      "description": "Run custom JavaScript",
      "position_x": 1560,
      "position_y": 240,
      "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": 240,
      "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": 240,
      "config": {
        "rowSelector": "body",
        "fileName": "amazon-japan-product-details-scraper.csv",
        "saveLocation": "C:\\Users\\theskd\\Documents\\UScraper\\templates",
        "includeHeaders": true,
        "fileMode": "append",
        "color": "bg-[#42be65]",
        "columns": [
          {
            "name": "ASIN",
            "selector": "(() => { const m = location.pathname.match(/\\/(?:dp|gp\\/product)\\/([A-Z0-9]{10})/i); return m ? m[1] : (document.querySelector('input#ASIN')?.value || ''); })()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "Web_Page_URL",
            "selector": "(() => location.href)()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "Title",
            "selector": "(() => { const clean = s => (s || '').replace(/\\s+/g, ' ').trim(); return clean(document.querySelector('#productTitle')?.textContent) || clean(document.querySelector('h1#title, h1')?.textContent) || clean(document.title.replace(/^Amazon\\.co\\.jp:\\s*/i, '').replace(/:\\s*Amazon.*$/i, '')); })()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "Brand",
            "selector": "(() => { const clean = s => (s || '').replace(/\\s+/g, ' ').trim(); const byline = clean(document.querySelector('#bylineInfo')?.textContent); if (byline) return byline; const rows = Array.from(document.querySelectorAll('#productOverview_feature_div tr, #detailBullets_feature_div li, #productDetails_techSpec_section_1 tr, #productDetails_detailBullets_sections1 tr')); for (const row of rows) { const t = clean(row.textContent); if (/^(Brand|ブランド|メーカー)\\b/i.test(t)) return t.replace(/^(Brand|ブランド|メーカー)\\s*[:：]?\\s*/i, ''); } return ''; })()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "Star_Rating",
            "selector": "(() => { const clean = s => (s || '').replace(/\\s+/g, ' ').trim(); return clean(document.querySelector('#acrPopover .a-icon-alt, #averageCustomerReviews .a-icon-alt, [data-hook=\"rating-out-of-text\"]')?.textContent); })()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "Number_of_Reviews",
            "selector": "(() => { const clean = s => (s || '').replace(/\\s+/g, ' ').trim(); return clean(document.querySelector('#acrCustomerReviewText, #acrCustomerReviewLink, [data-hook=\"total-review-count\"]')?.textContent); })()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "Price",
            "selector": "(() => { const clean = s => (s || '').replace(/\\s+/g, ' ').trim(); const selectors = ['#corePrice_feature_div .a-price .a-offscreen', '#apex_desktop .a-price .a-offscreen', '#priceblock_ourprice', '#priceblock_dealprice', '.a-price .a-offscreen']; for (const sel of selectors) { const v = clean(document.querySelector(sel)?.textContent); if (v) return v; } return ''; })()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "Inventory",
            "selector": "(() => { const clean = s => (s || '').replace(/\\s+/g, ' ').trim(); return clean(document.querySelector('#availability span, #availability')?.textContent); })()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "Seller",
            "selector": "(() => { const clean = s => (s || '').replace(/\\s+/g, ' ').trim(); const selectors = ['#sellerProfileTriggerId', '#merchant-info a', '#merchant-info', '#tabular-buybox .tabular-buybox-text', '#shipsFromSoldByInsideBuyBox_feature_div']; for (const sel of selectors) { const v = clean(document.querySelector(sel)?.textContent); if (v) return v; } return ''; })()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "Bullet_Points",
            "selector": "(() => { const clean = s => (s || '').replace(/\\s+/g, ' ').trim(); const bullets = Array.from(document.querySelectorAll('#feature-bullets li span.a-list-item, #featurebullets_feature_div li span.a-list-item')).map(el => clean(el.textContent)).filter(Boolean).filter(t => !/report an issue|詳細を見る|show more/i.test(t)); return bullets.join(' '); })()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "Product_Information",
            "selector": "(() => { const clean = s => (s || '').replace(/\\s+/g, ' ').trim(); const rows = []; const add = (k, v) => { k = clean(k).replace(/[:：]$/, ''); v = clean(v); if (k && v && k !== v) rows.push('\"' + k.replace(/\"/g, '') + '\": \"' + v.replace(/\"/g, '') + '\"'); }; document.querySelectorAll('#productDetails_techSpec_section_1 tr, #productDetails_detailBullets_sections1 tr').forEach(tr => add(tr.querySelector('th')?.textContent, tr.querySelector('td')?.textContent)); document.querySelectorAll('#productOverview_feature_div tr, table.a-normal.a-spacing-micro tr').forEach(tr => { const cells = tr.querySelectorAll('td, th'); if (cells.length >= 2) add(cells[0].textContent, cells[1].textContent); }); document.querySelectorAll('#detailBullets_feature_div li').forEach(li => { const label = clean(li.querySelector('.a-text-bold')?.textContent); const full = clean(li.textContent); if (label) add(label, full.replace(label, '').replace(/^[:：\\s-]+/, '')); }); return Array.from(new Set(rows)).join('\\n'); })()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "Item_Model_Number",
            "selector": "(() => { const clean = s => (s || '').replace(/\\s+/g, ' ').trim(); const labels = ['Item model number', '商品モデル番号', 'メーカー型番', '型番']; const rows = Array.from(document.querySelectorAll('#productDetails_techSpec_section_1 tr, #productDetails_detailBullets_sections1 tr, #detailBullets_feature_div li, #productOverview_feature_div tr')); for (const row of rows) { const t = clean(row.textContent); for (const label of labels) { if (t.toLowerCase().includes(label.toLowerCase())) { const td = clean(row.querySelector('td')?.textContent); if (td && !td.toLowerCase().includes(label.toLowerCase())) return td; let out = t; labels.forEach(l => out = out.replace(new RegExp(l, 'ig'), '')); return clean(out.replace(/^[:：\\s-]+/, '')); } } } return ''; })()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "item_Weight",
            "selector": "(() => { const clean = s => (s || '').replace(/\\s+/g, ' ').trim(); const labels = ['Item Weight', '商品重量', '梱包重量']; const rows = Array.from(document.querySelectorAll('#productDetails_techSpec_section_1 tr, #productDetails_detailBullets_sections1 tr, #detailBullets_feature_div li, #productOverview_feature_div tr')); for (const row of rows) { const t = clean(row.textContent); for (const label of labels) { if (t.toLowerCase().includes(label.toLowerCase())) { const td = clean(row.querySelector('td')?.textContent); if (td && !td.toLowerCase().includes(label.toLowerCase())) return td; let out = t; labels.forEach(l => out = out.replace(new RegExp(l, 'ig'), '')); return clean(out.replace(/^[:：\\s-]+/, '')); } } } return ''; })()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "Best_Sellers_Rank",
            "selector": "(() => { const clean = s => (s || '').replace(/\\s+/g, ' ').trim(); const labels = ['Best Sellers Rank', 'Amazon 売れ筋ランキング', '売れ筋ランキング']; const rows = Array.from(document.querySelectorAll('#productDetails_detailBullets_sections1 tr, #detailBullets_feature_div li, #productDetails_techSpec_section_1 tr')); for (const row of rows) { const t = clean(row.textContent); for (const label of labels) { if (t.toLowerCase().includes(label.toLowerCase())) { const td = clean(row.querySelector('td')?.textContent); if (td && !td.toLowerCase().includes(label.toLowerCase())) return td; let out = t; labels.forEach(l => out = out.replace(new RegExp(l, 'ig'), '')); return clean(out.replace(/^[:：\\s-]+/, '')); } } } return ''; })()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "Date_First_Available",
            "selector": "(() => { const clean = s => (s || '').replace(/\\s+/g, ' ').trim(); const labels = ['Date First Available', 'Amazon.co.jp での取り扱い開始日', '取り扱い開始日']; const rows = Array.from(document.querySelectorAll('#productDetails_detailBullets_sections1 tr, #detailBullets_feature_div li, #productDetails_techSpec_section_1 tr')); for (const row of rows) { const t = clean(row.textContent); for (const label of labels) { if (t.toLowerCase().includes(label.toLowerCase())) { const td = clean(row.querySelector('td')?.textContent); if (td && !td.toLowerCase().includes(label.toLowerCase())) return td; let out = t; labels.forEach(l => out = out.replace(new RegExp(l, 'ig'), '')); return clean(out.replace(/^[:：\\s-]+/, '')); } } } return ''; })()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "Image_URL_1",
            "selector": "(() => { const urls = []; const seen = new Set(); const norm = u => u ? u.replace(/\\._[^.]+_\\./, '._AC_SX679_.') : ''; const add = u => { u = norm(u); if (!u || !/m\\.media-amazon\\.com\\/images/i.test(u) || /\\.svg/i.test(u)) return; const key = u.replace(/\\._[^.]+_\\./, '.'); if (!seen.has(key)) { seen.add(key); urls.push(u); } }; document.querySelectorAll('#imgTagWrapperId img, #imageBlock img, #altImages img, img[data-a-dynamic-image]').forEach(img => { const dyn = img.getAttribute('data-a-dynamic-image'); if (dyn) { try { Object.keys(JSON.parse(dyn)).forEach(add); } catch(e) {} } add(img.getAttribute('data-old-hires')); add(img.getAttribute('data-a-hires')); add(img.src); }); return urls[0] || ''; })()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "Image_URL_2",
            "selector": "(() => { const urls = []; const seen = new Set(); const norm = u => u ? u.replace(/\\._[^.]+_\\./, '._AC_SX679_.') : ''; const add = u => { u = norm(u); if (!u || !/m\\.media-amazon\\.com\\/images/i.test(u) || /\\.svg/i.test(u)) return; const key = u.replace(/\\._[^.]+_\\./, '.'); if (!seen.has(key)) { seen.add(key); urls.push(u); } }; document.querySelectorAll('#imgTagWrapperId img, #imageBlock img, #altImages img, img[data-a-dynamic-image]').forEach(img => { const dyn = img.getAttribute('data-a-dynamic-image'); if (dyn) { try { Object.keys(JSON.parse(dyn)).forEach(add); } catch(e) {} } add(img.getAttribute('data-old-hires')); add(img.getAttribute('data-a-hires')); add(img.src); }); return urls[1] || ''; })()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "Image_URL_3",
            "selector": "(() => { const urls = []; const seen = new Set(); const norm = u => u ? u.replace(/\\._[^.]+_\\./, '._AC_SX679_.') : ''; const add = u => { u = norm(u); if (!u || !/m\\.media-amazon\\.com\\/images/i.test(u) || /\\.svg/i.test(u)) return; const key = u.replace(/\\._[^.]+_\\./, '.'); if (!seen.has(key)) { seen.add(key); urls.push(u); } }; document.querySelectorAll('#imgTagWrapperId img, #imageBlock img, #altImages img, img[data-a-dynamic-image]').forEach(img => { const dyn = img.getAttribute('data-a-dynamic-image'); if (dyn) { try { Object.keys(JSON.parse(dyn)).forEach(add); } catch(e) {} } add(img.getAttribute('data-old-hires')); add(img.getAttribute('data-a-hires')); add(img.src); }); return urls[2] || ''; })()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "Image_URL_4",
            "selector": "(() => { const urls = []; const seen = new Set(); const norm = u => u ? u.replace(/\\._[^.]+_\\./, '._AC_SX679_.') : ''; const add = u => { u = norm(u); if (!u || !/m\\.media-amazon\\.com\\/images/i.test(u) || /\\.svg/i.test(u)) return; const key = u.replace(/\\._[^.]+_\\./, '.'); if (!seen.has(key)) { seen.add(key); urls.push(u); } }; document.querySelectorAll('#imgTagWrapperId img, #imageBlock img, #altImages img, img[data-a-dynamic-image]').forEach(img => { const dyn = img.getAttribute('data-a-dynamic-image'); if (dyn) { try { Object.keys(JSON.parse(dyn)).forEach(add); } catch(e) {} } add(img.getAttribute('data-old-hires')); add(img.getAttribute('data-a-hires')); add(img.src); }); return urls[3] || ''; })()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "Image_URL_5",
            "selector": "(() => { const urls = []; const seen = new Set(); const norm = u => u ? u.replace(/\\._[^.]+_\\./, '._AC_SX679_.') : ''; const add = u => { u = norm(u); if (!u || !/m\\.media-amazon\\.com\\/images/i.test(u) || /\\.svg/i.test(u)) return; const key = u.replace(/\\._[^.]+_\\./, '.'); if (!seen.has(key)) { seen.add(key); urls.push(u); } }; document.querySelectorAll('#imgTagWrapperId img, #imageBlock img, #altImages img, img[data-a-dynamic-image]').forEach(img => { const dyn = img.getAttribute('data-a-dynamic-image'); if (dyn) { try { Object.keys(JSON.parse(dyn)).forEach(add); } catch(e) {} } add(img.getAttribute('data-old-hires')); add(img.getAttribute('data-a-hires')); add(img.src); }); return urls[4] || ''; })()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "Image_URL_6",
            "selector": "(() => { const urls = []; const seen = new Set(); const norm = u => u ? u.replace(/\\._[^.]+_\\./, '._AC_SX679_.') : ''; const add = u => { u = norm(u); if (!u || !/m\\.media-amazon\\.com\\/images/i.test(u) || /\\.svg/i.test(u)) return; const key = u.replace(/\\._[^.]+_\\./, '.'); if (!seen.has(key)) { seen.add(key); urls.push(u); } }; document.querySelectorAll('#imgTagWrapperId img, #imageBlock img, #altImages img, img[data-a-dynamic-image]').forEach(img => { const dyn = img.getAttribute('data-a-dynamic-image'); if (dyn) { try { Object.keys(JSON.parse(dyn)).forEach(add); } catch(e) {} } add(img.getAttribute('data-old-hires')); add(img.getAttribute('data-a-hires')); add(img.src); }); return urls[5] || ''; })()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "Current_Time",
            "selector": "(() => new Date().toLocaleString('ja-JP', { hour12: false }))()",
            "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": 240,
      "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": 136,
      "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": 136,
      "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": 136,
      "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": 136,
      "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": 136,
      "width": 380,
      "height": 296,
      "z_index": 20,
      "data": {
        "memberBlockIds": [
          "loop-continue-1"
        ]
      }
    },
    {
      "id": "note-overview",
      "element_type": "note",
      "title": "Overview",
      "content": "Best-effort Amazon.co.jp product detail scraper equivalent to the Octoparse ASIN template. It visits one or more Amazon Japan /dp/{ASIN} product URLs, waits for the page body instead of only #productTitle so unavailable/CAPTCHA/page-variant URLs do not halt the full run, scrolls once to encourage lazy detail/image loading, then appends one CSV row per product URL. Navigation strategy: known product URL list via navigate.urls[] plus loop-continue; replace or extend the sample URLs with ASIN URLs from your own Amazon URL/ASIN discovery workflow. Extracts ASIN, page URL, title, brand, rating, review count, price, inventory, seller, bullet points, product information/details, model number, weight, best-seller rank, first available date, up to six image URLs, and current scrape time. Amazon may show localization prompts, CAPTCHAs, unavailable fields, translated labels, or anti-bot blocks; selectors/JS include Japanese and English fallbacks but blocked pages may export partial or blank fields.",
      "color": "#f1c21b",
      "position_x": 80,
      "position_y": 20,
      "width": 480,
      "height": 160,
      "z_index": 22,
      "data": {}
    },
    {
      "id": "note-block-navigate-1",
      "element_type": "note",
      "title": "Note: Navigate",
      "content": "Multi-URL loop over 5 pages. Pair with loop-continue at the end of each iteration.",
      "color": "#ee5396",
      "position_x": 680,
      "position_y": 220,
      "width": 328,
      "height": 107,
      "z_index": 22,
      "data": {
        "block_id": "navigate-1"
      }
    },
    {
      "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": 220,
      "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, Web_Page_URL, Title, Brand, Star_Rating). These selectors are fragile — update if the site layout changes.",
      "color": "#ee5396",
      "position_x": 2480,
      "position_y": 220,
      "width": 340,
      "height": 129,
      "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": 220,
      "width": 340,
      "height": 123,
      "z_index": 22,
      "data": {
        "block_id": "loop-continue-1"
      }
    }
  ]
}