{
  "version": "1.0.0",
  "exported_at": "2026-05-31T16:55:00.000Z",
  "project": {
    "name": "TripAdvisor Hotel Reviews Scraper",
    "description": "Best-effort TripAdvisor hotel review scraper equivalent to the Octoparse template. Extracts hotel metadata and review fields from TripAdvisor hotel detail pages, using navigate.urls for multiple hotel URLs and a click-next pagination loop for all review pages. Attached analysis and autonomous tests showed TripAdvisor DataDome/CAPTCHA HTTP 403 blocking in this environment. When CAPTCHA is detected, the template writes a diagnostic row to the CSV for that blocked URL, then advances to the next hotel URL. It does not bypass CAPTCHA automatically.",
    "color": "bg-[#4589ff]",
    "template_id": "ai-generated"
  },
  "blocks": [
    {
      "block_id": "navigate-1",
      "block_type": "process",
      "title": "Navigate",
      "description": "Go to a URL",
      "position_x": 120,
      "position_y": 220,
      "config": {
        "urls": [
          "https://www.tripadvisor.com//Hotel_Review-g45963-d91925-Reviews-ARIA_Resort_Casino-Las_Vegas_Nevada.html",
          "https://www.tripadvisor.com/Hotel_Review-g60763-d10679074-Reviews-Luma_Hotel_Time_Square-New_York_City_New_York.html"
        ],
        "color": "bg-[#4589ff]"
      }
    },
    {
      "block_id": "wait-for-page-load-1",
      "block_type": "process",
      "title": "Wait for Page Load",
      "description": "Wait for page to finish loading",
      "position_x": 456,
      "position_y": 220,
      "config": {
        "timeout": 30
      }
    },
    {
      "block_id": "inject-javascript-1",
      "block_type": "process",
      "title": "Inject JavaScript",
      "description": "Run custom JavaScript on the page",
      "position_x": 792,
      "position_y": 220,
      "config": {
        "jsCode": "(()=>{for(const el of Array.from(document.querySelectorAll('button,a,[role=\"button\"]'))){const t=(el.innerText||el.textContent||'').trim();if(/^(Accept|I Accept|Accept All|Agree|OK)$/i.test(t)){try{el.click();}catch(e){}}}return true;})()",
        "waitForCompletion": true,
        "timeout": 10
      }
    },
    {
      "block_id": "element-exists-1",
      "block_type": "process",
      "title": "Element Exists",
      "description": "Check if element exists",
      "position_x": 1128,
      "position_y": 220,
      "config": {
        "selector": "iframe[src*=\"captcha-delivery.com\"], iframe[title*=\"DataDome\"], iframe[title*=\"CAPTCHA\"]"
      }
    },
    {
      "block_id": "structured-export-2",
      "block_type": "process",
      "title": "Structured Export",
      "description": "Export data with custom columns",
      "position_x": 1464,
      "position_y": 520,
      "config": {
        "rowSelector": "body",
        "fileName": "tripadvisor-hotel-reviews-scraper.csv",
        "saveLocation": "C:\\Users\\theskd\\Documents\\UScraper\\templates",
        "includeHeaders": true,
        "fileMode": "append",
        "columns": [
          {
            "name": "hotel_name",
            "selector": "(()=>{const h=location.href;const m=h.match(/Reviews-([^-]+)-/);return m?decodeURIComponent(m[1]).replace(/_/g,' '):'';})()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "number_of_review",
            "selector": "''",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "hotel_location",
            "selector": "''",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "hotel_number",
            "selector": "''",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "hotel_url",
            "selector": "(()=>location.href.replace(/-or\\d+-/,'-'))()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "hotel_rating",
            "selector": "''",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "current_review_page",
            "selector": "(()=>{const m=location.href.match(/-or(\\d+)-/);return m?String(Math.floor(parseInt(m[1],10)/10)+1):'1';})()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "current_page_url",
            "selector": "(()=>location.href)()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "user",
            "selector": "'CAPTCHA_BLOCKED'",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "review",
            "selector": "'TripAdvisor DataDome/CAPTCHA detected. Review data unavailable in this automated run for this URL.'",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "user_address",
            "selector": "''",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "title",
            "selector": "'CAPTCHA blocked'",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "date_of_stay",
            "selector": "''",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "rating",
            "selector": "''",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "raw_rating",
            "selector": "''",
            "attribute": "text",
            "isJs": true
          }
        ]
      }
    },
    {
      "block_id": "wait-for-element-1",
      "block_type": "process",
      "title": "Wait for Element",
      "description": "Wait until element appears",
      "position_x": 1128,
      "position_y": 520,
      "config": {
        "selector": "div[data-reviewid]",
        "timeout": 45,
        "visible": true
      }
    },
    {
      "block_id": "inject-javascript-2",
      "block_type": "process",
      "title": "Inject JavaScript",
      "description": "Run custom JavaScript on the page",
      "position_x": 1632,
      "position_y": 800,
      "config": {
        "jsCode": "(()=>{for(const el of Array.from(document.querySelectorAll('button,span,a,[role=\"button\"]'))){const t=(el.innerText||el.textContent||'').trim();if(/^(Read more|More)$/i.test(t)||/Read more/i.test(t)){try{el.click();}catch(e){}}}return true;})()",
        "waitForCompletion": true,
        "timeout": 10
      }
    },
    {
      "block_id": "sleep-1",
      "block_type": "process",
      "title": "Sleep",
      "description": "Wait for specified time",
      "position_x": 1968,
      "position_y": 800,
      "config": {
        "duration": 1
      }
    },
    {
      "block_id": "structured-export-1",
      "block_type": "process",
      "title": "Structured Export",
      "description": "Export data with custom columns",
      "position_x": 2304,
      "position_y": 800,
      "config": {
        "rowSelector": "div[data-reviewid]",
        "fileName": "tripadvisor-hotel-reviews-scraper.csv",
        "saveLocation": "C:\\Users\\theskd\\Documents\\UScraper\\templates",
        "includeHeaders": true,
        "fileMode": "append",
        "columns": [
          {
            "name": "hotel_name",
            "selector": "(()=>{return (document.querySelector('h1')?.innerText||document.querySelector('[data-test-target=\"top-info-header\"]')?.innerText||'').trim();})()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "number_of_review",
            "selector": "(()=>{const txt=document.body.innerText||'';const m=txt.match(/([\\d,]+)\\s+reviews/i);return m?m[1].replace(/,/g,''):'';})()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "hotel_location",
            "selector": "(()=>{const selectors=['[data-test-target=\"business-address\"]','[data-test-target=\"address\"]','a[href*=\"MAPVIEW\"]','span[class*=\"address\"]'];for(const s of selectors){const el=document.querySelector(s);if(el&&el.innerText.trim())return el.innerText.trim();}const txt=document.body.innerText||'';const m=txt.match(/\\d{1,6}\\s+[^\\n]+(?:Street|St|Avenue|Ave|Boulevard|Blvd|Road|Rd|Drive|Dr|Lane|Ln|Way|Place|Pl)[^\\n]*/i);return m?m[0].trim():'';})()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "hotel_number",
            "selector": "(()=>{const loc=(()=>{const selectors=['[data-test-target=\"business-address\"]','[data-test-target=\"address\"]','a[href*=\"MAPVIEW\"]'];for(const s of selectors){const el=document.querySelector(s);if(el&&el.innerText.trim())return el.innerText.trim();}return document.body.innerText||'';})();const m=loc.match(/\\b\\d{5}(?:-\\d{4})?\\b/);return m?m[0]:'';})()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "hotel_url",
            "selector": "(()=>location.href.replace(/-or\\d+-/,'-'))()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "hotel_rating",
            "selector": "(()=>{const txt=document.body.innerText||'';let m=txt.match(/([0-5](?:\\.\\d)?)\\s+of\\s+5\\s+bubbles/i)||txt.match(/([0-5](?:\\.\\d)?)\\s+out\\s+of\\s+5/i);if(m)return m[1];const el=document.querySelector('[aria-label*=\"bubbles\"],[aria-label*=\"out\"]');const a=el?.getAttribute('aria-label')||'';m=a.match(/([0-5](?:\\.\\d)?)/);return m?m[1]:'';})()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "current_review_page",
            "selector": "(()=>{const m=location.href.match(/-or(\\d+)-/);return m?String(Math.floor(parseInt(m[1],10)/10)+1):'1';})()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "current_page_url",
            "selector": "(()=>location.href)()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "user",
            "selector": "(()=>{const selectors=['a[href*=\"/Profile/\"]','[data-test-target=\"review-card-user-name\"]','[class*=\"memberName\"]'];for(const s of selectors){const el=ROW.querySelector(s);if(el&&el.innerText.trim())return el.innerText.trim();}const lines=(ROW.innerText||'').split('\\n').map(x=>x.trim()).filter(Boolean);return lines[0]||'';})()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "review",
            "selector": "(()=>{const selectors=['[data-test-target=\"review-content\"]','q','span[class*=\"reviewText\"]','div[class*=\"reviewText\"]','.partial_entry'];for(const s of selectors){const el=ROW.querySelector(s);if(el&&el.innerText.trim())return el.innerText.trim();}const txt=ROW.innerText||'';return txt.replace(/\\n+/g,' ').trim();})()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "user_address",
            "selector": "(()=>{const profile=ROW.querySelector('a[href*=\"/Profile/\"]');const user=(profile?.innerText||'').trim();const scope=profile?.closest('div')?.parentElement||ROW;const lines=(scope.innerText||'').split('\\n').map(x=>x.trim()).filter(Boolean);return lines.find(x=>x!==user&&!/contribution|helpful|review|followers?|following/i.test(x))||'';})()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "title",
            "selector": "(()=>{const selectors=['[data-test-target=\"review-title\"]','a[data-test-target=\"review-title\"]','span[class*=\"reviewTitle\"]','div[class*=\"reviewTitle\"]'];for(const s of selectors){const el=ROW.querySelector(s);if(el&&el.innerText.trim())return el.innerText.trim();}const lines=(ROW.innerText||'').split('\\n').map(x=>x.trim()).filter(Boolean);return lines.find(x=>x.length>3&&x.length<140&&!/Date of stay|Trip type|Read more/i.test(x))||'';})()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "date_of_stay",
            "selector": "(()=>{const txt=ROW.innerText||'';const m=txt.match(/Date of stay:\\s*([A-Za-z]+)\\s+(\\d{4})/i)||txt.match(/Stayed\\s+([A-Za-z]+)\\s+(\\d{4})/i);if(!m)return '';const months={january:0,february:1,march:2,april:3,may:4,june:5,july:6,august:7,september:8,october:9,november:10,december:11,jan:0,feb:1,mar:2,apr:3,jun:5,jul:6,aug:7,sep:8,sept:8,oct:9,nov:10,dec:11};const mo=months[m[1].toLowerCase()];const y=parseInt(m[2],10);if(mo===undefined||!y)return '';const d=new Date(y,mo+1,0).getDate();return y+'-'+String(mo+1).padStart(2,'0')+'-'+String(d).padStart(2,'0');})()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "rating",
            "selector": "(()=>{const el=ROW.querySelector('[aria-label*=\"bubble\"],[aria-label*=\"out\"]');let s=el?.getAttribute('aria-label')||'';let m=s.match(/([0-5](?:\\.\\d)?)/);if(m)return m[1];const cls=Array.from(ROW.querySelectorAll('[class*=\"bubble_\"],span[class*=\"ui_bubble_rating\"]')).map(e=>String(e.className)).join(' ');m=cls.match(/bubble_(\\d+)/);return m?String(parseInt(m[1],10)/10):'';})()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "raw_rating",
            "selector": "(()=>{const el=ROW.querySelector('[aria-label*=\"bubble\"],[aria-label*=\"out\"]');let s=el?.getAttribute('aria-label')||'';let m=s.match(/([0-5](?:\\.\\d)?)/);if(m)return m[1];const cls=Array.from(ROW.querySelectorAll('[class*=\"bubble_\"],span[class*=\"ui_bubble_rating\"]')).map(e=>String(e.className)).join(' ');m=cls.match(/bubble_(\\d+)/);return m?String(parseInt(m[1],10)/10):'';})()",
            "attribute": "text",
            "isJs": true
          }
        ]
      }
    },
    {
      "block_id": "element-exists-2",
      "block_type": "process",
      "title": "Element Exists",
      "description": "Check if element exists",
      "position_x": 2640,
      "position_y": 800,
      "config": {
        "selector": "a[aria-label*=\"Next\"]:not([aria-disabled=\"true\"]), a.nav.next:not(.disabled), a.ui_button.nav.next.primary:not(.disabled)"
      }
    },
    {
      "block_id": "click-1",
      "block_type": "process",
      "title": "Click",
      "description": "Click on element",
      "position_x": 2976,
      "position_y": 800,
      "config": {
        "selector": "a[aria-label*=\"Next\"]:not([aria-disabled=\"true\"]), a.nav.next:not(.disabled), a.ui_button.nav.next.primary:not(.disabled)",
        "timeout": 10
      }
    },
    {
      "block_id": "wait-for-page-load-2",
      "block_type": "process",
      "title": "Wait for Page Load",
      "description": "Wait for page to finish loading",
      "position_x": 3312,
      "position_y": 800,
      "config": {
        "timeout": 30
      }
    },
    {
      "block_id": "sleep-2",
      "block_type": "process",
      "title": "Sleep",
      "description": "Wait for specified time",
      "position_x": 3648,
      "position_y": 800,
      "config": {
        "duration": 2
      }
    },
    {
      "block_id": "loop-continue-1",
      "block_type": "process",
      "title": "Loop Continue",
      "description": "Continue multi-input loop",
      "position_x": 1800,
      "position_y": 1080,
      "config": {}
    },
    {
      "block_id": "end-1",
      "block_type": "output",
      "title": "End",
      "description": "Terminate execution flow",
      "position_x": 2136,
      "position_y": 520,
      "config": {}
    }
  ],
  "connections": [
    {
      "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": "inject-javascript-1",
      "to_connector_id": "left"
    },
    {
      "from_block_id": "inject-javascript-1",
      "from_connector_id": "right",
      "to_block_id": "element-exists-1",
      "to_connector_id": "left"
    },
    {
      "from_block_id": "element-exists-1",
      "from_connector_id": "true",
      "to_block_id": "structured-export-2",
      "to_connector_id": "left"
    },
    {
      "from_block_id": "structured-export-2",
      "from_connector_id": "right",
      "to_block_id": "loop-continue-1",
      "to_connector_id": "left"
    },
    {
      "from_block_id": "element-exists-1",
      "from_connector_id": "false",
      "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-2",
      "to_connector_id": "left"
    },
    {
      "from_block_id": "inject-javascript-2",
      "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": "element-exists-2",
      "to_connector_id": "left"
    },
    {
      "from_block_id": "element-exists-2",
      "from_connector_id": "true",
      "to_block_id": "click-1",
      "to_connector_id": "left"
    },
    {
      "from_block_id": "click-1",
      "from_connector_id": "right",
      "to_block_id": "wait-for-page-load-2",
      "to_connector_id": "left"
    },
    {
      "from_block_id": "wait-for-page-load-2",
      "from_connector_id": "right",
      "to_block_id": "sleep-2",
      "to_connector_id": "left"
    },
    {
      "from_block_id": "sleep-2",
      "from_connector_id": "right",
      "to_block_id": "wait-for-element-1",
      "to_connector_id": "left"
    },
    {
      "from_block_id": "element-exists-2",
      "from_connector_id": "false",
      "to_block_id": "loop-continue-1",
      "to_connector_id": "left"
    },
    {
      "from_block_id": "loop-continue-1",
      "from_connector_id": "right",
      "to_block_id": "end-1",
      "to_connector_id": "left"
    }
  ],
  "canvas_elements": [
    {
      "id": "group-load",
      "element_type": "group",
      "title": "Page Load",
      "color": "#08bdba",
      "position_x": 48,
      "position_y": 116,
      "width": 3848,
      "height": 876,
      "z_index": 20,
      "data": {
        "memberBlockIds": [
          "navigate-1",
          "wait-for-page-load-1",
          "wait-for-element-1",
          "sleep-1",
          "wait-for-page-load-2",
          "sleep-2"
        ]
      }
    },
    {
      "id": "group-interaction",
      "element_type": "group",
      "title": "Interaction",
      "color": "#a56eff",
      "position_x": 720,
      "position_y": 116,
      "width": 1160,
      "height": 876,
      "z_index": 20,
      "data": {
        "memberBlockIds": [
          "inject-javascript-1",
          "inject-javascript-2"
        ]
      }
    },
    {
      "id": "group-pagination",
      "element_type": "group",
      "title": "Pagination Loop",
      "color": "#ff832b",
      "position_x": 1056,
      "position_y": 116,
      "width": 2168,
      "height": 1156,
      "z_index": 20,
      "data": {
        "memberBlockIds": [
          "element-exists-1",
          "element-exists-2",
          "click-1",
          "loop-continue-1"
        ]
      }
    },
    {
      "id": "group-extract",
      "element_type": "group",
      "title": "Data Extraction",
      "color": "#42be65",
      "position_x": 1392,
      "position_y": 416,
      "width": 1160,
      "height": 576,
      "z_index": 20,
      "data": {
        "memberBlockIds": [
          "structured-export-2",
          "structured-export-1"
        ]
      }
    },
    {
      "id": "group-control",
      "element_type": "group",
      "title": "Control Flow",
      "color": "#8d8d8d",
      "position_x": 2064,
      "position_y": 416,
      "width": 380,
      "height": 296,
      "z_index": 20,
      "data": {
        "memberBlockIds": [
          "end-1"
        ]
      }
    },
    {
      "id": "note-overview",
      "element_type": "note",
      "title": "Overview",
      "content": "Best-effort TripAdvisor hotel review scraper equivalent to the Octoparse template. Extracts hotel metadata and review fields from TripAdvisor hotel detail pages, using navigate.urls for multiple hotel URLs and a click-next pagination loop for all review pages. Attached analysis and autonomous tests showed TripAdvisor DataDome/CAPTCHA HTTP 403 blocking in this environment. When CAPTCHA is detected, the template writes a diagnostic row to the CSV for that blocked URL, then advances to the next hotel URL. It does not bypass CAPTCHA automatically.",
      "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: `(()=>{for(const el of Array.from(document.querySelectorAll('button,a,[role=\"button\"]'))){const t=(el...` Verify in browser if results are empty.",
      "color": "#ee5396",
      "position_x": 992,
      "position_y": 200,
      "width": 340,
      "height": 140,
      "z_index": 22,
      "data": {
        "block_id": "inject-javascript-1"
      }
    },
    {
      "id": "note-block-element-exists-1",
      "element_type": "note",
      "title": "Note: Element Exists",
      "content": "Condition block: checks `iframe[src*=\"captcha-delivery.com\"], iframe[title*=\"DataDome\"], iframe[title*=\"CAPTCHA\"]`. True / False branches control which path runs next. Keep enough space between branches so both connector lines are visible.",
      "color": "#ee5396",
      "position_x": 1328,
      "position_y": 200,
      "width": 340,
      "height": 159,
      "z_index": 22,
      "data": {
        "block_id": "element-exists-1"
      }
    },
    {
      "id": "note-block-structured-export-2",
      "element_type": "note",
      "title": "Note: Structured Export",
      "content": "Structured export with JS columns (hotel_name, number_of_review, hotel_location, hotel_number, hotel_url). These selectors are fragile — update if the site layout changes.",
      "color": "#ee5396",
      "position_x": 1664,
      "position_y": 500,
      "width": 340,
      "height": 137,
      "z_index": 22,
      "data": {
        "block_id": "structured-export-2"
      }
    },
    {
      "id": "note-block-inject-javascript-2",
      "element_type": "note",
      "title": "Note: Inject JavaScript",
      "content": "Runs custom JavaScript in the page: `(()=>{for(const el of Array.from(document.querySelectorAll('button,span,a,[role=\"button\"]'))){const ...` Verify in browser if results are empty.",
      "color": "#ee5396",
      "position_x": 1832,
      "position_y": 780,
      "width": 340,
      "height": 140,
      "z_index": 22,
      "data": {
        "block_id": "inject-javascript-2"
      }
    },
    {
      "id": "note-block-structured-export-1",
      "element_type": "note",
      "title": "Note: Structured Export",
      "content": "Structured export with JS columns (hotel_name, number_of_review, hotel_location, hotel_number, hotel_url). These selectors are fragile — update if the site layout changes.",
      "color": "#ee5396",
      "position_x": 2504,
      "position_y": 780,
      "width": 340,
      "height": 137,
      "z_index": 22,
      "data": {
        "block_id": "structured-export-1"
      }
    },
    {
      "id": "note-block-element-exists-2",
      "element_type": "note",
      "title": "Note: Element Exists",
      "content": "Condition block: checks `a[aria-label*=\"Next\"]:not([aria-disabled=\"true\"]), a.nav.next:not(.disabled), a.ui_button.nav.next.primary:not(.disabled`. True / False branches control which path runs next. Keep enough space between branches so both connector lines are visible.",
      "color": "#ee5396",
      "position_x": 2840,
      "position_y": 780,
      "width": 340,
      "height": 170,
      "z_index": 22,
      "data": {
        "block_id": "element-exists-2"
      }
    },
    {
      "id": "note-block-click-1",
      "element_type": "note",
      "title": "Note: Click",
      "content": "Pagination click — add waits after this block; the page reloads asynchronously.",
      "color": "#ee5396",
      "position_x": 3176,
      "position_y": 780,
      "width": 316,
      "height": 106,
      "z_index": 22,
      "data": {
        "block_id": "click-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": 2000,
      "position_y": 1060,
      "width": 340,
      "height": 123,
      "z_index": 22,
      "data": {
        "block_id": "loop-continue-1"
      }
    }
  ]
}