{"id":11435,"date":"2024-08-28T00:40:25","date_gmt":"2024-08-27T16:40:25","guid":{"rendered":"https:\/\/searchlabcare.com\/?page_id=11435"},"modified":"2025-07-18T06:19:18","modified_gmt":"2025-07-17T22:19:18","slug":"domestic-helper-pay-salary-calculator","status":"publish","type":"page","link":"https:\/\/searchlabcare.com\/cn\/domestic-helper-pay-salary-calculator\/","title":{"rendered":"\u5bb6\u4f63\u85aa\u916c\u8ba1\u7b97\u5668"},"content":{"rendered":"\n<h1 class=\"wp-block-heading\">Domestic Helper Pay Calculator<\/h1>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Calculate your domestic helper\u2019s monthly salary accurately and easily based on Singapore MOM guidelines.<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><\/h2>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-8f761849 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:50%\">\n<meta charset=\"UTF-8\">\n\n\n\n<meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n\n\n\n<title>Pay Calculator<\/title><script type=\"application\/ld+json\">\n{\n  \"@context\": \"https:\/\/schema.org\",\n  \"@type\": \"WebApplication\",\n  \"name\": \"Domestic Helper Pay Calculator\",\n  \"url\": \"https:\/\/searchlabcare.com\/domestic-helper-pay-salary-calculator\/\",\n  \"applicationCategory\": \"FinanceApplication\",\n  \"operatingSystem\": \"All\",\n  \"description\": \"An online calculator to compute maid salary in Singapore, including partial month, rest day pay, and MOM-compliant rules.\",\n  \"creator\": {\n    \"@type\": \"Organization\",\n    \"name\": \"SearchLab Care\",\n    \"url\": \"https:\/\/searchlabcare.com\"\n  }\n}\n<\/script>\n\n\n\n<style>\n    label {\n      display: block;\n      margin-bottom: .3rem;\n    }\n\n    input[type=\"number\"],\n    input[type=\"date\"] {\n      width: 100%;\n      padding: .4rem;\n      margin-top: 0.2rem;\n      margin-bottom: 0.3rem;\n      border: 1px solid #ccc;\n      border-radius: 4px;\n    }\n\n    input[type=\"checkbox\"] {\n      margin-right: .5rem;\n    }\n\n    button {\n      padding: 0.6rem 1rem;\n      margin-right: .5rem;\n      border: none;\n      background-color:#325585;\n      color: white;\n      border-radius: 5px;\n      cursor: pointer;\n    }\n\n    button:hover {\n      background-color: #1e73be;\n    }\n\n    #results {\n      background: white;\n      padding: 1rem;\n      border-radius: 8px;\n      max-width: 800px;\n      margin: 0 auto;\n      box-shadow: 0 2px 5px rgba(0,0,0,0.1);\n    }\n\n    #results p {\n      margin: .5rem 0;\n    }\n\n    @media (max-width: 800px) {\n      body {\n        padding: 0.5rem;\n      }\n      button {\n        width: 100%;\n        margin-bottom: 0.4rem;\n      }\n    }\n  <\/style>\n\n\n\n<form id=\"payCalculator\">\n    <label><input type=\"checkbox\" id=\"fullMonth\"><strong>Full Month<\/strong> (Check this box if the salary is for the entire month)<\/label><br>\n\n    <label><strong>For Incomplete Month<\/strong> (Select start and end dates)<\/label>\n    <label>Date From: <input type=\"date\" id=\"dateFrom\"><\/label>\n    <label>Date To: <input type=\"date\" id=\"dateTo\"><\/label>\n\n    <label>Monthly Salary (Enter salary amount): <input type=\"number\" id=\"monthlyPay\" step=\"0.01\"><\/label>\n\n    <label>Work Day Compensation (Enter no. of rest days worked that need pay compensation): <input type=\"number\" id=\"workDayComp\"><\/label>\n\n    <button type=\"button\" onclick=\"calculatePay()\">Calculate<\/button>\n    <button type=\"button\" onclick=\"resetCalculator()\">Reset<\/button>\n  <\/form>\n\n\n\n<div id=\"results\" style=\"display:none;\">\n    <h3>Pay Summary<\/h3>\n    <p id=\"monthlySalary\"><\/p>\n    <p id=\"dailyPayRate\"><\/p>\n    <p id=\"dateRange\"><\/p>\n    <p id=\"daysWorked\"><\/p>\n    <p id=\"monthlyPayResult\"><\/p>\n    <p id=\"workDayCompResult\"><\/p>\n    <p id=\"totalDaysWorked\" style=\"font-weight: bold;\"><\/p> <!-- Total Days Worked above Final Pay -->\n    <p id=\"finalPay\" style=\"font-weight: bold;\"><\/p> <!-- Final Pay below Total Days Worked -->\n    <button onclick=\"shareToWhatsApp()\">Send via WhatsApp<\/button>\n  <\/div>\n\n\n\n<script src=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/jspdf\/2.5.1\/jspdf.umd.min.js\"><\/script>\n\n\n\n<script>\n    function roundUpToNearestTenCents(value) {\n      return Math.ceil(value * 10) \/ 10;\n    }\n\n    function formatDateDDMMMYYYY(date) {\n      const day = String(date.getDate()).padStart(2, '0');\n      const monthNames = [\"Jan\", \"Feb\", \"Mar\", \"Apr\", \"May\", \"Jun\", \"Jul\", \"Aug\", \"Sep\", \"Oct\", \"Nov\", \"Dec\"];\n      const month = monthNames[date.getMonth()];\n      const year = date.getFullYear();\n      return `${day} ${month} ${year}`;\n    }\n\n    function calculatePay() {\n      const fullMonth = document.getElementById(\"fullMonth\").checked;\n      const monthlyPay = parseFloat(document.getElementById(\"monthlyPay\").value) || 0;\n      const workDayComp = parseInt(document.getElementById(\"workDayComp\").value) || 0;\n      const fixedWorkDays = 26;\n      const dailyPayRate = monthlyPay \/ fixedWorkDays;\n\n      let daysWorked = 0;\n      let basePay = 0;\n      let dateRangeText = \"\";\n      let sundayCount = 0;\n\n      if (fullMonth) {\n        daysWorked = fixedWorkDays;\n        basePay = monthlyPay;\n      } else {\n        const dateFromInput = document.getElementById(\"dateFrom\").value;\n        const dateToInput = document.getElementById(\"dateTo\").value;\n\n        if (!dateFromInput || !dateToInput) {\n          alert(\"Please select both Date From and Date To, or check Full Month.\");\n          return;\n        }\n\n        const dateFrom = new Date(dateFromInput);\n        const dateTo = new Date(dateToInput);\n\n        if (dateTo < dateFrom) {\n          alert(\"Date To cannot be before Date From.\");\n          return;\n        }\n\n        let current = new Date(dateFrom);\n        while (current <= dateTo) {\n          if (current.getDay() !== 0) {\n            daysWorked++;  \/\/ Add only non-Sunday days\n          } else {\n            sundayCount++;  \/\/ Count Sundays\n          }\n          current.setDate(current.getDate() + 1);\n        }\n\n        daysWorked = Math.min(daysWorked, fixedWorkDays);\n        basePay = dailyPayRate * daysWorked;\n        dateRangeText = `Date Range: ${formatDateDDMMMYYYY(dateFrom)} to ${formatDateDDMMMYYYY(dateTo)} (${sundayCount} Sundays)`;\n      }\n\n      const workDayCompensation = dailyPayRate * workDayComp;\n      const finalPay = roundUpToNearestTenCents(basePay + workDayCompensation);\n      const totalDaysWorked = daysWorked + workDayComp;  \/\/ Correct calculation of total days worked\n\n      \/\/ Display results\n      document.getElementById(\"monthlySalary\").innerText = `Monthly Salary: $${monthlyPay.toFixed(2)}`;\n      document.getElementById(\"dailyPayRate\").innerText = `Daily Pay Rate: $${dailyPayRate.toFixed(2)}`;\n      document.getElementById(\"dateRange\").innerText = dateRangeText;\n      document.getElementById(\"daysWorked\").innerText = `Work Days: ${daysWorked}`;\n      document.getElementById(\"monthlyPayResult\").innerText = `Base Pay: $${basePay.toFixed(2)}`;\n      document.getElementById(\"workDayCompResult\").innerText = `Work Day Compensation (${workDayComp} days): $${workDayCompensation.toFixed(2)}`;\n      document.getElementById(\"totalDaysWorked\").innerText = `Total Work Days: ${totalDaysWorked}`;  \/\/ Correct total days worked\n      document.getElementById(\"finalPay\").innerText = `Final Pay: $${finalPay.toFixed(2)}`;\n\n      document.getElementById(\"results\").style.display = \"block\";\n    }\n\n    function resetCalculator() {\n      document.getElementById(\"payCalculator\").reset();\n      document.getElementById(\"results\").style.display = \"none\";\n    }\n\n    function shareToWhatsApp() {\n      const text = document.getElementById(\"results\").innerText;\n      const url = `https:\/\/wa.me\/?text=${encodeURIComponent(text)}`;\n      window.open(url, '_blank');\n    }\n  <\/script>\n<\/div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:50%\"><\/div>\n<\/div>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Key Points to Note When Calculating Maid\u2019s Pay<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>If your maid works on rest days, you must compensate her <strong>at least 1 day\u2019s salary per rest day worked<\/strong>, on top of the monthly salary.<\/li>\n\n\n\n<li>Each domestic helper is entitled to <strong>one rest day per week<\/strong>, typically 4 rest days per month.<\/li>\n\n\n\n<li>There are usually <strong>26 working days<\/strong> and <strong>30 calendar days<\/strong> in a month.<\/li>\n\n\n\n<li>To calculate the daily salary rate for rest days, use: <strong>Monthly Salary \u00f7 (30 days \u2013 Number of Rest Days) = Daily Salary<\/strong><\/li>\n<\/ul>\n\n\n\n<div style=\"height:12px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Example Calculation Based on MOM Guidelines<\/strong><\/h3>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\"><strong>Scenario:<\/strong><br>Your maid\u2019s monthly salary is $650. She worked 2 rest days in the month that were not taken as rest days.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Calculation:<\/strong><br>Daily salary = $650 \u00f7 26 = $25 <br>Rest day compensation = $25 \u00d7 2 days = $50<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Total pay = $650 + $50 = $700<\/strong><\/p>\n<\/blockquote>\n\n\n\n<div style=\"height:15px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Frequently Asked Questions (FAQ)<\/strong><\/h3>\n\n\n\n<div style=\"height:13px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>1. How is a maid\u2019s monthly salary calculated in Singapore?<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">A maid\u2019s salary is usually a fixed monthly amount agreed in the contract. This calculator helps prorate pay and calculate rest day compensation if needed.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>2. How do I calculate rest day pay?<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Rest day pay = Monthly Salary \u00f7 26 \u00d7 Number of Rest Days Worked.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>3. What if I don\u2019t give my maid a rest day?<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">You must either pay an extra day\u2019s salary or provide a replacement rest day within the same month.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>4. Is this calculator valid for all maid nationalities?<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Yes. It follows MOM\u2019s guidelines applicable to all foreign domestic workers in Singapore.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>5. Can I use this for partial months?<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Yes. Simply select the date range worked, and the calculator will prorate the pay accordingly.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>6. Can the maid\u2019s salary change mid-contract?<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Yes, but changes must be mutually agreed and documented. Notify MOM of significant changes.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>7. How do I ensure timely salary payment?<\/strong><\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Pay within 7 days after the salary period ends. Use bank transfer and keep signed salary slips for records.<\/p>\n\n\n\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">Disclaimer<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">All information is provided for general guidance only. SearchLab International Pte Ltd and its staff are not liable for any decisions based on this information. Please refer to MOM for official policies.<\/p>\n\n\n\n<div style=\"height:20px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n\n\n<p class=\"has-text-align-center wp-block-paragraph\" style=\"font-size:16px\"><code><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-global-color-8-color\"><strong>Powered by SearchLab Care<\/strong><\/mark><\/code><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Domestic Helper Pay Calculator Calculate your domestic helper\u2019s monthly salary accurately and easily based on Singapore MOM guidelines. Pay Calculator Full Month (Check this box if the salary is for the entire month) For Incomplete Month (Select start and end dates) Date From: Date To: Monthly Salary (Enter salary amount): Work Day Compensation (Enter no. &#8230; <a title=\"\u5bb6\u4f63\u85aa\u916c\u8ba1\u7b97\u5668\" class=\"read-more\" href=\"https:\/\/searchlabcare.com\/cn\/domestic-helper-pay-salary-calculator\/\" aria-label=\"\u9605\u8bfb Domestic Helper Pay Calculator\">\u91cc\u65af<\/a><\/p>","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"inline_featured_image":false,"footnotes":"[]"},"class_list":["post-11435","page","type-page","status-publish"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Domestic Helper Salary Calculator Singapore | Salary and Rest Day Pay<\/title>\n<meta name=\"description\" content=\"Calculate domestic helper&#039;s salary and rest day compensation for Singapore MDWs - Fast, Accurate and Compliant with 2025 MOM guidelines. This is the only fully automated calculator developed for MDW in Singapore. Try it!\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/searchlabcare.com\/cn\/domestic-helper-pay-salary-calculator\/\" \/>\n<meta property=\"og:locale\" content=\"zh_CN\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Domestic Helper Salary Calculator Singapore | Salary and Rest Day Pay\" \/>\n<meta property=\"og:description\" content=\"Calculate domestic helper&#039;s salary and rest day compensation for Singapore MDWs - Fast, Accurate and Compliant with 2025 MOM guidelines. This is the only fully automated calculator developed for MDW in Singapore. Try it!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/searchlabcare.com\/cn\/domestic-helper-pay-salary-calculator\/\" \/>\n<meta property=\"og:site_name\" content=\"SearchLab Care\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/profile.php?id=61553888376831\" \/>\n<meta property=\"article:modified_time\" content=\"2025-07-17T22:19:18+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u9884\u8ba1\u9605\u8bfb\u65f6\u95f4\" \/>\n\t<meta name=\"twitter:data1\" content=\"2 \u5206\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/searchlabcare.com\\\/domestic-helper-pay-salary-calculator\\\/\",\"url\":\"https:\\\/\\\/searchlabcare.com\\\/domestic-helper-pay-salary-calculator\\\/\",\"name\":\"Domestic Helper Salary Calculator Singapore | Salary and Rest Day Pay\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/searchlabcare.com\\\/#website\"},\"datePublished\":\"2024-08-27T16:40:25+00:00\",\"dateModified\":\"2025-07-17T22:19:18+00:00\",\"description\":\"Calculate domestic helper's salary and rest day compensation for Singapore MDWs - Fast, Accurate and Compliant with 2025 MOM guidelines. This is the only fully automated calculator developed for MDW in Singapore. Try it!\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/searchlabcare.com\\\/domestic-helper-pay-salary-calculator\\\/#breadcrumb\"},\"inLanguage\":\"zh-Hans\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/searchlabcare.com\\\/domestic-helper-pay-salary-calculator\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/searchlabcare.com\\\/domestic-helper-pay-salary-calculator\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/searchlabcare.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Domestic Helper Pay Calculator\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/searchlabcare.com\\\/#website\",\"url\":\"https:\\\/\\\/searchlabcare.com\\\/\",\"name\":\"SearchLab Care\",\"description\":\"Most Trusted and Reliable Maid and Caregiver Agency\",\"publisher\":{\"@id\":\"https:\\\/\\\/searchlabcare.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/searchlabcare.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"zh-Hans\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/searchlabcare.com\\\/#organization\",\"name\":\"SearchLab Care\",\"url\":\"https:\\\/\\\/searchlabcare.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"zh-Hans\",\"@id\":\"https:\\\/\\\/searchlabcare.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/searchlabcare.com\\\/wp-content\\\/uploads\\\/2025\\\/07\\\/cropped-cropped-h6xfx75xymeiifeue6e3.webp\",\"contentUrl\":\"https:\\\/\\\/searchlabcare.com\\\/wp-content\\\/uploads\\\/2025\\\/07\\\/cropped-cropped-h6xfx75xymeiifeue6e3.webp\",\"width\":1398,\"height\":457,\"caption\":\"SearchLab Care\"},\"image\":{\"@id\":\"https:\\\/\\\/searchlabcare.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/profile.php?id=61553888376831\",\"https:\\\/\\\/www.instagram.com\\\/searchlabcare\\\/\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Domestic Helper Salary Calculator Singapore | Salary and Rest Day Pay","description":"Calculate domestic helper's salary and rest day compensation for Singapore MDWs - Fast, Accurate and Compliant with 2025 MOM guidelines. This is the only fully automated calculator developed for MDW in Singapore. Try it!","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/searchlabcare.com\/cn\/domestic-helper-pay-salary-calculator\/","og_locale":"zh_CN","og_type":"article","og_title":"Domestic Helper Salary Calculator Singapore | Salary and Rest Day Pay","og_description":"Calculate domestic helper's salary and rest day compensation for Singapore MDWs - Fast, Accurate and Compliant with 2025 MOM guidelines. This is the only fully automated calculator developed for MDW in Singapore. Try it!","og_url":"https:\/\/searchlabcare.com\/cn\/domestic-helper-pay-salary-calculator\/","og_site_name":"SearchLab Care","article_publisher":"https:\/\/www.facebook.com\/profile.php?id=61553888376831","article_modified_time":"2025-07-17T22:19:18+00:00","twitter_card":"summary_large_image","twitter_misc":{"\u9884\u8ba1\u9605\u8bfb\u65f6\u95f4":"2 \u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/searchlabcare.com\/domestic-helper-pay-salary-calculator\/","url":"https:\/\/searchlabcare.com\/domestic-helper-pay-salary-calculator\/","name":"Domestic Helper Salary Calculator Singapore | Salary and Rest Day Pay","isPartOf":{"@id":"https:\/\/searchlabcare.com\/#website"},"datePublished":"2024-08-27T16:40:25+00:00","dateModified":"2025-07-17T22:19:18+00:00","description":"Calculate domestic helper's salary and rest day compensation for Singapore MDWs - Fast, Accurate and Compliant with 2025 MOM guidelines. This is the only fully automated calculator developed for MDW in Singapore. Try it!","breadcrumb":{"@id":"https:\/\/searchlabcare.com\/domestic-helper-pay-salary-calculator\/#breadcrumb"},"inLanguage":"zh-Hans","potentialAction":[{"@type":"ReadAction","target":["https:\/\/searchlabcare.com\/domestic-helper-pay-salary-calculator\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/searchlabcare.com\/domestic-helper-pay-salary-calculator\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/searchlabcare.com\/"},{"@type":"ListItem","position":2,"name":"Domestic Helper Pay Calculator"}]},{"@type":"WebSite","@id":"https:\/\/searchlabcare.com\/#website","url":"https:\/\/searchlabcare.com\/","name":"\u641c\u7d22\u5b9e\u9a8c\u5ba4\u62a4\u7406","description":"\u6700\u503c\u5f97\u4fe1\u8d56\u548c\u53ef\u9760\u7684\u5973\u4f63\u548c\u62a4\u7406\u673a\u6784","publisher":{"@id":"https:\/\/searchlabcare.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/searchlabcare.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"zh-Hans"},{"@type":"Organization","@id":"https:\/\/searchlabcare.com\/#organization","name":"\u641c\u7d22\u5b9e\u9a8c\u5ba4\u62a4\u7406","url":"https:\/\/searchlabcare.com\/","logo":{"@type":"ImageObject","inLanguage":"zh-Hans","@id":"https:\/\/searchlabcare.com\/#\/schema\/logo\/image\/","url":"https:\/\/searchlabcare.com\/wp-content\/uploads\/2025\/07\/cropped-cropped-h6xfx75xymeiifeue6e3.webp","contentUrl":"https:\/\/searchlabcare.com\/wp-content\/uploads\/2025\/07\/cropped-cropped-h6xfx75xymeiifeue6e3.webp","width":1398,"height":457,"caption":"SearchLab Care"},"image":{"@id":"https:\/\/searchlabcare.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/profile.php?id=61553888376831","https:\/\/www.instagram.com\/searchlabcare\/"]}]}},"_links":{"self":[{"href":"https:\/\/searchlabcare.com\/cn\/wp-json\/wp\/v2\/pages\/11435","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/searchlabcare.com\/cn\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/searchlabcare.com\/cn\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/searchlabcare.com\/cn\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/searchlabcare.com\/cn\/wp-json\/wp\/v2\/comments?post=11435"}],"version-history":[{"count":286,"href":"https:\/\/searchlabcare.com\/cn\/wp-json\/wp\/v2\/pages\/11435\/revisions"}],"predecessor-version":[{"id":12234,"href":"https:\/\/searchlabcare.com\/cn\/wp-json\/wp\/v2\/pages\/11435\/revisions\/12234"}],"wp:attachment":[{"href":"https:\/\/searchlabcare.com\/cn\/wp-json\/wp\/v2\/media?parent=11435"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}