{"id":"page-70226fbdc3","pageData":{},"templateName":"t01-basic-page","contentLanguage":"en","cssClassNames":"page basicpage","metaDescription":"We offer free healthcare for Wake County’s uninsured and low-income residents. Our mobile clinic has medical services for all ages and dental services for children 0-20.  ","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":"/supporting-our-community/caring-for-our-communities/unc-health-mobile-units/unc-school-of-nursing-mobile-health-clinic.model.json","thumbnail":"https://www.unchealth.org/etc.clientlibs/unchealth/clientlibs/clientlib-react/resources/logo1200x630.png","description":"We offer free healthcare for Wake County’s uninsured and low-income residents. Our mobile clinic has medical services for all ages and dental services for children 0-20.  ","url":"https://www.unchealth.org/supporting-our-community/caring-for-our-communities/unc-health-mobile-units/unc-school-of-nursing-mobile-health-clinic","title":"UNC School of Nursing Mobile Health Clinic | UNC Health","tags":[],"schema":[],"language":"en",":itemsOrder":["root"],":items":{"root":{":itemsOrder":["experiencefragment-header","subnav","responsivegrid_header","responsivegrid","responsivegrid_footer","experiencefragment-footer"],":items":{"experiencefragment-header":{":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-85e98ffb35","i18n":{"globalAlertsGeneralLabel":"General Alerts","globalAlertsPriorityLabel":"Priority Alerts"},":type":"unchealth/components/content/global-alerts","dataLayer":{"global-alerts-85e98ffb35":{"@type":"unchealth/components/content/global-alerts","repo:modifyDate":"2026-02-16T17:18:37Z"}}},"global_header":{"id":"global-header-b5e5fd2198","logoLink":"/home","myChartCta":{"id":"global-header-b5e5fd2198","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-b5e5fd2198":{"@type":"unchealth/components/content/global-header","repo:modifyDate":"2025-04-28T19:39:38Z"}}},"primaryNavItems":[{"link":"/care-services","featureCard":{":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-4beef93e23","image":{"id":"nav-feauture-card-4beef93e23","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-4beef93e23":{"@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-4beef93e23","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-4beef93e23":{"@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-4beef93e23":{"@type":"unchealth/components/content/nav-feauture-card","repo:modifyDate":"2023-07-05T19:10:11Z"}}}},":type":"wcm/foundation/components/responsivegrid"}},":type":"wcm/foundation/components/responsivegrid"}},":type":"nt:unstructured"},"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":{":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-234881f1d1","image":{"id":"nav-feauture-card-234881f1d1","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-234881f1d1":{"@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-234881f1d1","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-234881f1d1":{"@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-234881f1d1":{"@type":"unchealth/components/content/nav-feauture-card","repo:modifyDate":"2023-07-05T19:35:17Z"}}}},":type":"wcm/foundation/components/responsivegrid"}},":type":"wcm/foundation/components/responsivegrid"}},":type":"nt:unstructured"},"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":{":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-d711e1539a","image":{"id":"nav-feauture-card-d711e1539a","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-d711e1539a":{"@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-d711e1539a","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-d711e1539a":{"@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-d711e1539a":{"@type":"unchealth/components/content/nav-feauture-card","repo:modifyDate":"2023-07-05T19:41:04Z"}}}},":type":"wcm/foundation/components/responsivegrid"}},":type":"wcm/foundation/components/responsivegrid"}},":type":"nt:unstructured"},"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":"-c4cc376a78","label":"How to Schedule Care","href":"/care-services/ways-to-schedule-care","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-c4cc376a78":{"@type":"nt:unstructured"}}},{"id":"-069329dcf9","label":"Pay My Bill","href":"/records-insurance/pay-my-bill","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-069329dcf9":{"@type":"nt:unstructured"}}},{"id":"-fe8f83622e","label":"Urgent & Emergency Care","href":"/care-services/urgent-care","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-fe8f83622e":{"@type":"nt:unstructured"}}},{"id":"-33fb500a06","label":"Careers","href":"https://jobs.unchealthcare.org/","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-33fb500a06":{"@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":"-97f6533ae8","label":"Careers","href":"https://jobs.unchealthcare.org/","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-97f6533ae8":{"@type":"nt:unstructured"}}}},{"iconName":{"name":"profile","title":"Profile"},"cta":{"id":"-1d7a6695ea","label":"My UNC Chart","href":"https://www.myuncchart.org/mychart/Authentication/Login?","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-1d7a6695ea":{"@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-b5e5fd2198":{"@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"}},":type":"unchealth/components/core/experiencefragment"},"subnav":{"id":"sub-nav-203522e3d6","breadcrumbPages":[{"redirect":true,"pageUrl":"/supporting-our-community","pageName":"Supporting Our Community"},{"pageUrl":"/supporting-our-community/caring-for-our-communities","pageName":"Caring for Our Communities"},{"pageUrl":"/supporting-our-community/caring-for-our-communities/unc-health-mobile-units","pageName":"UNC Health Mobile Units"}],"activePage":[{"pageName":"UNC School of Nursing Mobile Health Clinic","childrenPages":[],"hasChildren":false}],"hideSubnav":false,":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","rich_text"],":items":{"page_title_banner":{"id":"page-title-banner-3f76fc5981","headline":"UNC School of Nursing Mobile Health Clinic ","description":"<p>We are a 501(c)(3) non-profit organization. In Wake County, we provide free healthcare to&nbsp;people without insurance or who&nbsp;can’t&nbsp;afford&nbsp;services&nbsp;and&nbsp;to&nbsp;members of our community&nbsp;who are in crisis.</p>\r\n","image":{"id":"page-title-banner-3f76fc5981","defaultAspectRatio":"default","mobileAspectRatio":"default","disableCsr":false,":type":"unchealth/components/content/page-title-banner","appliedCssClassNames":"bottomSpacing--default","dataLayer":{"page-title-banner-3f76fc5981":{"@type":"unchealth/components/content/page-title-banner","repo:modifyDate":"2025-12-15T17:24:00Z"}}},"cta":{"label":"984-363-6011 ","descriptiveText":"link to phone number","href":"tel:984-363-6011","target":"_self","disableCsr":false},"secondaryCta":{"label":null,"descriptiveText":null,"href":null,"target":"_self","disableCsr":false},":type":"unchealth/components/content/page-title-banner","appliedCssClassNames":"bottomSpacing--default","dataLayer":{"page-title-banner-3f76fc5981":{"@type":"unchealth/components/content/page-title-banner","repo:modifyDate":"2025-12-15T17:24:00Z"}}},"background":{"id":"background-c49ecf08cd",":items":{"rich_text":{"id":"rich-text-2dcc27b6de","content":"<h2>UNC School of Nursing Mobile Health Clinic</h2>\r\n<p>We are a non-profit group in Wake County that&nbsp;offers&nbsp;free healthcare to people who&nbsp;don’t&nbsp;have insurance or&nbsp;can’t&nbsp;afford&nbsp;services. Our clinic started in 2014 when a group in the community saw&nbsp;a need to offer medical care to those who&nbsp;aren’t&nbsp;able to&nbsp;access it.&nbsp;</p>\r\n<p>With support from local groups and&nbsp;the&nbsp;UNC School of Nursing, we opened the clinic in 2016 in a rented van, run mostly by volunteers. Since then,&nbsp;we’ve&nbsp;grown&nbsp;and&nbsp;added more services and staff. Now&nbsp;we&nbsp;help even more people in Wake County with free healthcare and&nbsp;health&nbsp;education.</p>\r\n","cta":{"id":"rich-text-2dcc27b6de","style":"primaryButton","target":"_self","disableCsr":false,":type":"unchealth/components/content/rich-text","appliedCssClassNames":"topSpacing--default bottomSpacing--default","dataLayer":{"rich-text-2dcc27b6de":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2025-12-16T16:52:13Z"}}},":type":"unchealth/components/content/rich-text","appliedCssClassNames":"topSpacing--default bottomSpacing--default","dataLayer":{"rich-text-2dcc27b6de":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2025-12-16T16:52:13Z"}}},"content_grid":{"id":"content-grid-1cbed54db7","gridGap":"default","columnCount":1,"mobileColumnCount":1,"visibilityCtaExpandLabel":"Show More","visibilityCtaCollapseLabel":"Show Less","visibilityCtaStyle":"secondary","headline":"Who Can Get Care ","headingLevel":"h2",":items":{"item_1765819500360":{"id":"rich-text-fb30ba8ef2","content":"<p>We&nbsp;help both children and adults with their health.&nbsp;</p>\r\n<p><ul>\r\n<li>Children from kindergarten to&nbsp;12th&nbsp;grade can&nbsp;receive&nbsp;health check-ups for school.</li>\r\n<li>Children, from babies up to 20 years old, can&nbsp;have&nbsp;their teeth cleaned for free.</li>\r\n<li>Adults can&nbsp;receive&nbsp;sick care and wellness visits, as well as health education about long-term health conditions.</li>\r\n</ul>\r\n</p>\r\n","cta":{"id":"rich-text-fb30ba8ef2","style":"primaryButton","target":"_self","disableCsr":false,":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-fb30ba8ef2":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2025-12-15T17:25:16Z"}}},":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-fb30ba8ef2":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2025-12-15T17:25:16Z"}}}},":type":"unchealth/components/containers/content-grid",":itemsOrder":["item_1765819500360"],"appliedCssClassNames":"topSpacing--default bottomSpacing--default","dataLayer":{"content-grid-1cbed54db7":{"@type":"unchealth/components/containers/content-grid","repo:modifyDate":"2025-12-15T17:25:07Z"}}},"content_grid_1606724651":{"id":"content-grid-b1a0168228","gridGap":"default","columnCount":2,"mobileColumnCount":1,"visibilityCtaExpandLabel":"Show More","visibilityCtaCollapseLabel":"Show Less","visibilityCtaStyle":"secondary","headline":"Services ","headingLevel":"h2",":items":{"item_1765819542039":{"id":"rich-text-1971ca0c95","content":"<p>We provide&nbsp;walk-in&nbsp;services&nbsp;and appointments&nbsp;at&nbsp;Dorcas Ministries&nbsp;Plaza&nbsp;(187 High House Rd.)&nbsp;in Cary&nbsp;on Tuesdays from 10&nbsp;a.m.&nbsp;to 2&nbsp;p.m.&nbsp;and on the&nbsp;1st&nbsp;and&nbsp;3rd&nbsp;Saturday of every month from 10&nbsp;a.m.&nbsp;to 2&nbsp;p.m.&nbsp;</p>\r\n<p><ul>\r\n<li>Blood&nbsp;pressure&nbsp;checks</li>\r\n<li>Diabetes&nbsp;checks</li>\r\n<li>Cholesterol&nbsp;checks</li>\r\n<li>Mental health screening</li>\r\n<li>Education&nbsp;about chronic diseases like diabetes and high blood pressure</li>\r\n<li>Nutrition information</li>\r\n<li>School health&nbsp;check-ups</li>\r\n<li>Help to stop smoking</li>\r\n<li>Sick care visits</li>\r\n</ul>\r\n</p>\r\n<p>&nbsp;</p>\r\n<p>&nbsp;</p>\r\n","cta":{"id":"rich-text-1971ca0c95","style":"primaryButton","target":"_self","disableCsr":false,":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-1971ca0c95":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2025-12-15T17:26:38Z"}}},":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-1971ca0c95":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2025-12-15T17:26:38Z"}}},"item_1765819543856":{"id":"rich-text-1c08a97f02","content":"<p>Some services&nbsp;are&nbsp;available&nbsp;only&nbsp;during&nbsp;specific&nbsp;hours:</p>\r\n<p><ul>\r\n<li>HIV/STD testing: First Tuesday of the month from 10&nbsp;a.m.&nbsp;to 2&nbsp;p.m.&nbsp;Call 919-250-3950 to make an appointment.</li>\r\n<li>Dental&nbsp;appointments&nbsp;for children: Last Tuesday of the month from 10&nbsp;a.m.&nbsp;to 2&nbsp;p.m.</li>\r\n<li>Virtual consultations:&nbsp;Tuesdays 10&nbsp;a.m. to&nbsp;2&nbsp;p.m., and the 1st&nbsp;and 3rd&nbsp;Saturday of every month, from 10&nbsp;a.m.&nbsp;to 2&nbsp;p.m.</li>\r\n<li>Request&nbsp;a&nbsp;virtual&nbsp;appointment by emailing <a title=\"email link\" href=\"mailto:son_mobilehealth@unc.edu\">son_mobilehealth@unc.edu</a>.</li>\r\n</ul>\r\n</p>\r\n","cta":{"id":"rich-text-1c08a97f02","style":"primaryButton","target":"_self","disableCsr":false,":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-1c08a97f02":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2025-12-15T17:27:08Z"}}},":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-1c08a97f02":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2025-12-15T17:27:08Z"}}}},":type":"unchealth/components/containers/content-grid",":itemsOrder":["item_1765819542039","item_1765819543856"],"appliedCssClassNames":"topSpacing--default bottomSpacing--default","dataLayer":{"content-grid-b1a0168228":{"@type":"unchealth/components/containers/content-grid","repo:modifyDate":"2025-12-15T17:25:44Z"}}}},":type":"unchealth/components/containers/background",":itemsOrder":["rich_text","content_grid","content_grid_1606724651"],"appliedCssClassNames":"topSpacing--default bottomSpacing--default","dataLayer":{"background-c49ecf08cd":{"@type":"unchealth/components/containers/background","repo:modifyDate":"2025-12-15T17:24:11Z"}}},"rich_text":{"id":"rich-text-da0e69d86a","content":"<h3>Our Vision</h3>\r\n<p>Our vision is to help people who&nbsp;don’t&nbsp;have a lot of money or who are going through&nbsp;hard times&nbsp;to stay healthy.</p>\r\n<h3>Our Mission</h3>\r\n<p>Our mission is to help people stay healthy, especially those who feel stressed or have long-term health problems. We teach people how to take care of themselves, check on those who need extra&nbsp;help&nbsp;and support anyone who needs it.&nbsp;</p>\r\n<h3>Our Values</h3>\r\n<h4>Outreach</h4>\r\n<p>We work hard to reach out and&nbsp;teach&nbsp;people in our community about health and wellness.</p>\r\n<h4>Collaboration</h4>\r\n<p>Volunteers are a big part of our clinic. We are thankful for their help and encourage our staff to work with volunteers.</p>\r\n<h4>Community</h4>\r\n<p>We believe working together with other groups and organizations makes our clinic and our community stronger.</p>\r\n<h4>Responsiveness</h4>\r\n<p>We listen to the people we help and try to change and improve our services to meet their needs</p>\r\n","cta":{"id":"rich-text-da0e69d86a","style":"primaryButton","target":"_self","disableCsr":false,":type":"unchealth/components/content/rich-text","appliedCssClassNames":"topSpacing--small bottomSpacing--small","dataLayer":{"rich-text-da0e69d86a":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2025-12-15T17:28:55Z"}}},":type":"unchealth/components/content/rich-text","appliedCssClassNames":"topSpacing--small bottomSpacing--small","dataLayer":{"rich-text-da0e69d86a":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2025-12-15T17:28:55Z"}}}},":type":"wcm/foundation/components/responsivegrid"},"responsivegrid":{"gridClassNames":"aem-Grid aem-Grid--12 aem-Grid--default--12","columnCount":12,":itemsOrder":["background"],":items":{"background":{"id":"background-ebee0dc912",":items":{"accordion":{"headline":"Frequently Asked Questions","headingLevel":"h2","singleExpansion":false,"appliedCssClassNames":"topSpacing--default bottomSpacing--default",":itemsOrder":["rich_text","item_1765819774830","item_1765819776501","item_1765819778533","item_1765819780446","item_1765819782287","item_1765819784286"],":items":{"rich_text":{"id":"rich-text-da14f31782","content":"<p>No. All of our services are free.</p>\r\n","cta":{"id":"rich-text-da14f31782","style":"primaryButton","target":"_self","disableCsr":false,":type":"unchealth/components/content/rich-text","appliedCssClassNames":"topSpacing--default bottomSpacing--default","dataLayer":{"rich-text-da14f31782":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2025-12-15T17:30:50Z"}}},":type":"unchealth/components/content/rich-text","appliedCssClassNames":"topSpacing--default bottomSpacing--default","dataLayer":{"rich-text-da14f31782":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2025-12-15T17:30:50Z"}},"cq:panelTitle":"Is there a charge for services at the Mobile Health Clinic? "},"item_1765819774830":{"id":"rich-text-f4428d9af0","content":"<p>No. You do not need health insurance. We are here to serve all.</p>\r\n","cta":{"id":"rich-text-f4428d9af0","style":"primaryButton","target":"_self","disableCsr":false,":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-f4428d9af0":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2025-12-15T17:30:57Z"}}},":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-f4428d9af0":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2025-12-15T17:30:57Z"}},"cq:panelTitle":"Do I need health insurance to be seen? "},"item_1765819776501":{"id":"rich-text-5090739446","content":"<p>No. We do not ask for any form of identification.</p>\r\n","cta":{"id":"rich-text-5090739446","style":"primaryButton","target":"_self","disableCsr":false,":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-5090739446":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2025-12-15T17:31:03Z"}}},":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-5090739446":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2025-12-15T17:31:03Z"}},"cq:panelTitle":"Do I need to provide a form of personal identification? "},"item_1765819778533":{"id":"rich-text-fa22220a09","content":"<p>No. Your personal health records are not shared with any other entities and&nbsp;are only managed by our nurse practitioner.</p>\r\n","cta":{"id":"rich-text-fa22220a09","style":"primaryButton","target":"_self","disableCsr":false,":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-fa22220a09":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2025-12-15T17:31:11Z"}}},":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-fa22220a09":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2025-12-15T17:31:11Z"}},"cq:panelTitle":"Is my health information shared with anyone? "},"item_1765819780446":{"id":"rich-text-839dc2b1b3","content":"<p>No. But a representative from Wake County Human Services Smiles at Sunnybrook program conducts dental screenings for children 0-20. The&nbsp;program&nbsp;offers free dental cleanings and X-rays for children without health insurance.</p>\r\n","cta":{"id":"rich-text-839dc2b1b3","style":"primaryButton","target":"_self","disableCsr":false,":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-839dc2b1b3":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2025-12-15T17:31:18Z"}}},":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-839dc2b1b3":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2025-12-15T17:31:18Z"}},"cq:panelTitle":"Do you offer dental services on the bus? "},"item_1765819782287":{"id":"rich-text-5eedac8af1","content":"<p>No. But if you&nbsp;don’t&nbsp;have vision insurance, our nurses can conduct a sight test and refer you to Prevent Blindness North Carolina. If you meet the eligibility criteria, they will connect you with an eye doctor.</p>\r\n","cta":{"id":"rich-text-5eedac8af1","style":"primaryButton","target":"_self","disableCsr":false,":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-5eedac8af1":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2025-12-15T17:31:25Z"}}},":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-5eedac8af1":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2025-12-15T17:31:25Z"}},"cq:panelTitle":"Do you offer full vision exams? "},"item_1765819784286":{"id":"rich-text-1d41127b1b","content":"<p>Yes. To schedule an&nbsp;appointment,&nbsp;please&nbsp;call&nbsp;919-250-3950.</p>\r\n","cta":{"id":"rich-text-1d41127b1b","style":"primaryButton","target":"_self","disableCsr":false,":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-1d41127b1b":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2025-12-15T17:31:32Z"}}},":type":"unchealth/components/content/rich-text","dataLayer":{"rich-text-1d41127b1b":{"@type":"unchealth/components/content/rich-text","repo:modifyDate":"2025-12-15T17:31:32Z"}},"cq:panelTitle":"Do I need an appointment for an HIV/STD test? "}},":type":"unchealth/components/containers/accordion"}},":type":"unchealth/components/containers/background",":itemsOrder":["accordion"],"appliedCssClassNames":"topSpacing--default bottomSpacing--none","dataLayer":{"background-ebee0dc912":{"@type":"unchealth/components/containers/background","repo:modifyDate":"2025-12-15T17:29:02Z"}}}},":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":{":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-378cf6cc1c","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":"-6958ebd3de","label":"News & Media","href":"https://news.unchealthcare.org/?_ga=2.176331429.1459326530.1662751404-1169189291.1662751404","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-6958ebd3de":{"@type":"nt:unstructured"}}},{"id":"-beeefc455c","label":"Sitemap","href":"/sitemap","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-beeefc455c":{"@type":"nt:unstructured"}}}],"topLinks":[{"id":"-44991f5374","label":"Careers","href":"https://jobs.unchealthcare.org/","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-44991f5374":{"@type":"nt:unstructured"}}},{"id":"-fed92bdba0","label":"Contact Us","href":"/contact-us","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-fed92bdba0":{"@type":"nt:unstructured"}}},{"id":"-d55c7445a3","label":"Clinical Trials","href":"https://researchforme.unc.edu/index.php/en/","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-d55c7445a3":{"@type":"nt:unstructured"}}},{"id":"-acea3ceb52","label":"Sign In to My UNC Chart","href":"https://www.myuncchart.org/mychart/Authentication/Login?","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-acea3ceb52":{"@type":"nt:unstructured"}}}],"mainLinks":[{"title":"About US","links":[{"id":"-ef1736f7c2","label":"Who We Are","href":"/about-us/who-we-are","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-ef1736f7c2":{"@type":"nt:unstructured"}}},{"id":"-223f344073","label":"Compliance Office","href":"/about-us/compliance-office","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-223f344073":{"@type":"nt:unstructured"}}},{"id":"-092d3056ff","label":"Privacy Office","href":"/about-us/privacy-office","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-092d3056ff":{"@type":"nt:unstructured"}}},{"id":"-a03c2e9a30","label":"OHCA Members","href":"/about-us/ohca-members","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-a03c2e9a30":{"@type":"nt:unstructured"}}},{"id":"-34587f2952","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":{"-34587f2952":{"@type":"nt:unstructured"}}},{"id":"-a689e8a180","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":{"-a689e8a180":{"@type":"nt:unstructured"}}},{"id":"-58793daf31","label":"Financial Assistance","descriptiveText":"link to Financial Assistance page","href":"/records-insurance/financial-assistance-programs","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-58793daf31":{"@type":"nt:unstructured"}}},{"id":"-9aac74288b","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":{"-9aac74288b":{"@type":"nt:unstructured"}}},{"id":"-1ea1dd7e87","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":{"-1ea1dd7e87":{"@type":"nt:unstructured"}}}]},{"title":"Medical & Clinical Professionals","links":[{"id":"-4deb36b7d3","label":"Fellowship Program","href":"/for-medical-professionals/fellowship-program","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-4deb36b7d3":{"@type":"nt:unstructured"}}},{"id":"-ff399e3350","label":"House Staff Council","href":"/for-medical-professionals/house-staff-council","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-ff399e3350":{"@type":"nt:unstructured"}}},{"id":"-d75630c936","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":{"-d75630c936":{"@type":"nt:unstructured"}}}]},{"title":"For UNC Health Employees","links":[{"id":"-a7f679277e","label":"Well-being Program","href":"/for-unch-health-professionals/well-being-for-unc-health-teammates","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-a7f679277e":{"@type":"nt:unstructured"}}},{"id":"-f3c5649bdc","label":"Epic@UNC Training ","href":"/for-unch-health-professionals/epic-training","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-f3c5649bdc":{"@type":"nt:unstructured"}}},{"id":"-bf0155cfd8","label":"Working Forward","href":"/for-unch-health-professionals/working-forward","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-bf0155cfd8":{"@type":"nt:unstructured"}}}]},{"title":"Supporting Our Community","links":[{"id":"-50ad797a53","label":"Giving","href":"https://unchealthfoundation.org/","target":"_blank","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-50ad797a53":{"@type":"nt:unstructured"}}},{"id":"-2b00d49f9c","label":"Caring for Our Communities","href":"/supporting-our-community/caring-for-our-communities","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-2b00d49f9c":{"@type":"nt:unstructured"}}}]}],"utilityLinks":[{"id":"-79103ed8fb","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":{"-79103ed8fb":{"@type":"nt:unstructured"}}},{"id":"-f7426d1c1d","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":{"-f7426d1c1d":{"@type":"nt:unstructured"}}},{"id":"-45cff11182","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":{"-45cff11182":{"@type":"nt:unstructured"}}},{"id":"-f7f22f9c2f","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":{"-f7f22f9c2f":{"@type":"nt:unstructured"}}},{"id":"-34d2f18566","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":{"-34d2f18566":{"@type":"nt:unstructured"}}},{"id":"-b321ce7efa","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":{"-b321ce7efa":{"@type":"nt:unstructured"}}}],"utilityLinksSpanish":[{"id":"-69655c9d86","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":{"-69655c9d86":{"@type":"nt:unstructured"}}},{"id":"-b928242ff3","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":{"-b928242ff3":{"@type":"nt:unstructured"}}},{"id":"-043bfcb405","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":{"-043bfcb405":{"@type":"nt:unstructured"}}}],"disclaimerLinks":[{"id":"-f06f3d6cbb","label":"Accessibility","href":"/about-us/accessibility-at-unc-health/language-accessibility-services/website-accessibility-statement","target":"_self","disableCsr":false,":type":"nt:unstructured","dataLayer":{"-f06f3d6cbb":{"@type":"nt:unstructured"}}}],"copyright":"©2026 UNC Health. \r\nAll rights reserved.",":type":"unchealth/components/content/global-footer","dataLayer":{"global-footer-378cf6cc1c":{"@type":"unchealth/components/content/global-footer","repo:modifyDate":"2025-12-05T20:10:26Z"}}},"gsight_survey":{"id":"gsight-survey-fa44b51a6a","samplingPercentage":50,"popupDelayInSeconds":50,"hideGSightSurvey":false,"clientId":"d790eed4-ab64-eb11-8272-12cf99399697",":type":"unchealth/components/content/gsight-survey","dataLayer":{"gsight-survey-fa44b51a6a":{"@type":"unchealth/components/content/gsight-survey","repo:modifyDate":"2023-07-06T20:52:16Z"}}}},":type":"wcm/foundation/components/responsivegrid"}},":type":"wcm/foundation/components/responsivegrid"}},":type":"unchealth/components/core/experiencefragment"}},":type":"wcm/foundation/components/responsivegrid"}},":hierarchyType":"page",":path":"/content/unchealth/us/en/supporting-our-community/caring-for-our-communities/unc-health-mobile-units/unc-school-of-nursing-mobile-health-clinic",":type":"unchealth/components/core/page","dataLayer":{"page-70226fbdc3":{"@type":"unchealth/components/core/page","repo:modifyDate":"2025-12-17T15:57:38Z"}}}