{"id":"page-369eb06a9a","pageData":{},"thumbnail":"https://www.unchealth.org/etc.clientlibs/unchealth/clientlibs/clientlib-react/resources/logo1200x630.png","templateName":"t01-basic-page","contentLanguage":"en","cssClassNames":"page basicpage","hideGSightSurvey":true,"brandSlug":"UNC Health","defaultMetaSiteName":"UNC Health","siteURL":"https://www.unchealth.org","mainSchemaHtml":"<script type=\"application/ld+json\" id=\"mainSchema\"></script>","customSchemaHtml":"<script type=\"application/ld+json\" id=\"customSchema\"></script>","bodyBottomGlobal":"<script>\r\n  function getLiveChatConfig() {\r\n    const phone =\r\n      \"800-594-8624 (toll-free) or locally at 984-974-2222 Mon. – Thurs., 8:00 AM – 5:00 PM and Fri., 8:00 AM – 11:30 AM.\";\r\n    const nebulaURL = \"https://livechat-livechat.app.st-882.epiccloud.io\";\r\n    const chatScriptURL =\r\n      \"https://livechat-web-client.app.st-882.epiccloud.io/assets/epic-live-chat.es.js\";\r\n    const apiKey =\r\n      \"AAEAAZmakTnG4EHUADF7IlNpdGVJZCI6IjViZmQyYTM4LTUyZjItNDMzZS04NmI2LTdiZTg1NzM5YWFmZCJ9hM+rEbw4ueEid0MN5b0mjsOLTtWsrCjU6rWqKEQwR2Sw+bndAQw0Iw==\";\r\n\r\n    const branding = {\r\n      primaryColor: \"#004263\",\r\n      fontFamily: \"Muller, Arial, sans-serif\",\r\n      minimizedChatTitle: \"How can we help?\",\r\n      liveChatTitle: \"UNC Health Billing Help\",\r\n      organizationImageURL:\r\n        \"https://www.uncmedicalcenter.org/app/files/public/7453/img-system-systemlogo.png\",\r\n      organizationImageDescriptor: \"UNC Health logo\",\r\n    };\r\n\r\n    return { phone, nebulaURL, chatScriptURL, apiKey, branding };\r\n  }\r\n</script>\r\n\r\n<script>\r\n  (function () {\r\n    const containerId = \"lcWidget\";\r\n\r\n    // ✅ Show chat on these pages (exact “records-insurance” routes)\r\n    const CHAT_PATHS = new Set([\r\n      \"/records-insurance/pay-my-bill\",\r\n      \"/records-insurance/financial-assistance-programs\",\r\n      \"/records-insurance/insurance\",\r\n      \"/records-insurance/billing-insurance-terminology\",\r\n      \"/records-insurance/price-estimates\",\r\n      \"/records-insurance/standard-charges\",\r\n    ]);\r\n\r\n    let scriptInjected = false;\r\n    let widgetRendered = false;\r\n\r\n    function normalizePath(rawPath) {\r\n      let p = (rawPath || \"/\")\r\n        // remove query/hash fragments\r\n        .split(\"?\")[0]\r\n        .split(\"#\")[0]\r\n        // convert any weird whitespace (including NBSP) and trim\r\n        .replace(/\\u00A0/g, \" \")\r\n        .trim()\r\n        // drop .html if present\r\n        .replace(/\\.html$/, \"\");\r\n\r\n      // drop trailing slash (except root)\r\n      if (p.length > 1) p = p.replace(/\\/+$/, \"\");\r\n\r\n      // If we're on an AEM content path, reduce to the “pretty” portion\r\n      // Example: /content/unchealth/us/en/records-insurance/insurance  -> /records-insurance/insurance\r\n      const idx = p.indexOf(\"/records-insurance/\");\r\n      if (idx !== -1) {\r\n        p = p.slice(idx);\r\n      }\r\n\r\n      return p;\r\n    }\r\n\r\n    function shouldShowChatNow() {\r\n      const current = normalizePath(window.location.pathname);\r\n      return CHAT_PATHS.has(current);\r\n    }\r\n\r\n    function getContainer() {\r\n      return document.getElementById(containerId);\r\n    }\r\n\r\n    function ensureContainer() {\r\n      if (getContainer()) return;\r\n\r\n      const container = document.createElement(\"div\");\r\n      container.id = containerId;\r\n      container.style.position = \"fixed\";\r\n      container.style.right = \"20px\";\r\n      container.style.bottom = \"20px\";\r\n      container.style.zIndex = \"9999\";\r\n      document.body.appendChild(container);\r\n    }\r\n\r\n    function showChat() {\r\n      ensureContainer();\r\n\r\n      const container = getContainer();\r\n      if (container) container.style.display = \"block\";\r\n\r\n      document.querySelectorAll(\"iframe[src*='epiccloud.io']\").forEach((el) => {\r\n        el.style.display = \"block\";\r\n        el.style.visibility = \"visible\";\r\n        el.style.pointerEvents = \"auto\";\r\n      });\r\n    }\r\n\r\n    function hideChat() {\r\n      const container = getContainer();\r\n      if (container) container.style.display = \"none\";\r\n\r\n      document.querySelectorAll(\"iframe[src*='epiccloud.io']\").forEach((el) => {\r\n        el.style.display = \"none\";\r\n        el.style.visibility = \"hidden\";\r\n        el.style.pointerEvents = \"none\";\r\n      });\r\n    }\r\n\r\n    function renderWidgetWhenReady() {\r\n      const liveChatProps = getLiveChatConfig();\r\n\r\n      let tries = 0;\r\n      const t = setInterval(() => {\r\n        tries++;\r\n\r\n        if (typeof window.renderLiveChat === \"function\") {\r\n          clearInterval(t);\r\n          try {\r\n            window.renderLiveChat(containerId, liveChatProps);\r\n            widgetRendered = true;\r\n          } catch (e) {\r\n            // ignore and still show\r\n          }\r\n          showChat();\r\n          return;\r\n        }\r\n\r\n        if (tries >= 40) clearInterval(t);\r\n      }, 100);\r\n    }\r\n\r\n    function injectScriptOnceAndRender() {\r\n      const liveChatProps = getLiveChatConfig();\r\n      const endpoint = liveChatProps.chatScriptURL;\r\n      if (!endpoint) return;\r\n\r\n      if (scriptInjected) {\r\n        if (widgetRendered) showChat();\r\n        else renderWidgetWhenReady();\r\n        return;\r\n      }\r\n\r\n      const existing = document.querySelector(\r\n        `script[type=\"module\"][src=\"${endpoint}\"]`\r\n      );\r\n      if (existing) {\r\n        scriptInjected = true;\r\n        renderWidgetWhenReady();\r\n        return;\r\n      }\r\n\r\n      const script = document.createElement(\"script\");\r\n      script.type = \"module\";\r\n      script.src = endpoint;\r\n      script.async = true;\r\n\r\n      script.onload = function () {\r\n        scriptInjected = true;\r\n        renderWidgetWhenReady();\r\n      };\r\n\r\n      document.body.appendChild(script);\r\n    }\r\n\r\n    function onRouteChange() {\r\n      if (shouldShowChatNow()) {\r\n        ensureContainer();\r\n        injectScriptOnceAndRender();\r\n        showChat();\r\n      } else {\r\n        hideChat();\r\n      }\r\n    }\r\n\r\n    // keep your old API name (hide is safer than remove)\r\n    window.removeLiveChatWidget = hideChat;\r\n\r\n    /* -----------------------------\r\n       SPA NAVIGATION DETECTION\r\n    ------------------------------*/\r\n    function installSpaNavHooksOnce() {\r\n      if (window.__liveChatSpaHookInstalled) return;\r\n      window.__liveChatSpaHookInstalled = true;\r\n\r\n      const fire = () => window.dispatchEvent(new Event(\"spa:navigation\"));\r\n\r\n      const _pushState = history.pushState;\r\n      history.pushState = function () {\r\n        const ret = _pushState.apply(this, arguments);\r\n        fire();\r\n        return ret;\r\n      };\r\n\r\n      const _replaceState = history.replaceState;\r\n      history.replaceState = function () {\r\n        const ret = _replaceState.apply(this, arguments);\r\n        fire();\r\n        return ret;\r\n      };\r\n\r\n      window.addEventListener(\"popstate\", fire);\r\n      window.addEventListener(\"hashchange\", fire);\r\n    }\r\n\r\n    function init() {\r\n      installSpaNavHooksOnce();\r\n      window.addEventListener(\"spa:navigation\", onRouteChange);\r\n      onRouteChange();\r\n    }\r\n\r\n    if (document.readyState === \"loading\") {\r\n      document.addEventListener(\"DOMContentLoaded\", init);\r\n    } else {\r\n      init();\r\n    }\r\n  })();\r\n</script>\r\n","contentType":"general","pagePath":"/announcements/keeping-you-informed.model.json","url":"https://www.unchealth.org/announcements/keeping-you-informed","title":"Keeping You Informed","tags":[],"schema":[],"language":"en",":type":"unchealth/components/core/page",":itemsOrder":["root"],":items":{"root":{":itemsOrder":["experiencefragment-header","subnav","responsivegrid_header","responsivegrid","responsivegrid_footer","experiencefragment-footer"],":items":{"experiencefragment-header":{":type":"unchealth/components/core/experiencefragment",":itemsOrder":["root"],":items":{"root":{"gridClassNames":"aem-Grid aem-Grid--12 aem-Grid--default--12","columnCount":12,":itemsOrder":["responsivegrid","logo"],":items":{"responsivegrid":{"gridClassNames":"aem-Grid aem-Grid--12 aem-Grid--default--12","columnCount":12,":itemsOrder":["global_alerts","global_header"],":items":{"global_alerts":{"id":"global-alerts-7840b0d75c","i18n":{"globalAlertsGeneralLabel":"General Alerts","globalAlertsPriorityLabel":"Priority Alerts"},":type":"unchealth/components/content/global-alerts","dataLayer":{"global-alerts-7840b0d75c":{"@type":"unchealth/components/content/global-alerts","repo:modifyDate":"2026-02-16T17:18:37Z"}}},"global_header":{"id":"global-header-cd1e2ac2e7","logoLink":"/home","myChartCta":{"id":"global-header-cd1e2ac2e7","label":"My UNC Chart","href":"https://www.myuncchart.org/mychart/Authentication/Login?","target":"_blank","disableCsr":false,":type":"unchealth/components/content/global-header","dataLayer":{"global-header-cd1e2ac2e7":{"@type":"unchealth/components/content/global-header","repo:modifyDate":"2025-04-28T19:39:38Z"}}},"primaryNavItems":[{"link":"/care-services","featureCard":{":type":"nt:unstructured",":itemsOrder":["root"],":items":{"root":{"gridClassNames":"aem-Grid aem-Grid--12 aem-Grid--default--12","columnCount":12,":itemsOrder":["responsivegrid"],":items":{"responsivegrid":{"gridClassNames":"aem-Grid aem-Grid--12 aem-Grid--default--12","columnCount":12,":itemsOrder":["nav_feauture_card_co"],":items":{"nav_feauture_card_co":{"id":"nav-feauture-card-2054a15223","image":{"id":"nav-feauture-card-2054a15223","altText":"Parents carrying son on shoulders on beach vacation","defaultImgSrc":"/content/dam/unchealth/images/global-nav/AdobeStock_246367828.jpeg","defaultAspectRatio":"default","mobileAspectRatio":"default","href":"/content/unchealth/us/en/care-services/areas-of-care/primary-care","target":"_self","defaultWebPSrcSet":["/content/dam/unchealth/images/global-nav/AdobeStock_246367828.jpeg/jcr:content/renditions/cqdam.web-480.webp","/content/dam/unchealth/images/global-nav/AdobeStock_246367828.jpeg/jcr:content/renditions/cqdam.web-640.webp","/content/dam/unchealth/images/global-nav/AdobeStock_246367828.jpeg/jcr:content/renditions/cqdam.web-800.webp","/content/dam/unchealth/images/global-nav/AdobeStock_246367828.jpeg/jcr:content/renditions/cqdam.web-1180.webp","/content/dam/unchealth/images/global-nav/AdobeStock_246367828.jpeg/jcr:content/renditions/cqdam.web-1440.webp","/content/dam/unchealth/images/global-nav/AdobeStock_246367828.jpeg/jcr:content/renditions/cqdam.web-2400.webp"],"defaultImgSrcSet":["/content/dam/unchealth/images/global-nav/AdobeStock_246367828.jpeg/jcr:content/renditions/cqdam.web-480.jpeg","/content/dam/unchealth/images/global-nav/AdobeStock_246367828.jpeg/jcr:content/renditions/cqdam.web-640.jpeg","/content/dam/unchealth/images/global-nav/AdobeStock_246367828.jpeg/jcr:content/renditions/cqdam.web-800.jpeg","/content/dam/unchealth/images/global-nav/AdobeStock_246367828.jpeg/jcr:content/renditions/cqdam.web-1180.jpeg","/content/dam/unchealth/images/global-nav/AdobeStock_246367828.jpeg/jcr:content/renditions/cqdam.web-1440.jpeg","/content/dam/unchealth/images/global-nav/AdobeStock_246367828.jpeg/jcr:content/renditions/cqdam.web-2400.jpeg"],"height":4947,"width":7421,"srcTitle":"Parents carrying son on shoulders on beach vacation","disableCsr":false,":type":"unchealth/components/content/nav-feauture-card","dataLayer":{"nav-feauture-card-2054a15223":{"@type":"unchealth/components/content/nav-feauture-card","repo:modifyDate":"2023-07-05T19:10:11Z"}}},"headline":"Looking for Primary Care?","description":"Learn about the different primary care options available at UNC Health and how to find a healthcare provider.","cta":{"id":"nav-feauture-card-2054a15223","label":"View Details","descriptiveText":"About UNC Health's Primary Care Options","href":"/care-services/areas-of-care/primary-care","target":"_self","disableCsr":false,":type":"unchealth/components/content/nav-feauture-card","dataLayer":{"nav-feauture-card-2054a15223":{"@type":"unchealth/components/content/nav-feauture-card","repo:modifyDate":"2023-07-05T19:10:11Z"}}},":type":"unchealth/components/content/nav-feauture-card","dataLayer":{"nav-feauture-card-2054a15223":{"@type":"unchealth/components/content/nav-feauture-card","repo:modifyDate":"2023-07-05T19:10:11Z"}}}},":type":"wcm/foundation/components/responsivegrid"}},":type":"wcm/foundation/components/responsivegrid"}}},"title":"Care & Services","items":[{"title":"Ways to Schedule Care","link":"/care-services/ways-to-schedule-care","target":null},{"title":"Areas of Care","link":"/care-services/areas-of-care","target":null},{"title":"Find a Doctor","link":"/care-services/doctors","target":null},{"title":"Locations","link":"/care-services/locations","target":null},{"title":"Urgent Care","link":"/care-services/urgent-care","target":"_self"},{"title":"Emergency & Trauma","link":"/care-services/emergency-trauma","target":null},{"title":"Virtual Care","link":"/care-services/virtual-care","target":null}]},{"link":"/living-well","featureCard":{":type":"nt:unstructured",":itemsOrder":["root"],":items":{"root":{"gridClassNames":"aem-Grid aem-Grid--12 aem-Grid--default--12","columnCount":12,":itemsOrder":["responsivegrid"],":items":{"responsivegrid":{"gridClassNames":"aem-Grid aem-Grid--12 aem-Grid--default--12","columnCount":12,":itemsOrder":["nav_feauture_card_co"],":items":{"nav_feauture_card_co":{"id":"nav-feauture-card-c206f4c66d","image":{"id":"nav-feauture-card-c206f4c66d","altText":"Happy senior people after yoga sport class having fun sitting outdoors in park city","defaultImgSrc":"/content/dam/unchealth/images/global-nav/AdobeStock_578747980.jpeg","defaultAspectRatio":"default","mobileAspectRatio":"default","href":"/content/unchealth/us/en/living-well/classes-events","target":"_self","defaultWebPSrcSet":["/content/dam/unchealth/images/global-nav/AdobeStock_578747980.jpeg/jcr:content/renditions/cqdam.web-480.webp","/content/dam/unchealth/images/global-nav/AdobeStock_578747980.jpeg/jcr:content/renditions/cqdam.web-640.webp","/content/dam/unchealth/images/global-nav/AdobeStock_578747980.jpeg/jcr:content/renditions/cqdam.web-800.webp","/content/dam/unchealth/images/global-nav/AdobeStock_578747980.jpeg/jcr:content/renditions/cqdam.web-1180.webp","/content/dam/unchealth/images/global-nav/AdobeStock_578747980.jpeg/jcr:content/renditions/cqdam.web-1440.webp","/content/dam/unchealth/images/global-nav/AdobeStock_578747980.jpeg/jcr:content/renditions/cqdam.web-2400.webp"],"defaultImgSrcSet":["/content/dam/unchealth/images/global-nav/AdobeStock_578747980.jpeg/jcr:content/renditions/cqdam.web-480.jpeg","/content/dam/unchealth/images/global-nav/AdobeStock_578747980.jpeg/jcr:content/renditions/cqdam.web-640.jpeg","/content/dam/unchealth/images/global-nav/AdobeStock_578747980.jpeg/jcr:content/renditions/cqdam.web-800.jpeg","/content/dam/unchealth/images/global-nav/AdobeStock_578747980.jpeg/jcr:content/renditions/cqdam.web-1180.jpeg","/content/dam/unchealth/images/global-nav/AdobeStock_578747980.jpeg/jcr:content/renditions/cqdam.web-1440.jpeg","/content/dam/unchealth/images/global-nav/AdobeStock_578747980.jpeg/jcr:content/renditions/cqdam.web-2400.jpeg"],"height":2626,"width":3940,"srcTitle":"Happy senior people after yoga sport class having fun sitting outdoors in park city","disableCsr":false,":type":"unchealth/components/content/nav-feauture-card","dataLayer":{"nav-feauture-card-c206f4c66d":{"@type":"unchealth/components/content/nav-feauture-card","repo:modifyDate":"2023-07-05T19:35:17Z"}}},"headline":"Looking for Classes & Events?","description":"Learn where to find support groups and classes across UNC Health’s system.","cta":{"id":"nav-feauture-card-c206f4c66d","label":"View Details","descriptiveText":" about Classes and Events","href":"/living-well/classes-events","target":"_self","disableCsr":false,":type":"unchealth/components/content/nav-feauture-card","dataLayer":{"nav-feauture-card-c206f4c66d":{"@type":"unchealth/components/content/nav-feauture-card","repo:modifyDate":"2023-07-05T19:35:17Z"}}},":type":"unchealth/components/content/nav-feauture-card","dataLayer":{"nav-feauture-card-c206f4c66d":{"@type":"unchealth/components/content/nav-feauture-card","repo:modifyDate":"2023-07-05T19:35:17Z"}}}},":type":"wcm/foundation/components/responsivegrid"}},":type":"wcm/foundation/components/responsivegrid"}}},"title":"Living Well","items":[{"title":"Nutrition & Recipes","link":"/living-well/nutrition-recipes","target":null},{"title":"Health Talk","link":"/living-well/health-talk","target":null},{"title":"Spiritual Care","link":"/living-well/spiritual-care","target":null},{"title":"Wellness & Rehabilitation Centers ","link":"/living-well/wellness-rehabilitation-centers","target":null},{"title":"Classes & Events","link":"/living-well/classes-events","target":null}]},{"link":"/records-insurance","featureCard":{":type":"nt:unstructured",":itemsOrder":["root"],":items":{"root":{"gridClassNames":"aem-Grid aem-Grid--12 aem-Grid--default--12","columnCount":12,":itemsOrder":["responsivegrid"],":items":{"responsivegrid":{"gridClassNames":"aem-Grid aem-Grid--12 aem-Grid--default--12","columnCount":12,":itemsOrder":["nav_feauture_card_co"],":items":{"nav_feauture_card_co":{"id":"nav-feauture-card-a91cdf74de","image":{"id":"nav-feauture-card-a91cdf74de","altText":"Person using calculator on top of a stack of bills.","defaultImgSrc":"/content/dam/unchealth/images/global-nav/AdobeStock_222024931.jpeg","defaultAspectRatio":"default","mobileAspectRatio":"default","href":"/content/unchealth/us/en/records-insurance/financial-assistance-programs","target":"_self","defaultWebPSrcSet":["/content/dam/unchealth/images/global-nav/AdobeStock_222024931.jpeg/jcr:content/renditions/cqdam.web-480.webp","/content/dam/unchealth/images/global-nav/AdobeStock_222024931.jpeg/jcr:content/renditions/cqdam.web-640.webp","/content/dam/unchealth/images/global-nav/AdobeStock_222024931.jpeg/jcr:content/renditions/cqdam.web-800.webp","/content/dam/unchealth/images/global-nav/AdobeStock_222024931.jpeg/jcr:content/renditions/cqdam.web-1180.webp","/content/dam/unchealth/images/global-nav/AdobeStock_222024931.jpeg/jcr:content/renditions/cqdam.web-1440.webp","/content/dam/unchealth/images/global-nav/AdobeStock_222024931.jpeg/jcr:content/renditions/cqdam.web-2400.webp"],"defaultImgSrcSet":["/content/dam/unchealth/images/global-nav/AdobeStock_222024931.jpeg/jcr:content/renditions/cqdam.web-480.jpeg","/content/dam/unchealth/images/global-nav/AdobeStock_222024931.jpeg/jcr:content/renditions/cqdam.web-640.jpeg","/content/dam/unchealth/images/global-nav/AdobeStock_222024931.jpeg/jcr:content/renditions/cqdam.web-800.jpeg","/content/dam/unchealth/images/global-nav/AdobeStock_222024931.jpeg/jcr:content/renditions/cqdam.web-1180.jpeg","/content/dam/unchealth/images/global-nav/AdobeStock_222024931.jpeg/jcr:content/renditions/cqdam.web-1440.jpeg","/content/dam/unchealth/images/global-nav/AdobeStock_222024931.jpeg/jcr:content/renditions/cqdam.web-2400.jpeg"],"height":3339,"width":5009,"srcTitle":"Tuition.","disableCsr":false,":type":"unchealth/components/content/nav-feauture-card","dataLayer":{"nav-feauture-card-a91cdf74de":{"@type":"unchealth/components/content/nav-feauture-card","repo:modifyDate":"2023-07-05T19:41:04Z"}}},"headline":"Need help with a bill?","description":"Financial navigators can help explain our financial assistance options to help with your medical bills.","cta":{"id":"nav-feauture-card-a91cdf74de","label":"View Details","descriptiveText":" about getting help with a medical bill","href":"/records-insurance/financial-assistance-programs","target":"_self","disableCsr":false,":type":"unchealth/components/content/nav-feauture-card","dataLayer":{"nav-feauture-card-a91cdf74de":{"@type":"unchealth/components/content/nav-feauture-card","repo:modifyDate":"2023-07-05T19:41:04Z"}}},":type":"unchealth/components/content/nav-feauture-card","dataLayer":{"nav-feauture-card-a91cdf74de":{"@type":"unchealth/components/content/nav-feauture-card","repo:modifyDate":"2023-07-05T19:41:04Z"}}}},":type":"wcm/foundation/components/responsivegrid"}},":type":"wcm/foundation/components/responsivegrid"}}},"title":"Records & Insurance","items":[{"title":"Pay My Bill","link":"/records-insurance/pay-my-bill","target":"_self"},{"title":"Insurance","link":"/records-insurance/insurance","target":"_self"},{"title":"Billing & Insurance Terminology","link":"/records-insurance/billing-insurance-terminology","target":"_self"},{"title":"Standard Charges","link":"/records-insurance/standard-charges","target":"_self"},{"title":"Price Estimates Help","link":"/records-insurance/price-estimates","target":"_self"},{"title":"Financial Assistance Program","link":"/records-insurance/financial-assistance-programs","target":"_self"},{"title":"My UNC Chart Features","link":"/records-insurance/my-unc-chart","target":null},{"title":"Medical Records","link":"/records-insurance/medical-records","target":null},{"title":"Advance Care Planning","link":"/records-insurance/advance-care-planning","target":null},{"title":"NC Medicaid","link":"/records-insurance/nc-medicaid","target":null},{"title":"Financial Planning for Pregnancy & Birth Care | UNC Health","link":"/records-insurance/financial-planning-for-pregnancy-birth-care","target":null}]}],"quickLinks":[{"id":"-805b5749f7","label":"How to Schedule Care","href":"/care-services/ways-to-schedule-care","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-805b5749f7":{"@type":"nt:unstructured"}}},{"id":"-c90b3b8f6f","label":"Pay My Bill","href":"/records-insurance/pay-my-bill","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-c90b3b8f6f":{"@type":"nt:unstructured"}}},{"id":"-b7af167f55","label":"Urgent & Emergency Care","href":"/care-services/urgent-care","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-b7af167f55":{"@type":"nt:unstructured"}}},{"id":"-bbf9d4bae9","label":"Careers","href":"https://jobs.unchealthcare.org/","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-bbf9d4bae9":{"@type":"nt:unstructured"}}}],"searchTerms":[{"searchTerm":"Sore Throat"},{"searchTerm":"Cancer Care"},{"searchTerm":"Orthopedics"},{"searchTerm":"Stomach Pains"},{"searchTerm":"Chronic Headaches"}],"geolocationLinkLabel":"Use My Location","secondaryLinks":[{"iconName":{"name":"directory","title":"Directory"},"cta":{"id":"-a1cc71c4ca","label":"Careers","href":"https://jobs.unchealthcare.org/","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-a1cc71c4ca":{"@type":"nt:unstructured"}}}},{"iconName":{"name":"profile","title":"Profile"},"cta":{"id":"-15514b1fd9","label":"My UNC Chart","href":"https://www.myuncchart.org/mychart/Authentication/Login?","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-15514b1fd9":{"@type":"nt:unstructured"}}}}],"searchUrl":"/search","locationSearchUrl":"/care-services/locations","shareHeadline":"Share your location with us","shareCopy":"We can provide a more personalized experience for you when you share your location. We will use your location to give you the most relevant and helpful information possible, like UNC Health centers close to home, nearby search results, estimated travel distances, and more. Your location will be displayed on the upper right-hand corner of your screen and can be updated at any time.","updateCopy":"We will use your location to give you the most relevant and helpful information possible, like UNC Health centers close to home, healthcare professionals nearby, estimated travel distances, and more. Your location can be updated at any time.","errorHeadline":"Sorry, we can't seem to find you.","errorCopy":"We were not able to geolocate your device, to continue using our location based functionality please manually input your general location.","shareButton":"Share my location","v":"20221201","experienceKey":"unch-aem-site-search","locale":"en","endpoint":"https://liveapi.yext.com/v2/accounts/me/search/autocomplete","apiKey":"fcb2c208969a29f6bc66c93d5737793e",":type":"unchealth/components/content/global-header","dataLayer":{"global-header-cd1e2ac2e7":{"@type":"unchealth/components/content/global-header","repo:modifyDate":"2025-04-28T19:39:38Z"}}}},":type":"wcm/foundation/components/responsivegrid"},"logo":{":type":"nt:folder"}},":type":"wcm/foundation/components/responsivegrid"}}},"subnav":{"id":"sub-nav-203522e3d6","breadcrumbPages":[{"redirect":true,"pageName":"Announcements","pageUrl":"/announcements"}],"activePage":[{"pageName":"Keeping You Informed","childrenPages":[],"hasChildren":false}],"hideSubnav":true,":type":"unchealth/components/content/sub-nav","dataLayer":{"sub-nav-203522e3d6":{"@type":"unchealth/components/content/sub-nav"}}},"responsivegrid_header":{"gridClassNames":"aem-Grid aem-Grid--12 aem-Grid--default--12","columnCount":12,":itemsOrder":["page_title_banner","background"],":items":{"page_title_banner":{"id":"page-title-banner-222475fa6a","headline":"Keeping You Informed","subheading":"Ebola Care at UNC Special Pathogens Response Center","image":{"id":"page-title-banner-222475fa6a","defaultAspectRatio":"default","mobileAspectRatio":"default","disableCsr":false,":type":"unchealth/components/content/page-title-banner","appliedCssClassNames":"bottomSpacing--none","dataLayer":{"page-title-banner-222475fa6a":{"@type":"unchealth/components/content/page-title-banner","repo:modifyDate":"2026-05-18T14:24:41Z"}}},"cta":{"label":null,"descriptiveText":null,"href":null,"target":"_self","disableCsr":false},"secondaryCta":{"label":null,"descriptiveText":null,"href":null,"target":"_self","disableCsr":false},":type":"unchealth/components/content/page-title-banner","appliedCssClassNames":"bottomSpacing--none","dataLayer":{"page-title-banner-222475fa6a":{"@type":"unchealth/components/content/page-title-banner","repo:modifyDate":"2026-05-18T14:24:41Z"}}},"background":{"id":"background-bf34ec9333",":type":"unchealth/components/containers/background",":items":{"rich_text":{"id":"rich-text-f96d27d664","content":"<h2>Ebola Care at SPARC</h2>\r\n<p>The UNC Special Pathogens Response Center (SPARC) is providing care for XXXXXXXXXXXXXXX — who contracted Ebola while he was serving abroad. They are being cared for in our SPARC biocontainment unit, one of only 13 federally designated facilities in the country built specifically for this. Our campus and community are safe. Here is everything you need to know.</p>\r\n","cta":{"id":"rich-text-f96d27d664","style":"primaryButton","label":"Contact Media Relations","descriptiveText":"Media relations email address","href":"mailto:alan.wolf@unchealth.unc.edu","target":"_blank","disableCsr":false,":type":"unchealth/components/content/rich-text","appliedCssClassNames":"topSpacing--default bottomSpacing--default","dataLayer":{"rich-text-f96d27d664":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-18T14:27:44Z"}}},":type":"unchealth/components/content/rich-text","appliedCssClassNames":"topSpacing--default bottomSpacing--default","dataLayer":{"rich-text-f96d27d664":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-18T14:27:44Z"}}},"content_grid":{"id":"content-grid-816cbff018","gridGap":"default","columnCount":3,"mobileColumnCount":1,"visibilityCtaExpandLabel":"Show More","visibilityCtaCollapseLabel":"Show Less","visibilityCtaStyle":"secondary","headline":"Latest updates","headingLevel":"h2",":type":"unchealth/components/containers/content-grid",":items":{"item_1779114535784":{"id":"image-card-6b38d79e13","headline":"Our community is safe","description":"<p>Ebola does not spread through the air, water, or casual contact. You cannot get Ebola by being near UNC&nbsp; Hospitals or anywhere in Chapel Hill. The SPARC unit has its own sealed entrance and its own air system — completely separate from the rest of the hospital and campus. Life in Chapel Hill continues normally</p>\r\n","image":{"id":"image-card-6b38d79e13","altText":"UNC Hospitals campus","defaultImgSrc":"/content/dam/unchealth/images/locations/img-unc-hospitals-cc-crop.jpg","defaultAspectRatio":"default","mobileAspectRatio":"default","defaultWebPSrcSet":["/content/dam/unchealth/images/locations/img-unc-hospitals-cc-crop.jpg/jcr:content/renditions/cqdam.web-480.webp","/content/dam/unchealth/images/locations/img-unc-hospitals-cc-crop.jpg/jcr:content/renditions/cqdam.web-640.webp","/content/dam/unchealth/images/locations/img-unc-hospitals-cc-crop.jpg/jcr:content/renditions/cqdam.web-800.webp","/content/dam/unchealth/images/locations/img-unc-hospitals-cc-crop.jpg/jcr:content/renditions/cqdam.web-1180.webp","/content/dam/unchealth/images/locations/img-unc-hospitals-cc-crop.jpg/jcr:content/renditions/cqdam.web-1440.webp","/content/dam/unchealth/images/locations/img-unc-hospitals-cc-crop.jpg/jcr:content/renditions/cqdam.web-2400.webp"],"defaultImgSrcSet":["/content/dam/unchealth/images/locations/img-unc-hospitals-cc-crop.jpg/jcr:content/renditions/cqdam.web-480.jpeg","/content/dam/unchealth/images/locations/img-unc-hospitals-cc-crop.jpg/jcr:content/renditions/cqdam.web-640.jpeg","/content/dam/unchealth/images/locations/img-unc-hospitals-cc-crop.jpg/jcr:content/renditions/cqdam.web-800.jpeg","/content/dam/unchealth/images/locations/img-unc-hospitals-cc-crop.jpg/jcr:content/renditions/cqdam.web-1180.jpeg","/content/dam/unchealth/images/locations/img-unc-hospitals-cc-crop.jpg/jcr:content/renditions/cqdam.web-1440.jpeg","/content/dam/unchealth/images/locations/img-unc-hospitals-cc-crop.jpg/jcr:content/renditions/cqdam.web-2400.jpeg"],"height":2439,"width":4042,"disableCsr":false,":type":"unchealth/components/content/image-card","dataLayer":{"image-card-6b38d79e13":{"@type":"unchealth/components/content/image-card","repo:modifyDate":"2026-05-18T15:53:36Z"}}},":type":"unchealth/components/content/image-card","dataLayer":{"image-card-6b38d79e13":{"@type":"unchealth/components/content/image-card","repo:modifyDate":"2026-05-18T15:53:36Z"}}},"item_1779114537661":{"id":"image-card-dd8e7dbf98","headline":"Specialized care in the southeast","description":"<p>UNC Special Pathogen Treatment Center is one of only 13 Regional Emerging Special Pathogen Treatment Centers in the United States. UNC is one of two<b> </b>in the southeast designated by the federal government to safely care for patients with serious infectious diseases such as Ebola. The government placed this family here because this is where the expertise and the facility exist.</p>\r\n","image":{"id":"image-card-dd8e7dbf98","altText":"Provider wearing PPE looks into microscope","defaultImgSrc":"/content/dam/unchealth/wordpress/GettyImages-1345294475-healthtalk.jpg","defaultAspectRatio":"default","mobileAspectRatio":"default","defaultWebPSrcSet":["/content/dam/unchealth/wordpress/GettyImages-1345294475-healthtalk.jpg/jcr:content/renditions/cqdam.web-480.webp","/content/dam/unchealth/wordpress/GettyImages-1345294475-healthtalk.jpg/jcr:content/renditions/cqdam.web-640.webp","/content/dam/unchealth/wordpress/GettyImages-1345294475-healthtalk.jpg/jcr:content/renditions/cqdam.web-800.webp","/content/dam/unchealth/wordpress/GettyImages-1345294475-healthtalk.jpg/jcr:content/renditions/cqdam.web-1180.webp","/content/dam/unchealth/wordpress/GettyImages-1345294475-healthtalk.jpg/jcr:content/renditions/cqdam.web-1440.webp","/content/dam/unchealth/wordpress/GettyImages-1345294475-healthtalk.jpg/jcr:content/renditions/cqdam.web-2400.webp"],"defaultImgSrcSet":["/content/dam/unchealth/wordpress/GettyImages-1345294475-healthtalk.jpg/jcr:content/renditions/cqdam.web-480.jpeg","/content/dam/unchealth/wordpress/GettyImages-1345294475-healthtalk.jpg/jcr:content/renditions/cqdam.web-640.jpeg","/content/dam/unchealth/wordpress/GettyImages-1345294475-healthtalk.jpg/jcr:content/renditions/cqdam.web-800.jpeg","/content/dam/unchealth/wordpress/GettyImages-1345294475-healthtalk.jpg/jcr:content/renditions/cqdam.web-1180.jpeg","/content/dam/unchealth/wordpress/GettyImages-1345294475-healthtalk.jpg/jcr:content/renditions/cqdam.web-1440.jpeg","/content/dam/unchealth/wordpress/GettyImages-1345294475-healthtalk.jpg/jcr:content/renditions/cqdam.web-2400.jpeg"],"height":500,"width":900,"srcTitle":"1345294475","disableCsr":false,":type":"unchealth/components/content/image-card","dataLayer":{"image-card-dd8e7dbf98":{"@type":"unchealth/components/content/image-card","repo:modifyDate":"2026-05-20T17:26:32Z"}}},":type":"unchealth/components/content/image-card","dataLayer":{"image-card-dd8e7dbf98":{"@type":"unchealth/components/content/image-card","repo:modifyDate":"2026-05-20T17:26:32Z"}}},"item_1779114539180":{"id":"image-card-59aedda1e9","headline":"We will keep you updated","description":"<p>This page is updated every time something changes — and when nothing changes, we will say that too. You will not have to wonder whether we have gone silent.</p>\r\n","image":{"id":"image-card-59aedda1e9","altText":"Man in profressional modern office looks at smart phone while sitting in office chair","defaultImgSrc":"/content/dam/unchealth/images/classes-and-events-/aem-HealthTalk_stop-scrolling.jpg","defaultAspectRatio":"default","mobileAspectRatio":"default","defaultWebPSrcSet":["/content/dam/unchealth/images/classes-and-events-/aem-HealthTalk_stop-scrolling.jpg/jcr:content/renditions/cqdam.web-480.webp","/content/dam/unchealth/images/classes-and-events-/aem-HealthTalk_stop-scrolling.jpg/jcr:content/renditions/cqdam.web-640.webp","/content/dam/unchealth/images/classes-and-events-/aem-HealthTalk_stop-scrolling.jpg/jcr:content/renditions/cqdam.web-800.webp","/content/dam/unchealth/images/classes-and-events-/aem-HealthTalk_stop-scrolling.jpg/jcr:content/renditions/cqdam.web-1180.webp","/content/dam/unchealth/images/classes-and-events-/aem-HealthTalk_stop-scrolling.jpg/jcr:content/renditions/cqdam.web-1440.webp","/content/dam/unchealth/images/classes-and-events-/aem-HealthTalk_stop-scrolling.jpg/jcr:content/renditions/cqdam.web-2400.webp"],"defaultImgSrcSet":["/content/dam/unchealth/images/classes-and-events-/aem-HealthTalk_stop-scrolling.jpg/jcr:content/renditions/cqdam.web-480.jpeg","/content/dam/unchealth/images/classes-and-events-/aem-HealthTalk_stop-scrolling.jpg/jcr:content/renditions/cqdam.web-640.jpeg","/content/dam/unchealth/images/classes-and-events-/aem-HealthTalk_stop-scrolling.jpg/jcr:content/renditions/cqdam.web-800.jpeg","/content/dam/unchealth/images/classes-and-events-/aem-HealthTalk_stop-scrolling.jpg/jcr:content/renditions/cqdam.web-1180.jpeg","/content/dam/unchealth/images/classes-and-events-/aem-HealthTalk_stop-scrolling.jpg/jcr:content/renditions/cqdam.web-1440.jpeg","/content/dam/unchealth/images/classes-and-events-/aem-HealthTalk_stop-scrolling.jpg/jcr:content/renditions/cqdam.web-2400.jpeg"],"height":600,"width":900,"disableCsr":false,":type":"unchealth/components/content/image-card","dataLayer":{"image-card-59aedda1e9":{"@type":"unchealth/components/content/image-card","repo:modifyDate":"2026-05-18T15:58:13Z"}}},":type":"unchealth/components/content/image-card","dataLayer":{"image-card-59aedda1e9":{"@type":"unchealth/components/content/image-card","repo:modifyDate":"2026-05-18T15:58:13Z"}}}},":itemsOrder":["item_1779114535784","item_1779114537661","item_1779114539180"],"appliedCssClassNames":"topSpacing--default bottomSpacing--default","dataLayer":{"content-grid-816cbff018":{"@type":"unchealth/components/containers/content-grid","repo:modifyDate":"2026-05-18T14:29:00Z"}}}},":itemsOrder":["rich_text","content_grid"],"appliedCssClassNames":"topSpacing--default bottomSpacing--default","dataLayer":{"background-bf34ec9333":{"@type":"unchealth/components/containers/background","repo:modifyDate":"2026-05-18T14:24:46Z"}}}},":type":"wcm/foundation/components/responsivegrid"},"responsivegrid":{"gridClassNames":"aem-Grid aem-Grid--12 aem-Grid--default--12","columnCount":12,":itemsOrder":["accordion_copy","rich_text"],":items":{"accordion_copy":{"headline":"Frequently asked questions","headingLevel":"h2","singleExpansion":false,":itemsOrder":["rich_text","item_1779119423097","item_1779119424666","item_1779119426705","item_1779119428834","item_1779119430780","item_1779119501844"],":items":{"rich_text":{"id":"rich-text-8d073b0149","content":"<p>Ebola is a serious viral illness. It spreads through direct contact with the blood or body fluids of a person who is sick and showing symptoms — things like blood, sweat, or vomit. It does not spread through the air, through water, or by being near someone who has it.</p>\r\n","cta":{"id":"rich-text-8d073b0149","style":"primaryButton","target":"_self","disableCsr":false,":type":"unchealth/components/content/rich-text","appliedCssClassNames":"topSpacing--default bottomSpacing--default","dataLayer":{"rich-text-8d073b0149":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-18T15:51:53Z"}}},":type":"unchealth/components/content/rich-text","appliedCssClassNames":"topSpacing--default bottomSpacing--default","dataLayer":{"rich-text-8d073b0149":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-18T15:51:53Z"}},"cq:panelTitle":"What is Ebola?"},"item_1779119423097":{"id":"rich-text-34c5d53336","content":"<p>No. Ebola is not airborne. You cannot get it by walking near the hospital, driving past it, or being on campus. The patients are in a sealed biocontainment unit with its own entrance and its own ventilation system. It is not connected to the rest of the hospital or to campus in any way.</p>\r\n","cta":{"id":"rich-text-34c5d53336","style":"primaryButton","target":"_self","disableCsr":false,":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-34c5d53336":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-18T15:52:00Z"}}},":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-34c5d53336":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-18T15:52:00Z"}},"cq:panelTitle":"Can I get Ebola from being near UNC Hospitals?"},"item_1779119424666":{"id":"rich-text-601f4927af","content":"<p>UNC Special Pathogen Treatment Center is one of only 13 Regional Emerging Special Pathogen Treatment Centers in the United States. UNC is one of two<b> </b>in the southeast designated by the federal government to safely care for patients with serious infectious diseases such as Ebola. The government placed this family here because this is where the expertise and the facility exist.</p>\r\n","cta":{"id":"rich-text-601f4927af","style":"primaryButton","target":"_self","disableCsr":false,":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-601f4927af":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-20T17:26:25Z"}}},":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-601f4927af":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-20T17:26:25Z"}},"cq:panelTitle":"Why are there patients at UNC Hospitals?"},"item_1779119426705":{"id":"rich-text-73a9756f43","content":"<p>Yes.&nbsp; The UNC Hospitals campus is fully open. If you need care, please come. The SPARC unit is completely separate from all other hospital services — other patients, visitors, and staff are not affected.</p>\r\n","cta":{"id":"rich-text-73a9756f43","style":"primaryButton","target":"_self","disableCsr":false,":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-73a9756f43":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-18T15:52:32Z"}}},":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-73a9756f43":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-18T15:52:32Z"}},"cq:panelTitle":"Is it safe to go to UNC Hospitals for other care?"},"item_1779119428834":{"id":"rich-text-26cd26d3e8","content":"<p>Yes, students should go to class. No, there is no reason to keep children home from school. There is no health risk to anyone in Chapel Hill or on campus from this admission. Nothing about daily life needs to change.</p>\r\n","cta":{"id":"rich-text-26cd26d3e8","style":"primaryButton","target":"_self","disableCsr":false,":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-26cd26d3e8":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-18T15:52:39Z"}}},":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-26cd26d3e8":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-18T15:52:39Z"}},"cq:panelTitle":"Should students go to class? Should I keep my child home from school?"},"item_1779119430780":{"id":"rich-text-f3e17ed7ca","content":"<p>Our SPARC clinical team — physicians and nurses who have trained specifically for this level of care, including caring for patients with Ebola. They have the protocols, the protective equipment, and the experience. This family is in the right hands.</p>\r\n","cta":{"id":"rich-text-f3e17ed7ca","style":"primaryButton","target":"_self","disableCsr":false,":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-f3e17ed7ca":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-18T15:52:46Z"}}},":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-f3e17ed7ca":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-18T15:52:46Z"}},"cq:panelTitle":"Who is caring for this family?"},"item_1779119501844":{"id":"rich-text-f3081d9939","content":"<p>Check this page. We update it every time there is a change in patient status — and when there is no change, we say so explicitly. You will not have to guess whether we are being straight with you.</p>\r\n","cta":{"id":"rich-text-f3081d9939","style":"primaryButton","target":"_self","disableCsr":false,":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-f3081d9939":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-18T15:52:53Z"}}},":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-f3081d9939":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-18T15:52:53Z"}},"cq:panelTitle":"How will I know if something changes?"}},":type":"unchealth/components/containers/accordion"},"rich_text":{"id":"rich-text-f7ac670ff3","content":"<ul>\r\n<li><a title=\"link to media relations email\" href=\"mailto:alan.wolf@unchealth.unc.edu\">Media Inquiries</a></li>\r\n<li>More Information on <a title=\"Link to UNC SPARC page\" href=\"https://globalhealth.unc.edu/uncsparc/\" target=\"_blank\">UNC Special Pathogens Center</a></li>\r\n<li><a title=\"link to UNC communications page\" href=\"https://uncnews.unc.edu/\" target=\"_blank\">UNC Campus Updates</a></li>\r\n</ul>\r\n","cta":{"id":"rich-text-f7ac670ff3","style":"primaryButton","target":"_self","disableCsr":false,":type":"unchealth/components/content/rich-text","appliedCssClassNames":"topSpacing--default bottomSpacing--none backgroundColor--trusted-blue","dataLayer":{"rich-text-f7ac670ff3":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-18T15:48:47Z"}}},":type":"unchealth/components/content/rich-text","appliedCssClassNames":"topSpacing--default bottomSpacing--none backgroundColor--trusted-blue","dataLayer":{"rich-text-f7ac670ff3":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2026-05-18T15:48:47Z"}}}},":type":"wcm/foundation/components/responsivegrid"},"responsivegrid_footer":{"gridClassNames":"aem-Grid aem-Grid--12 aem-Grid--default--12","columnCount":12,":itemsOrder":[],":items":{},":type":"wcm/foundation/components/responsivegrid"},"experiencefragment-footer":{":type":"unchealth/components/core/experiencefragment",":itemsOrder":["root"],":items":{"root":{"gridClassNames":"aem-Grid aem-Grid--12 aem-Grid--default--12","columnCount":12,":itemsOrder":["responsivegrid"],":items":{"responsivegrid":{"gridClassNames":"aem-Grid aem-Grid--12 aem-Grid--default--12","columnCount":12,":itemsOrder":["global_footer","gsight_survey"],":items":{"global_footer":{"id":"global-footer-670158bd14","logoLink":"/home","address":"101 Manning Drive\r\nChapel Hill, NC 27514","mapLinkLabel":"Open in Maps","phoneNumber":"984-974-1000","socialIcons":[{"platform":"facebook","descriptiveText":"facebook","href":"https://www.facebook.com/unchealthcare","target":"_blank"},{"platform":"twitter","descriptiveText":"Twitter","href":"https://twitter.com/unc_health_care","target":"_blank"},{"platform":"instagram","descriptiveText":"Instagram","href":"https://www.instagram.com/unchealth/","target":"_blank"},{"platform":"youtube","descriptiveText":"Youtube","href":"https://www.youtube.com/@UNCHealth","target":"_blank"},{"platform":"linkedIn","descriptiveText":"LinkedIn","href":"https://www.linkedin.com/company/unchealth/","target":"_blank"}],"leftPanelLinks":[{"id":"-87eb4d28f8","label":"News & Media","href":"https://news.unchealthcare.org/?_ga=2.176331429.1459326530.1662751404-1169189291.1662751404","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-87eb4d28f8":{"@type":"nt:unstructured"}}},{"id":"-37b65c6887","label":"Sitemap","href":"/sitemap","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-37b65c6887":{"@type":"nt:unstructured"}}}],"topLinks":[{"id":"-97fd921798","label":"Careers","href":"https://jobs.unchealthcare.org/","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-97fd921798":{"@type":"nt:unstructured"}}},{"id":"-8017b860da","label":"Contact Us","href":"/contact-us","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-8017b860da":{"@type":"nt:unstructured"}}},{"id":"-166bd14c47","label":"Clinical Trials","href":"https://researchforme.unc.edu/index.php/en/","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-166bd14c47":{"@type":"nt:unstructured"}}},{"id":"-4da0fa6c55","label":"Sign In to My UNC Chart","href":"https://www.myuncchart.org/mychart/Authentication/Login?","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-4da0fa6c55":{"@type":"nt:unstructured"}}}],"mainLinks":[{"title":"About US","links":[{"id":"-103ed58bc6","label":"Who We Are","href":"/about-us/who-we-are","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-103ed58bc6":{"@type":"nt:unstructured"}}},{"id":"-ad31fc08b7","label":"Compliance Office","href":"/about-us/compliance-office","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-ad31fc08b7":{"@type":"nt:unstructured"}}},{"id":"-9afa168e9c","label":"Privacy Office","href":"/about-us/privacy-office","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-9afa168e9c":{"@type":"nt:unstructured"}}},{"id":"-0fd1994582","label":"OHCA Members","href":"/about-us/ohca-members","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-0fd1994582":{"@type":"nt:unstructured"}}},{"id":"-fb31239249","label":"Price Transparency","descriptiveText":"View Standard Charges links for UNC Health hospitals","href":"/records-insurance/standard-charges","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-fb31239249":{"@type":"nt:unstructured"}}},{"id":"-621d17bf65","label":"Accessibility at UNC Health","descriptiveText":"Accessibility at UNC Health link","href":"/about-us/accessibility-at-unc-health","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-621d17bf65":{"@type":"nt:unstructured"}}},{"id":"-0229f4d924","label":"Financial Assistance","descriptiveText":"link to Financial Assistance page","href":"/records-insurance/financial-assistance-programs","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-0229f4d924":{"@type":"nt:unstructured"}}},{"id":"-743e00116d","label":"Equal Employment Opportunity Policy Statement","descriptiveText":"link to EOO policy","href":"https://www.unchealthcare.org/app/files/public/415447ef-be77-45ae-bdab-e818ac20b001/pdf-system-unc-health-eeo-aa-statement.pdf","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-743e00116d":{"@type":"nt:unstructured"}}},{"id":"-4140fe168a","label":"AI and UNC Health","descriptiveText":"link to AI at UNC Health policy","href":"/about-us/ai-at-unc-health","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-4140fe168a":{"@type":"nt:unstructured"}}}]},{"title":"Medical & Clinical Professionals","links":[{"id":"-54439362cf","label":"Fellowship Program","href":"/for-medical-professionals/fellowship-program","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-54439362cf":{"@type":"nt:unstructured"}}},{"id":"-ea36b6af4f","label":"House Staff Council","href":"/for-medical-professionals/house-staff-council","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-ea36b6af4f":{"@type":"nt:unstructured"}}},{"id":"-f4cbedbcd1","label":"Professional Liability Insurance Verification","descriptiveText":"Link to Professional Liability Insurance Verification page","href":"/for-medical-professionals/professional-liability-insurance-verification","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-f4cbedbcd1":{"@type":"nt:unstructured"}}}]},{"title":"For UNC Health Employees","links":[{"id":"-d1eb443e49","label":"Well-being Program","href":"/for-unch-health-professionals/well-being-for-unc-health-teammates","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-d1eb443e49":{"@type":"nt:unstructured"}}},{"id":"-100c16bd35","label":"Epic@UNC Training ","href":"/for-unch-health-professionals/epic-training","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-100c16bd35":{"@type":"nt:unstructured"}}},{"id":"-a3d4d3fb0d","label":"Working Forward","href":"/for-unch-health-professionals/working-forward","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-a3d4d3fb0d":{"@type":"nt:unstructured"}}}]},{"title":"Supporting Our Community","links":[{"id":"-4ac0b12d3f","label":"Giving","href":"https://unchealthfoundation.org/","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-4ac0b12d3f":{"@type":"nt:unstructured"}}},{"id":"-7c94e5de78","label":"Caring for Our Communities","href":"/supporting-our-community/caring-for-our-communities","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-7c94e5de78":{"@type":"nt:unstructured"}}}]}],"utilityLinks":[{"id":"-95b0e1f6c4","label":"Website Privacy Policy","href":"https://www.unchealthcare.org/app/files/public/6fe67aba-927b-4950-82ee-b5a3c4a81394/pdf-system-unc-health-website-privacy-policy.pdf","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-95b0e1f6c4":{"@type":"nt:unstructured"}}},{"id":"-20cb62b853","label":"Website Terms and Conditions","href":"https://www.unchealthcare.org/app/files/public/37e972c1-d9ba-4a00-a998-7699f14c4cb7/pdf-system-unc-health-websites-terms-and-conditions.pdf","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-20cb62b853":{"@type":"nt:unstructured"}}},{"id":"-6dfeb6634c","label":"Notice of Privacy Practices","href":"https://www.unchealthcare.org/app/files/public/169/Notice-of-Privacy-Practice.pdf","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-6dfeb6634c":{"@type":"nt:unstructured"}}},{"id":"-7eefb95e2f","label":"Non-Discrimination Notice and Notice of Availability","href":"https://www.unchealthcare.org/app/files/public/7035/pdf-system-unc-health-care-nondiscrimination-notice.pdf","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-7eefb95e2f":{"@type":"nt:unstructured"}}},{"id":"-1ba7cce004","label":"Surprise Billing and Good Faith Estimate Notices","href":"https://www.unchealthcare.org/app/files/public/1902c85a-5f29-4bd3-bb4d-2c906c48e769/pdf-system-surprise-billing-gfe-notice-english.pdf","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-1ba7cce004":{"@type":"nt:unstructured"}}},{"id":"-39b03f8d24","label":"UNC Health SMS Terms and Conditions","descriptiveText":"Link to UNC Health SMS Terms and Conditions PDF","href":"https://www.unchealth.org/pdfs/legal-documents/pdf-system-unc-health-sms-terms-conditions.pdf","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-39b03f8d24":{"@type":"nt:unstructured"}}}],"utilityLinksSpanish":[{"id":"-35bff2cd5c","label":"Aviso de Praticas Privadas","href":"https://www.unchealthcare.org/app/files/public/170/Aviso-de-Practicas-Privadas.pdf","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-35bff2cd5c":{"@type":"nt:unstructured"}}},{"id":"-b2dd18ca25","label":"Aviso de no Discriminación y Aviso de Disponibilidad","href":"https://www.unchealthcare.org/app/files/public/61397723-4548-4dd8-be08-734a04e7b306/pdf-system-unc-health-care-aviso-de-no-discriminaci%C3%B3n.pdf","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-b2dd18ca25":{"@type":"nt:unstructured"}}},{"id":"-3766d9b5ac","label":"Avisos de facturas médicas sorpresas y avisos de presupuestos de buena fe","href":"https://www.unchealthcare.org/app/files/public/5f731a2c-291f-42ad-9a00-b15f4aa36478/pdf-system-surprise-billing-gfe-notice-spanish.pdf","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-3766d9b5ac":{"@type":"nt:unstructured"}}}],"disclaimerLinks":[{"id":"-723ae51f05","label":"Accessibility","href":"/about-us/accessibility-at-unc-health/language-accessibility-services/website-accessibility-statement","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-723ae51f05":{"@type":"nt:unstructured"}}}],"copyright":"©2026 UNC Health. \r\nAll rights reserved.",":type":"unchealth/components/content/global-footer","dataLayer":{"global-footer-670158bd14":{"@type":"unchealth/components/content/global-footer","repo:modifyDate":"2025-12-05T20:10:26Z"}}},"gsight_survey":{"id":"gsight-survey-c527513177","samplingPercentage":50,"popupDelayInSeconds":50,"hideGSightSurvey":true,"clientId":"d790eed4-ab64-eb11-8272-12cf99399697",":type":"unchealth/components/content/gsight-survey","dataLayer":{"gsight-survey-c527513177":{"@type":"unchealth/components/content/gsight-survey","repo:modifyDate":"2023-07-06T20:52:16Z"}}}},":type":"wcm/foundation/components/responsivegrid"}},":type":"wcm/foundation/components/responsivegrid"}}}},":type":"wcm/foundation/components/responsivegrid"}},":hierarchyType":"page",":path":"/content/unchealth/us/en/announcements/keeping-you-informed","dataLayer":{"page-369eb06a9a":{"@type":"unchealth/components/core/page","repo:modifyDate":"2026-05-20T17:26:35Z"}}}