{"id":21464,"date":"2024-03-05T11:38:15","date_gmt":"2024-03-05T19:38:15","guid":{"rendered":"https:\/\/medcor.com\/?post_type=resources&#038;p=21464"},"modified":"2025-07-29T08:58:20","modified_gmt":"2025-07-29T15:58:20","slug":"how-a-remote-gold-mine-treated-91-of-worker-injuries-onsite","status":"publish","type":"resources","link":"https:\/\/medcor.com\/en-ca\/resources\/how-a-remote-gold-mine-treated-91-of-worker-injuries-onsite\/","title":{"rendered":"How a Remote Gold Mine Treated 91% of Worker Injuries Onsite"},"content":{"rendered":"\n<section class=\"wp-block-ns-article-detail-1 alignwide wp-block-ns-resource-detail\">\n    <div class=\"wp-block-ns-article-detail-1__hero\">\n        <h1 class=\"wp-block-ns-article-detail-1__title\">How a Remote Gold Mine Treated 91% of Worker Injuries Onsite<\/h1>\n        <div class=\"wp-block-ns-article-detail-1__byline\">\n            Posted March 5, 2024                        <\/div>\n        <div class=\"wp-block-ns-article-detail-1__featured-image\">\n            <img loading=\"lazy\" decoding=\"async\" width=\"1216\" height=\"486\" src=\"https:\/\/medcor.com\/wp-content\/uploads\/2024\/03\/mining-491349736.jpg\" class=\"attachment-full size-full\" alt=\"\" srcset=\"https:\/\/medcor.com\/wp-content\/uploads\/2024\/03\/mining-491349736.jpg 1216w, https:\/\/medcor.com\/wp-content\/uploads\/2024\/03\/mining-491349736-300x120.jpg 300w, https:\/\/medcor.com\/wp-content\/uploads\/2024\/03\/mining-491349736-1024x409.jpg 1024w, https:\/\/medcor.com\/wp-content\/uploads\/2024\/03\/mining-491349736-768x307.jpg 768w, https:\/\/medcor.com\/wp-content\/uploads\/2024\/03\/mining-491349736-650x260.jpg 650w\" sizes=\"auto, (max-width: 1216px) 100vw, 1216px\" \/>        <\/div>\n    <\/div>\n    <div class=\"wp-block-ns-article-detail-1__columns\">\n        <div class=\"wp-block-ns-article-detail-1__content\">\n            \n\n<p>Discover how Medcor partnered with a remote gold mine to overcome the challenges of providing timely medical care to their workforce. Learn how our innovative solutions, including telehealth and onsite medical support, enabled the company to treat 91% of worker injuries onsite, reducing downtime and improving employee wellbeing.\u00a0<\/p>\n\n\n\n<p><strong>Get your copy of our case study to see how <a href=\"https:\/\/medcor.com\/en-ca\/onsite-clinic\/\">Medcor Canada\u2019s onsite clinics <\/a>can help you improve worker outcomes, reduce time away from work and control work-related healthcare costs.\u00a0<\/strong><\/p>\n\n\n<section class=\"alignfull wp-block-ns-hubspot-forms\">\n    <div><\/div>\n    <div class=\"wp-block-ns-hubspot-forms__width\">\n        <div class=\"wp-block-ns-hubspot-forms__body\">\n                                            <\/div>\n        <div id=\"formwrap-f7743bcf-b4b2-4be7-9398-500807212661\" class=\"wp-block-ns-hubspot-forms__form hbspt-form\">\n            <script charset=\"utf-8\" type=\"text\/javascript\" src=\"\/\/js.hsforms.net\/forms\/embed\/v2.js\"><\/script>\n            <script>\n                hbspt.forms.create({\n                    region: \"na1\",\n                    portalId: \"8096135\",\n                    formId: \"f7743bcf-b4b2-4be7-9398-500807212661\",\n                    target: \"#formwrap-f7743bcf-b4b2-4be7-9398-500807212661\"\n                });\n            <\/script>\n        <\/div>\n    <\/div>\n    <\/section>\n\n\n\n<script>\n  document.addEventListener('DOMContentLoaded', function () {\n    const form = document.querySelector('#formwrap-f7743bcf-b4b2-4be7-9398-500807212661');\n    \n    if (form) {\n      form.addEventListener('submit', function (e) {\n        \/\/ Regex for first and last names: Allow letters and spaces only\n        const nameRegex = \/^[a-zA-Zs]+$\/;\n\n        \/\/ Regex for company name: Allow letters, numbers, spaces, &, and -\n        const companyNameRegex = \/^[a-zA-Z0-9s&-]+$\/;\n\n        \/\/ Regex for job title: Allow letters, spaces, and hyphens\n        const jobTitleRegex = \/^[a-zA-Zs-]+$\/;\n\n        \/\/ Regex for email: Allow only \"@\", \".\", and \"-\"\n        const emailSpecialCharacters = \/[^a-zA-Z0-9@.-]\/g;\n\n        let invalidInput = false;\n\n        \/\/ Define a mapping of input names to user-friendly labels\n        const labelMap = {\n          firstname: \"First name\",\n          lastname: \"Last name\",\n          company: \"Company Name\",\n          email: \"Company Email\",\n          jobtitle: \"Job Title\"\n        };\n\n        \/\/ Get all input fields\n        const inputs = form.querySelectorAll('#firstname-f7743bcf-b4b2-4be7-9398-500807212661, #lastname-f7743bcf-b4b2-4be7-9398-500807212661, #company-f7743bcf-b4b2-4be7-9398-500807212661, #email-f7743bcf-b4b2-4be7-9398-500807212661, #jobtitle-f7743bcf-b4b2-4be7-9398-500807212661');\n\n        inputs.forEach(function (input) {\n          const label = labelMap[input.name] || input.name;\n\n          \/\/ Skip empty fields, HubSpot will handle required field validation\n          if (!input.value.trim()) {\n            return;\n          }\n\n          \/\/ Validate first and last names\n          if ((input.name === \"firstname\" || input.name === \"lastname\") && !nameRegex.test(input.value)) {\n            invalidInput = true;\n            input.style.borderColor = 'red';\n            alert(`${label} cannot contain special characters. Please use only letters and spaces.`);\n          } \n          \/\/ Validate the email field separately\n          else if (input.name === \"email\" && emailSpecialCharacters.test(input.value)) {\n            invalidInput = true;\n            input.style.borderColor = 'red';\n            alert(`Only '@', '.', and '-' are allowed in ${label}. Please remove any other special characters.`);\n          } \n          \/\/ Validate the company name field\n          else if (input.name === \"company\" && !companyNameRegex.test(input.value)) {\n            invalidInput = true;\n            input.style.borderColor = 'red';\n            alert(`Please enter a valid ${label}. Only letters, numbers, spaces, &, and - are allowed.`);\n          } \n          \/\/ Validate the job title field\n          else if (input.name === \"jobtitle\" && !jobTitleRegex.test(input.value)) {\n            invalidInput = true;\n            input.style.borderColor = 'red';\n            alert(`Please enter a valid ${label}. Only letters, spaces, and hyphens are allowed.`);\n          } else {\n            input.style.borderColor = ''; \/\/ Reset border color if valid\n          }\n        });\n\n        if (invalidInput) {\n          e.preventDefault();\n          e.stopImmediatePropagation();\n          return false;\n        }\n      });\n    }\n  });\n<\/script>\n\n        <\/div>\n        <div class=\"wp-block-ns-article-detail-1__sidebar\">\n            \n    <div class=\"sidebar-cta --dark-background --theme-red\">\n                <div class=\"sidebar-cta__headline --hl-l\">Connect With an Advocate<\/div>\n                    <a class=\"sidebar-cta__cta\" href=\"https:\/\/medcor.com\/en-ca\/contact\/\">Get In Touch<\/a>\n            <\/div>\n            \n<div class=\"sidebar-related\">\n    <div class=\"sidebar-related__headline\">Related Articles<\/div>\n    <div class=\"sidebar-related__list\">\n                    <article class=\"sidebar-related__article\">\n            <div class=\"sidebar-related__byline\">\n                Posted July 29, 2025                            <\/div>\n            <div class=\"sidebar-related__title --hl-xs\">Trusted Onsite and Mobile Health Services, Built for Canadian Workforces<\/div>\n            <a class=\"sidebar-related__cta --micro\" href=\"https:\/\/medcor.com\/en-ca\/onsite-clinic\/worker-first-care\/\">Read Article<\/a>\n        <\/article>\n                        <article class=\"sidebar-related__article\">\n            <div class=\"sidebar-related__byline\">\n                Posted May 15, 2025                            <\/div>\n            <div class=\"sidebar-related__title --hl-xs\">The Onsite Clinic Advantage<\/div>\n            <a class=\"sidebar-related__cta --micro\" href=\"https:\/\/medcor.com\/en-ca\/resources\/onsite-clinic-advantage\/\">Read Article<\/a>\n        <\/article>\n                        <article class=\"sidebar-related__article\">\n            <div class=\"sidebar-related__byline\">\n                Posted March 7, 2025                            <\/div>\n            <div class=\"sidebar-related__title --hl-xs\">Mobile Treatment Centers: Delivering Quality Care and Improved Outcomes to Pipeline Workers<\/div>\n            <a class=\"sidebar-related__cta --micro\" href=\"https:\/\/medcor.com\/en-ca\/resources\/mobile-treatment-centers-pipeline-workers\/\">Read Article<\/a>\n        <\/article>\n                    <\/div>\n<\/div>\n        <\/div>\n    <\/div>\n<\/section>\n","protected":false},"excerpt":{"rendered":"","protected":false},"featured_media":21467,"template":"","meta":{"videoSource":"vimeo","vimeoId":"","footnotes":""},"resource_type":[1265],"resource_cat":[],"class_list":["post-21464","resources","type-resources","status-publish","has-post-thumbnail","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.1.1 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How a Remote Gold Mine Treated 91% of Worker Injuries Onsite | Medcor<\/title>\n<meta name=\"description\" content=\"Discover how Medcor partnered with a remote gold mine to overcome the challenges of providing timely medical care to their workforce. Learn how our innovative solutions, including telehealth and onsite medical support, enabled the company to treat 91% of worker injuries onsite, reducing downtime and improving employee wellbeing.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/medcor.com\/en-ca\/resources\/how-a-remote-gold-mine-treated-91-of-worker-injuries-onsite\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How a Remote Gold Mine Treated 91% of Worker Injuries Onsite | Medcor\" \/>\n<meta property=\"og:description\" content=\"Discover how Medcor partnered with a remote gold mine to overcome the challenges of providing timely medical care to their workforce. Learn how our innovative solutions, including telehealth and onsite medical support, enabled the company to treat 91% of worker injuries onsite, reducing downtime and improving employee wellbeing.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/medcor.com\/en-ca\/resources\/how-a-remote-gold-mine-treated-91-of-worker-injuries-onsite\/\" \/>\n<meta property=\"og:site_name\" content=\"Medcor\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/Medcor\/\" \/>\n<meta property=\"article:modified_time\" content=\"2025-07-29T15:58:20+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/medcor.com\/wp-content\/uploads\/2024\/03\/mining-491349736.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1216\" \/>\n\t<meta property=\"og:image:height\" content=\"486\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/medcor.com\/en-ca\/resources\/how-a-remote-gold-mine-treated-91-of-worker-injuries-onsite\/\",\"url\":\"https:\/\/medcor.com\/en-ca\/resources\/how-a-remote-gold-mine-treated-91-of-worker-injuries-onsite\/\",\"name\":\"How a Remote Gold Mine Treated 91% of Worker Injuries Onsite | Medcor\",\"isPartOf\":{\"@id\":\"https:\/\/medcor.com\/en-ca\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/medcor.com\/en-ca\/resources\/how-a-remote-gold-mine-treated-91-of-worker-injuries-onsite\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/medcor.com\/en-ca\/resources\/how-a-remote-gold-mine-treated-91-of-worker-injuries-onsite\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/medcor.com\/wp-content\/uploads\/2024\/03\/mining-491349736.jpg\",\"datePublished\":\"2024-03-05T19:38:15+00:00\",\"dateModified\":\"2025-07-29T15:58:20+00:00\",\"description\":\"Discover how Medcor partnered with a remote gold mine to overcome the challenges of providing timely medical care to their workforce. Learn how our innovative solutions, including telehealth and onsite medical support, enabled the company to treat 91% of worker injuries onsite, reducing downtime and improving employee wellbeing.\",\"breadcrumb\":{\"@id\":\"https:\/\/medcor.com\/en-ca\/resources\/how-a-remote-gold-mine-treated-91-of-worker-injuries-onsite\/#breadcrumb\"},\"inLanguage\":\"en-CA\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/medcor.com\/en-ca\/resources\/how-a-remote-gold-mine-treated-91-of-worker-injuries-onsite\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-CA\",\"@id\":\"https:\/\/medcor.com\/en-ca\/resources\/how-a-remote-gold-mine-treated-91-of-worker-injuries-onsite\/#primaryimage\",\"url\":\"https:\/\/medcor.com\/wp-content\/uploads\/2024\/03\/mining-491349736.jpg\",\"contentUrl\":\"https:\/\/medcor.com\/wp-content\/uploads\/2024\/03\/mining-491349736.jpg\",\"width\":1216,\"height\":486},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/medcor.com\/en-ca\/resources\/how-a-remote-gold-mine-treated-91-of-worker-injuries-onsite\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/medcor.com\/en-ca\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How a Remote Gold Mine Treated 91% of Worker Injuries Onsite\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/medcor.com\/en-ca\/#website\",\"url\":\"https:\/\/medcor.com\/en-ca\/\",\"name\":\"Medcor\",\"description\":\"Simplifying Healthcare For Employers\",\"publisher\":{\"@id\":\"https:\/\/medcor.com\/en-ca\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/medcor.com\/en-ca\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-CA\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/medcor.com\/en-ca\/#organization\",\"name\":\"Medcor\",\"alternateName\":\"Medcor\",\"url\":\"https:\/\/medcor.com\/en-ca\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-CA\",\"@id\":\"https:\/\/medcor.com\/en-ca\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/medcor.com\/wp-content\/uploads\/2023\/08\/cropped-favicon.png\",\"contentUrl\":\"https:\/\/medcor.com\/wp-content\/uploads\/2023\/08\/cropped-favicon.png\",\"width\":512,\"height\":512,\"caption\":\"Medcor\"},\"image\":{\"@id\":\"https:\/\/medcor.com\/en-ca\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/Medcor\/\",\"https:\/\/www.linkedin.com\/company\/medcor\/\",\"https:\/\/www.instagram.com\/medcorclinics\/\",\"https:\/\/vimeo.com\/medcorhealthnavigation\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How a Remote Gold Mine Treated 91% of Worker Injuries Onsite | Medcor","description":"Discover how Medcor partnered with a remote gold mine to overcome the challenges of providing timely medical care to their workforce. Learn how our innovative solutions, including telehealth and onsite medical support, enabled the company to treat 91% of worker injuries onsite, reducing downtime and improving employee wellbeing.","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:\/\/medcor.com\/en-ca\/resources\/how-a-remote-gold-mine-treated-91-of-worker-injuries-onsite\/","og_locale":"en_US","og_type":"article","og_title":"How a Remote Gold Mine Treated 91% of Worker Injuries Onsite | Medcor","og_description":"Discover how Medcor partnered with a remote gold mine to overcome the challenges of providing timely medical care to their workforce. Learn how our innovative solutions, including telehealth and onsite medical support, enabled the company to treat 91% of worker injuries onsite, reducing downtime and improving employee wellbeing.","og_url":"https:\/\/medcor.com\/en-ca\/resources\/how-a-remote-gold-mine-treated-91-of-worker-injuries-onsite\/","og_site_name":"Medcor","article_publisher":"https:\/\/www.facebook.com\/Medcor\/","article_modified_time":"2025-07-29T15:58:20+00:00","og_image":[{"width":1216,"height":486,"url":"https:\/\/medcor.com\/wp-content\/uploads\/2024\/03\/mining-491349736.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/medcor.com\/en-ca\/resources\/how-a-remote-gold-mine-treated-91-of-worker-injuries-onsite\/","url":"https:\/\/medcor.com\/en-ca\/resources\/how-a-remote-gold-mine-treated-91-of-worker-injuries-onsite\/","name":"How a Remote Gold Mine Treated 91% of Worker Injuries Onsite | Medcor","isPartOf":{"@id":"https:\/\/medcor.com\/en-ca\/#website"},"primaryImageOfPage":{"@id":"https:\/\/medcor.com\/en-ca\/resources\/how-a-remote-gold-mine-treated-91-of-worker-injuries-onsite\/#primaryimage"},"image":{"@id":"https:\/\/medcor.com\/en-ca\/resources\/how-a-remote-gold-mine-treated-91-of-worker-injuries-onsite\/#primaryimage"},"thumbnailUrl":"https:\/\/medcor.com\/wp-content\/uploads\/2024\/03\/mining-491349736.jpg","datePublished":"2024-03-05T19:38:15+00:00","dateModified":"2025-07-29T15:58:20+00:00","description":"Discover how Medcor partnered with a remote gold mine to overcome the challenges of providing timely medical care to their workforce. Learn how our innovative solutions, including telehealth and onsite medical support, enabled the company to treat 91% of worker injuries onsite, reducing downtime and improving employee wellbeing.","breadcrumb":{"@id":"https:\/\/medcor.com\/en-ca\/resources\/how-a-remote-gold-mine-treated-91-of-worker-injuries-onsite\/#breadcrumb"},"inLanguage":"en-CA","potentialAction":[{"@type":"ReadAction","target":["https:\/\/medcor.com\/en-ca\/resources\/how-a-remote-gold-mine-treated-91-of-worker-injuries-onsite\/"]}]},{"@type":"ImageObject","inLanguage":"en-CA","@id":"https:\/\/medcor.com\/en-ca\/resources\/how-a-remote-gold-mine-treated-91-of-worker-injuries-onsite\/#primaryimage","url":"https:\/\/medcor.com\/wp-content\/uploads\/2024\/03\/mining-491349736.jpg","contentUrl":"https:\/\/medcor.com\/wp-content\/uploads\/2024\/03\/mining-491349736.jpg","width":1216,"height":486},{"@type":"BreadcrumbList","@id":"https:\/\/medcor.com\/en-ca\/resources\/how-a-remote-gold-mine-treated-91-of-worker-injuries-onsite\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/medcor.com\/en-ca\/"},{"@type":"ListItem","position":2,"name":"How a Remote Gold Mine Treated 91% of Worker Injuries Onsite"}]},{"@type":"WebSite","@id":"https:\/\/medcor.com\/en-ca\/#website","url":"https:\/\/medcor.com\/en-ca\/","name":"Medcor","description":"Simplifying Healthcare For Employers","publisher":{"@id":"https:\/\/medcor.com\/en-ca\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/medcor.com\/en-ca\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-CA"},{"@type":"Organization","@id":"https:\/\/medcor.com\/en-ca\/#organization","name":"Medcor","alternateName":"Medcor","url":"https:\/\/medcor.com\/en-ca\/","logo":{"@type":"ImageObject","inLanguage":"en-CA","@id":"https:\/\/medcor.com\/en-ca\/#\/schema\/logo\/image\/","url":"https:\/\/medcor.com\/wp-content\/uploads\/2023\/08\/cropped-favicon.png","contentUrl":"https:\/\/medcor.com\/wp-content\/uploads\/2023\/08\/cropped-favicon.png","width":512,"height":512,"caption":"Medcor"},"image":{"@id":"https:\/\/medcor.com\/en-ca\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/Medcor\/","https:\/\/www.linkedin.com\/company\/medcor\/","https:\/\/www.instagram.com\/medcorclinics\/","https:\/\/vimeo.com\/medcorhealthnavigation"]}]}},"featured_image_url":"https:\/\/medcor.com\/wp-content\/uploads\/2024\/03\/mining-491349736.jpg","featured_image_url_sizes":{"thumbnail":"https:\/\/medcor.com\/wp-content\/uploads\/2024\/03\/mining-491349736-150x150.jpg","medium":"https:\/\/medcor.com\/wp-content\/uploads\/2024\/03\/mining-491349736-300x120.jpg","medium_large":"https:\/\/medcor.com\/wp-content\/uploads\/2024\/03\/mining-491349736-768x307.jpg","large":"https:\/\/medcor.com\/wp-content\/uploads\/2024\/03\/mining-491349736-1024x409.jpg","default":{"url":"https:\/\/medcor.com\/wp-content\/uploads\/2023\/07\/Medcor-Canada-Logo-web.png"}},"cta_text":"View Case Study","_links":{"self":[{"href":"https:\/\/medcor.com\/en-ca\/wp-json\/wp\/v2\/resources\/21464","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/medcor.com\/en-ca\/wp-json\/wp\/v2\/resources"}],"about":[{"href":"https:\/\/medcor.com\/en-ca\/wp-json\/wp\/v2\/types\/resources"}],"version-history":[{"count":8,"href":"https:\/\/medcor.com\/en-ca\/wp-json\/wp\/v2\/resources\/21464\/revisions"}],"predecessor-version":[{"id":25661,"href":"https:\/\/medcor.com\/en-ca\/wp-json\/wp\/v2\/resources\/21464\/revisions\/25661"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/medcor.com\/en-ca\/wp-json\/wp\/v2\/media\/21467"}],"wp:attachment":[{"href":"https:\/\/medcor.com\/en-ca\/wp-json\/wp\/v2\/media?parent=21464"}],"wp:term":[{"taxonomy":"resource_type","embeddable":true,"href":"https:\/\/medcor.com\/en-ca\/wp-json\/wp\/v2\/resource_type?post=21464"},{"taxonomy":"resource_cat","embeddable":true,"href":"https:\/\/medcor.com\/en-ca\/wp-json\/wp\/v2\/resource_cat?post=21464"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}