{
  "version": "1.0.0",
  "exported_at": "2026-06-01T12:00:00.000Z",
  "project": {
    "name": "Openwork Job Reviews ScraperCloud only",
    "description": "Scrapes publicly visible OpenWork company review summary metrics from multiple company profile URLs. Uses a multi-URL navigation loop: each URL is opened, the company score block is waited for, one row is exported, then loop-continue advances to the next URL. No in-page pagination was detected on these company TOP pages. If OpenWork presents CAPTCHA or login/registration gates, manual intervention may be required.",
    "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": 260,
      "config": {
        "urls": [
          "https://www.openwork.jp/company.php?m_id=a0C1000000s1mgI",
          "https://www.openwork.jp/company.php?m_id=a0910000000G33n",
          "https://www.openwork.jp/company.php?m_id=a0910000000FrPl"
        ],
        "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": 480,
      "position_y": 260,
      "config": {
        "timeout": 30,
        "color": "bg-[#08bdba]"
      }
    },
    {
      "block_id": "wait-for-element-1",
      "block_type": "process",
      "title": "Wait for Element",
      "description": "Wait until element appears",
      "position_x": 840,
      "position_y": 260,
      "config": {
        "selector": ".averageScore",
        "timeout": 30,
        "visible": true,
        "color": "bg-[#08bdba]"
      }
    },
    {
      "block_id": "sleep-1",
      "block_type": "process",
      "title": "Sleep",
      "description": "Wait for specified time",
      "position_x": 1200,
      "position_y": 260,
      "config": {
        "duration": 1,
        "color": "bg-[#08bdba]"
      }
    },
    {
      "block_id": "structured-export-1",
      "block_type": "process",
      "title": "Structured Export",
      "description": "Export data with custom columns",
      "position_x": 1560,
      "position_y": 260,
      "config": {
        "rowSelector": "body",
        "fileName": "openwork-job-reviews-cloud-only-scraper.csv",
        "saveLocation": "C:\\Users\\theskd\\Documents\\UScraper\\templates",
        "includeHeaders": true,
        "fileMode": "append",
        "color": "bg-[#42be65]",
        "columns": [
          {
            "name": "ページのURL",
            "selector": "(() => location.href)()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "合計得点",
            "selector": ".averageScore .totalEvaluation_item.fs-17 .fw-b",
            "attribute": "text"
          },
          {
            "name": "待遇面の満足度",
            "selector": "(() => { const text = ROW.innerText.replace(/\\s+/g, ' '); const m = text.match(/待遇面の満足度\\s*([0-9.]+)/); return m ? m[1] : ''; })()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "社員の士気",
            "selector": "(() => { const text = ROW.innerText.replace(/\\s+/g, ' '); const m = text.match(/社員の士気\\s*([0-9.]+)/); return m ? m[1] : ''; })()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "風通しの良さ",
            "selector": "(() => { const text = ROW.innerText.replace(/\\s+/g, ' '); const m = text.match(/風通しの良さ\\s*([0-9.]+)/); return m ? m[1] : ''; })()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "社員の相互尊重",
            "selector": "(() => { const text = ROW.innerText.replace(/\\s+/g, ' '); const m = text.match(/社員の相互尊重\\s*([0-9.]+)/); return m ? m[1] : ''; })()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "_20代成長環境",
            "selector": "(() => { const text = ROW.innerText.replace(/\\s+/g, ' '); const m = text.match(/20代成長環境\\s*([0-9.]+)/); return m ? m[1] : ''; })()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "人材の長期育成",
            "selector": "(() => { const text = ROW.innerText.replace(/\\s+/g, ' '); const m = text.match(/人材の長期育成\\s*([0-9.]+)/); return m ? m[1] : ''; })()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "法令順守意識",
            "selector": "(() => { const text = ROW.innerText.replace(/\\s+/g, ' '); const m = text.match(/法令順守意識\\s*([0-9.]+)/); return m ? m[1] : ''; })()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "人事評価の適切感",
            "selector": "(() => { const text = ROW.innerText.replace(/\\s+/g, ' '); const m = text.match(/人事評価の適[正切]感\\s*([0-9.]+)/); return m ? m[1] : ''; })()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "回答者の平均年収",
            "selector": "(() => { const text = ROW.innerText.replace(/\\s+/g, ' '); const m = text.match(/回答者の平均年収：\\s*([0-9,]+万円)/); return m ? m[1] : ''; })()",
            "attribute": "text",
            "isJs": true
          },
          {
            "name": "年収範囲",
            "selector": "(() => { const text = ROW.innerText.replace(/\\s+/g, ' '); const m = text.match(/年収範囲\\s*([0-9,]+万円[〜～~][0-9,]+万円)/); return m ? m[1].replace(/[〜～]/g, '~') : ''; })()",
            "attribute": "text",
            "isJs": true
          }
        ]
      }
    },
    {
      "block_id": "loop-continue-1",
      "block_type": "process",
      "title": "Loop Continue",
      "description": "Continue multi-input loop",
      "position_x": 1920,
      "position_y": 260,
      "config": {
        "color": "bg-[#8d8d8d]"
      }
    }
  ],
  "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": "wait-for-element-1",
      "to_connector_id": "left"
    },
    {
      "from_block_id": "wait-for-element-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-load",
      "element_type": "group",
      "title": "Page Load",
      "color": "#08bdba",
      "position_x": 48,
      "position_y": 156,
      "width": 1400,
      "height": 296,
      "z_index": 20,
      "data": {
        "memberBlockIds": [
          "navigate-1",
          "wait-for-page-load-1",
          "wait-for-element-1",
          "sleep-1"
        ]
      }
    },
    {
      "id": "group-extract",
      "element_type": "group",
      "title": "Data Extraction",
      "color": "#42be65",
      "position_x": 1488,
      "position_y": 156,
      "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": 1848,
      "position_y": 156,
      "width": 380,
      "height": 296,
      "z_index": 20,
      "data": {
        "memberBlockIds": [
          "loop-continue-1"
        ]
      }
    },
    {
      "id": "note-overview",
      "element_type": "note",
      "title": "Overview",
      "content": "Scrapes publicly visible OpenWork company review summary metrics from multiple company profile URLs. Uses a multi-URL navigation loop: each URL is opened, the company score block is waited for, one row is exported, then loop-continue advances to the next URL. No in-page pagination was detected on these company TOP pages. If OpenWork presents CAPTCHA or login/registration gates, manual intervention may be required.",
      "color": "#f1c21b",
      "position_x": 80,
      "position_y": 20,
      "width": 480,
      "height": 160,
      "z_index": 22,
      "data": {}
    },
    {
      "id": "note-block-structured-export-1",
      "element_type": "note",
      "title": "Note: Structured Export",
      "content": "Structured export with JS columns (ページのURL, 待遇面の満足度, 社員の士気, 風通しの良さ, 社員の相互尊重). These selectors are fragile — update if the site layout changes.",
      "color": "#ee5396",
      "position_x": 1760,
      "position_y": 240,
      "width": 340,
      "height": 127,
      "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": 2120,
      "position_y": 240,
      "width": 340,
      "height": 123,
      "z_index": 22,
      "data": {
        "block_id": "loop-continue-1"
      }
    }
  ]
}