{"id":27390,"date":"2024-03-26T14:46:16","date_gmt":"2024-03-26T18:46:16","guid":{"rendered":"https:\/\/nephcure.org\/?page_id=27390"},"modified":"2025-03-21T08:58:22","modified_gmt":"2025-03-21T12:58:22","slug":"la-red-de-accion-nephcure","status":"publish","type":"page","link":"https:\/\/nephcure.org\/es\/get-involved\/advocacy\/the-nephcure-action-network\/","title":{"rendered":"La red de acci\u00f3n NephCure"},"content":{"rendered":"<section class=\"gb-container gb-container-762fb53e\">\n<div class=\"yoast-breadcrumbs breadcrumb\"><span><span><a href=\"https:\/\/nephcure.org\/\">Home<\/a><\/span> \/ <span><a href=\"https:\/\/nephcure.org\/get-involved\/\">Get Involved<\/a><\/span> \/ <span><a href=\"https:\/\/nephcure.org\/get-involved\/advocacy\/\">Advocacy<\/a><\/span> \/ <span class=\"breadcrumb_last\" aria-current=\"page\">The NephCure Action Network<\/span><\/span><\/div>\n\n<div class=\"gb-container gb-container-58e9a96f hero-copy\">\n\n<h1 class=\"gb-headline gb-headline-6ee99459 gb-headline-text hero-content\">Join the NephCure Action Network<\/h1>\n\n\n\n<p class=\"has-text-align-center has-secondary-dark-grey-color has-text-color has-link-color wp-elements-25a264e2107b6d1241c4e1d5d2857e81 wp-block-paragraph\">The&nbsp;<strong>NephCure Action Network (NCAN)<\/strong>&nbsp;is a movement of patients with rare kidney disease and their caregivers, physicians, and partner organizations who all have one goal: to save kidneys and save lives through lasting legislative and policy improvements.<\/p>\n\n\n\n<p class=\"has-text-align-center wp-block-paragraph\">We believe that activated, educated, and empowered patients, families, and allies are powerful voices in developing policies and procedures that optimize care and treatment for the rare kidney disease population.<\/p>\n\n\n\n<p class=\"has-text-align-center wp-block-paragraph\">By joining this coalition, you\u2019ll be invited to attend various educational opportunities to learn how to effectively fight for rare kidney disease patients, stay informed on our latest advocacy work, and receive time-sensitive action alerts for opportunities to raise your voice and help policymakers understand what\u2019s important to those directly impacted by rare kidney disease.<\/p>\n\n\n\n<a class=\"gb-button gb-button-e235fb67 gb-button-text gb-button-primary button\" href=\"https:\/\/nephcure.quorum.us\/campaign\/115120\/\" target=\"_blank\" rel=\"noopener noreferrer\">Join NCAN today<\/a>\n\n<\/div>\n<\/section>\n\n<div class=\"gb-container gb-container-5f18cf75\">\n<div class=\"gb-container gb-container-626eb763\"><\/div>\n\n<div class=\"gb-container gb-container-42105b23 news-letter-sec alignfull\">\n\n<figure class=\"gb-block-image gb-block-image-b3f3ccb8\"><img loading=\"lazy\" decoding=\"async\" width=\"1920\" height=\"120\" class=\"gb-image gb-image-b3f3ccb8\" src=\"https:\/\/nephcure.org\/wp-content\/uploads\/2023\/11\/purple-curve.svg\" alt=\"\" title=\"purple-curve\"\/><\/figure>\n\n\n<div class=\"gb-container gb-container-41717e70 alignwide\">\n\n<h2 class=\"gb-headline gb-headline-1760ac29 gb-headline-text\">Sign up to get NephCure\u2019s latest updates.<\/h2>\n\n\n\n<a class=\"gb-button gb-button-753f318a gb-button-text gb-button-primary button\" href=\"\/newsletter\/\">SIGN UP<\/a>\n\n\n<div class=\"gb-container gb-container-2b968bcb news-letter-field\">\n    <script type=\"text\/javascript\">\n    jQuery(document).ready(function($) {\n        const disposableDomains = [\n            'mailinator.com', 'yopmail.com', 'tempmail.com', 'guerrillamail.com',\n            'throwawaymail.com', 'fakeinbox.com', 'trashmail.com', 'sharklasers.com',\n            'tempinbox.com', '10minutemail.com'\n        ];\n        const majorProviders = [\n            'gmail.com', 'yahoo.com', 'hotmail.com', 'outlook.com',\n            'aol.com', 'icloud.com', 'protonmail.com'\n        ];\n        const suspiciousUsernames = [\n            'test', 'example', 'user', 'admin', 'info', 'mail', 'email',\n            'noreply', 'no-reply', 'donotreply', 'do-not-reply', 'fake',\n            'abc', '123', 'xyz', 'asdf', 'qwerty', 'demo', 'sample',\n            'spam', 'temp', 'dummy', 'foobar', 'anonymous', 'disposable'\n        ];\n        const keyboardPatterns = ['qwerty', 'asdfgh', 'zxcvbn', '123456'];\n\n        function isValidEmailFormat(email) {\n            const regex = \/^[^\\s@]+@[^\\s@]+\\.[^\\s@]+$\/;\n            return regex.test(email);\n        }\n\n        function hasSuspiciousPattern(username) {\n            if (suspiciousUsernames.includes(username)) return true;\n            if (username.length <= 2) return true;\n            if (\/^(.)\\1{3,}$\/.test(username)) return true;\n            for (const pattern of keyboardPatterns) {\n                if (username.includes(pattern)) return true;\n            }\n            return false;\n        }\n\n        function usernameMatchesDomain(username, domain) {\n            const domainBase = domain.split('.')[0];\n            return username === domainBase;\n        }\n\n        $('.ginput_container_email input').on('blur', function() {\n            const emailField = $(this);\n            const email = emailField.val().trim().toLowerCase();\n            const errorContainer = emailField.siblings('.validation_message');\n\n            \/\/ Clear any previous messages\n            if (errorContainer.length) errorContainer.remove();\n            emailField.removeClass('gfield_error gfield_warning');\n\n            if (email === '') return;\n\n            const username = email.substring(0, email.lastIndexOf('@'));\n            const domain = email.substring(email.lastIndexOf('@') + 1);\n\n            if (!isValidEmailFormat(email)) {\n                emailField.after('<div class=\"validation_message\">Please enter a valid email address.<\/div>');\n                emailField.addClass('gfield_error');\n                return;\n            }\n\n            if (disposableDomains.includes(domain)) {\n                emailField.after('<div class=\"validation_message\">Disposable email addresses are not allowed.<\/div>');\n                emailField.addClass('gfield_error');\n                return;\n            }\n\n            if (usernameMatchesDomain(username, domain)) {\n                emailField.after('<div class=\"validation_message\">This email looks suspicious (username matches domain). Please provide a valid email.<\/div>');\n                emailField.addClass('gfield_error');\n                return;\n            }\n\n            if (majorProviders.includes(domain)) {\n                if (hasSuspiciousPattern(username)) {\n                    emailField.after('<div class=\"validation_message\">Username looks suspicious. Please use a valid personal email.<\/div>');\n                    emailField.addClass('gfield_warning');\n                }\n            }\n\n            \/\/ \u2705\u00a0Custom domains pass unless caught on backend\n        });\n    });\n    <\/script>\n    <script>\nvar gform;gform||(document.addEventListener(\"gform_main_scripts_loaded\",function(){gform.scriptsLoaded=!0}),document.addEventListener(\"gform\/theme\/scripts_loaded\",function(){gform.themeScriptsLoaded=!0}),window.addEventListener(\"DOMContentLoaded\",function(){gform.domLoaded=!0}),gform={domLoaded:!1,scriptsLoaded:!1,themeScriptsLoaded:!1,isFormEditor:()=>\"function\"==typeof InitializeEditor,callIfLoaded:function(o){return!(!gform.domLoaded||!gform.scriptsLoaded||!gform.themeScriptsLoaded&&!gform.isFormEditor()||(gform.isFormEditor()&&console.warn(\"The use of gform.initializeOnLoaded() is deprecated in the form editor context and will be removed in Gravity Forms 3.1.\"),o(),0))},initializeOnLoaded:function(o){gform.callIfLoaded(o)||(document.addEventListener(\"gform_main_scripts_loaded\",()=>{gform.scriptsLoaded=!0,gform.callIfLoaded(o)}),document.addEventListener(\"gform\/theme\/scripts_loaded\",()=>{gform.themeScriptsLoaded=!0,gform.callIfLoaded(o)}),window.addEventListener(\"DOMContentLoaded\",()=>{gform.domLoaded=!0,gform.callIfLoaded(o)}))},hooks:{action:{},filter:{}},addAction:function(o,r,e,t){gform.addHook(\"action\",o,r,e,t)},addFilter:function(o,r,e,t){gform.addHook(\"filter\",o,r,e,t)},doAction:function(o){gform.doHook(\"action\",o,arguments)},applyFilters:function(o){return gform.doHook(\"filter\",o,arguments)},removeAction:function(o,r){gform.removeHook(\"action\",o,r)},removeFilter:function(o,r,e){gform.removeHook(\"filter\",o,r,e)},addHook:function(o,r,e,t,n){null==gform.hooks[o][r]&&(gform.hooks[o][r]=[]);var d=gform.hooks[o][r];null==n&&(n=r+\"_\"+d.length),gform.hooks[o][r].push({tag:n,callable:e,priority:t=null==t?10:t})},doHook:function(r,o,e){var t;if(e=Array.prototype.slice.call(e,1),null!=gform.hooks[r][o]&&((o=gform.hooks[r][o]).sort(function(o,r){return o.priority-r.priority}),o.forEach(function(o){\"function\"!=typeof(t=o.callable)&&(t=window[t]),\"action\"==r?t.apply(null,e):e[0]=t.apply(null,e)})),\"filter\"==r)return e[0]},removeHook:function(o,r,t,n){var e;null!=gform.hooks[o][r]&&(e=(e=gform.hooks[o][r]).filter(function(o,r,e){return!!(null!=n&&n!=o.tag||null!=t&&t!=o.priority)}),gform.hooks[o][r]=e)}});\n<\/script>\n\n                <div class='gf_browser_gecko gform_wrapper gravity-theme gform-theme--no-framework' data-form-theme='gravity-theme' data-form-index='0' id='gform_wrapper_22' ><form method='post' enctype='multipart\/form-data'  id='gform_22'  action='\/es\/wp-json\/wp\/v2\/pages\/27390' data-formid='22' novalidate>\n                        <div class='gform-body gform_body'><div id='gform_fields_22' class='gform_fields top_label form_sublabel_below description_below validation_below'><div id=\"field_22_2\" class=\"gfield gfield--type-honeypot gform_validation_container field_sublabel_below gfield--has-description field_description_below field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_22_2'>Facebook<\/label><div class='ginput_container'><input name='input_2' id='input_22_2' type='text' value='' autocomplete='new-password'\/><\/div><div class='gfield_description' id='gfield_description_22_2'>This field is for validation purposes and should be left unchanged.<\/div><\/div><div id=\"field_22_1\" class=\"gfield gfield--type-email gfield--width-half gfield_contains_required field_sublabel_below gfield--no-description field_description_below hidden_label field_validation_below gfield_visibility_visible\"  ><label class='gfield_label gform-field-label' for='input_22_1'>Email<span class=\"gfield_required\"><span class=\"gfield_required gfield_required_text\">(Required)<\/span><\/span><\/label><div class='ginput_container ginput_container_email'>\n                            <input name='input_1' id='input_22_1' type='email' value='' class='large'   placeholder='email@address.com' aria-required=\"true\" aria-invalid=\"false\"  \/>\n                        <\/div><\/div><div id=\"field_submit\" class=\"gfield gfield--type-submit gfield--width-half field_sublabel_below gfield--no-description field_description_below field_validation_below gfield_visibility_visible\"  data-field-class=\"gform_editor_submit_container\" data-field-position=\"inline\" ><input type='image' src='https:\/\/nephcure.org\/wp-content\/uploads\/2023\/12\/Arrow-6.svg' id='gform_submit_button_22' onclick='gform.submission.handleButtonClick(this);' data-submission-type='submit' class='gform-button gform-button--white  button gform_image_button' alt='Submit'  \/><\/div><\/div><\/div>\n        <div class='gform-footer gform_footer top_label'>  \n            <input type='hidden' class='gform_hidden' name='gform_submission_method' data-js='gform_submission_method_22' value='postback' \/>\n            <input type='hidden' class='gform_hidden' name='gform_theme' data-js='gform_theme_22' id='gform_theme_22' value='gravity-theme' \/>\n            <input type='hidden' class='gform_hidden' name='gform_style_settings' data-js='gform_style_settings_22' id='gform_style_settings_22' value='{&quot;inputPrimaryColor&quot;:&quot;#204ce5&quot;}' \/>\n            <input type='hidden' class='gform_hidden' name='is_submit_22' value='1' \/>\n            <input type='hidden' class='gform_hidden' name='gform_submit' value='22' \/>\n            \n            <input type='hidden' class='gform_hidden' name='gform_currency' data-currency='USD' value='eevPCq7eGy2B13HpgrAiK4F8sZI3GCIeyWX9N\/XIAk75oNFl7RYy2TcdFM9Hj21SYYbPz\/xY6TWJYgwwGLYjnpSMvOY8vOJSlTLcwvPGqEGt144=' \/>\n            <input type='hidden' class='gform_hidden' name='gform_unique_id' value='' \/>\n            <input type='hidden' class='gform_hidden' name='state_22' value='WyJbXSIsIjJlZDA1NTY2N2QxZWI4OGNjZjAzYjFmYTQzZjhjNGJhIl0=' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_target_page_number_22' id='gform_target_page_number_22' value='0' \/>\n            <input type='hidden' autocomplete='off' class='gform_hidden' name='gform_source_page_number_22' id='gform_source_page_number_22' value='1' \/>\n            <input type='hidden' name='gform_field_values' value='' \/>\n            \n        <\/div>\n                        <\/form>\n                        <\/div><script>\ngform.initializeOnLoaded( function() {gformInitSpinner( 22, 'https:\/\/nephcure.org\/wp-content\/plugins\/gravityforms\/images\/spinner.svg', true );jQuery('#gform_ajax_frame_22').on('load',function(){var contents = jQuery(this).contents().find('*').html();var is_postback = contents.indexOf('GF_AJAX_POSTBACK') >= 0;if(!is_postback){return;}var form_content = jQuery(this).contents().find('#gform_wrapper_22');var is_confirmation = jQuery(this).contents().find('#gform_confirmation_wrapper_22').length > 0;var is_redirect = contents.indexOf('gformRedirect(){') >= 0;var is_form = form_content.length > 0 && ! is_redirect && ! is_confirmation;var mt = parseInt(jQuery('html').css('margin-top'), 10) + parseInt(jQuery('body').css('margin-top'), 10) + 100;if(is_form){jQuery('#gform_wrapper_22').html(form_content.html());if(form_content.hasClass('gform_validation_error')){jQuery('#gform_wrapper_22').addClass('gform_validation_error');} else {jQuery('#gform_wrapper_22').removeClass('gform_validation_error');}setTimeout( function() { \/* delay the scroll by 50 milliseconds to fix a bug in chrome *\/  }, 50 );if(window['gformInitDatepicker']) {gformInitDatepicker();}if(window['gformInitPriceFields']) {gformInitPriceFields();}var current_page = jQuery('#gform_source_page_number_22').val();gformInitSpinner( 22, 'https:\/\/nephcure.org\/wp-content\/plugins\/gravityforms\/images\/spinner.svg', true );jQuery(document).trigger('gform_page_loaded', [22, current_page]);window['gf_submitting_22'] = false;}else if(!is_redirect){var confirmation_content = jQuery(this).contents().find('.GF_AJAX_POSTBACK').html();if(!confirmation_content){confirmation_content = contents;}jQuery('#gform_wrapper_22').replaceWith(confirmation_content);jQuery(document).trigger('gform_confirmation_loaded', [22]);window['gf_submitting_22'] = false;wp.a11y.speak(jQuery('#gform_confirmation_message_22').text());}else{jQuery('#gform_22').append(contents);if(window['gformRedirect']) {gformRedirect();}}jQuery(document).trigger(\"gform_pre_post_render\", [{ formId: \"22\", currentPage: \"current_page\", abort: function() { this.preventDefault(); } }]);        if (event && event.defaultPrevented) {                return;        }        const gformWrapperDiv = document.getElementById( \"gform_wrapper_22\" );        if ( gformWrapperDiv ) {            const visibilitySpan = document.createElement( \"span\" );            visibilitySpan.id = \"gform_visibility_test_22\";            gformWrapperDiv.insertAdjacentElement( \"afterend\", visibilitySpan );        }        const visibilityTestDiv = document.getElementById( \"gform_visibility_test_22\" );        let postRenderFired = false;        function triggerPostRender() {            if ( postRenderFired ) {                return;            }            postRenderFired = true;            gform.core.triggerPostRenderEvents( 22, current_page );            if ( visibilityTestDiv ) {                visibilityTestDiv.parentNode.removeChild( visibilityTestDiv );            }        }        function debounce( func, wait, immediate ) {            var timeout;            return function() {                var context = this, args = arguments;                var later = function() {                    timeout = null;                    if ( !immediate ) func.apply( context, args );                };                var callNow = immediate && !timeout;                clearTimeout( timeout );                timeout = setTimeout( later, wait );                if ( callNow ) func.apply( context, args );            };        }        const debouncedTriggerPostRender = debounce( function() {            triggerPostRender();        }, 200 );        if ( visibilityTestDiv && visibilityTestDiv.offsetParent === null ) {            const observer = new MutationObserver( ( mutations ) => {                mutations.forEach( ( mutation ) => {                    if ( mutation.type === 'attributes' && visibilityTestDiv.offsetParent !== null ) {                        debouncedTriggerPostRender();                        observer.disconnect();                    }                });            });            observer.observe( document.body, {                attributes: true,                childList: false,                subtree: true,                attributeFilter: [ 'style', 'class' ],            });        } else {            triggerPostRender();        }    } );} );\n<\/script>\n\n<\/div>\n<\/div>\n<\/div>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>\u00danase a la Red de Acci\u00f3n NephCure La Red de Acci\u00f3n NephCure (NCAN) es un movimiento de pacientes con enfermedades renales raras y sus cuidadores, m\u00e9dicos y organizaciones asociadas que tienen un objetivo:... <a title=\"La red de acci\u00f3n NephCure\" class=\"read-more\" href=\"https:\/\/nephcure.org\/es\/get-involved\/advocacy\/the-nephcure-action-network\/\" aria-label=\"Leer m\u00e1s sobre La Red de Acci\u00f3n NephCure\">Leer m\u00e1s<\/a><\/p>","protected":false},"author":12083,"featured_media":22948,"parent":26083,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"inline_featured_image":false,"footnotes":""},"disease-category":[],"topic":[],"treatment-option":[],"hf_cat_page":[351],"class_list":["post-27390","page","type-page","status-publish","has-post-thumbnail"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.9 (Yoast SEO v28.0) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>The NephCure Action Network - NephCure<\/title>\n<meta name=\"description\" content=\"Join the NephCure Action Network to save lives. Be a powerful voice in advocating for rare kidney disease patients and their caregivers.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/nephcure.org\/es\/involucrarse\/abogacia\/la-red-de-accion-nephcure\/\" \/>\n<meta property=\"og:locale\" content=\"es_MX\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"The NephCure Action Network\" \/>\n<meta property=\"og:description\" content=\"Join the NephCure Action Network to save lives. Be a powerful voice in advocating for rare kidney disease patients and their caregivers.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/nephcure.org\/es\/involucrarse\/abogacia\/la-red-de-accion-nephcure\/\" \/>\n<meta property=\"og:site_name\" content=\"NephCure\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/nephcure\/\" \/>\n<meta property=\"article:modified_time\" content=\"2025-03-21T12:58:22+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/nephcure.org\/wp-content\/uploads\/2023\/03\/cropped-NephCure-favicon-512x512-1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"512\" \/>\n\t<meta property=\"og:image:height\" content=\"512\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:site\" content=\"@nephcure\" \/>\n<meta name=\"twitter:label1\" content=\"Tiempo de lectura\" \/>\n\t<meta name=\"twitter:data1\" content=\"2 minutos\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/nephcure.org\\\/get-involved\\\/advocacy\\\/the-nephcure-action-network\\\/\",\"url\":\"https:\\\/\\\/nephcure.org\\\/get-involved\\\/advocacy\\\/the-nephcure-action-network\\\/\",\"name\":\"The NephCure Action Network - NephCure\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/nephcure.org\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/nephcure.org\\\/get-involved\\\/advocacy\\\/the-nephcure-action-network\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/nephcure.org\\\/get-involved\\\/advocacy\\\/the-nephcure-action-network\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/nephcure.org\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/cropped-NephCure-favicon-512x512-1.png\",\"datePublished\":\"2024-03-26T18:46:16+00:00\",\"dateModified\":\"2025-03-21T12:58:22+00:00\",\"description\":\"Join the NephCure Action Network to save lives. Be a powerful voice in advocating for rare kidney disease patients and their caregivers.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/nephcure.org\\\/get-involved\\\/advocacy\\\/the-nephcure-action-network\\\/#breadcrumb\"},\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/nephcure.org\\\/get-involved\\\/advocacy\\\/the-nephcure-action-network\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\\\/\\\/nephcure.org\\\/get-involved\\\/advocacy\\\/the-nephcure-action-network\\\/#primaryimage\",\"url\":\"https:\\\/\\\/nephcure.org\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/cropped-NephCure-favicon-512x512-1.png\",\"contentUrl\":\"https:\\\/\\\/nephcure.org\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/cropped-NephCure-favicon-512x512-1.png\",\"width\":512,\"height\":512},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/nephcure.org\\\/get-involved\\\/advocacy\\\/the-nephcure-action-network\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/nephcure.org\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Get Involved\",\"item\":\"https:\\\/\\\/nephcure.org\\\/get-involved\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Advocacy\",\"item\":\"https:\\\/\\\/nephcure.org\\\/get-involved\\\/advocacy\\\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"The NephCure Action Network\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/nephcure.org\\\/#website\",\"url\":\"https:\\\/\\\/nephcure.org\\\/\",\"name\":\"NephCure\",\"description\":\"For Rare Kidney Disease\",\"publisher\":{\"@id\":\"https:\\\/\\\/nephcure.org\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/nephcure.org\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"es\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/nephcure.org\\\/#organization\",\"name\":\"NephCure\",\"url\":\"https:\\\/\\\/nephcure.org\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\\\/\\\/nephcure.org\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/nephcure.org\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/cropped-NephCure-favicon-512x512-1.png\",\"contentUrl\":\"https:\\\/\\\/nephcure.org\\\/wp-content\\\/uploads\\\/2023\\\/03\\\/cropped-NephCure-favicon-512x512-1.png\",\"width\":512,\"height\":512,\"caption\":\"NephCure\"},\"image\":{\"@id\":\"https:\\\/\\\/nephcure.org\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/nephcure\\\/\",\"https:\\\/\\\/x.com\\\/nephcure\",\"https:\\\/\\\/www.instagram.com\\\/nephcure\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/nephcure\\\/\",\"https:\\\/\\\/www.youtube.com\\\/user\\\/Nephcure\"]}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"La Red de Acci\u00f3n NephCure - NephCure","description":"\u00danase a la Red de Acci\u00f3n NephCure para salvar vidas. Sea una voz poderosa en la defensa de los pacientes con enfermedades renales raras y sus cuidadores.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/nephcure.org\/es\/involucrarse\/abogacia\/la-red-de-accion-nephcure\/","og_locale":"es_MX","og_type":"article","og_title":"The NephCure Action Network","og_description":"Join the NephCure Action Network to save lives. Be a powerful voice in advocating for rare kidney disease patients and their caregivers.","og_url":"https:\/\/nephcure.org\/es\/involucrarse\/abogacia\/la-red-de-accion-nephcure\/","og_site_name":"NephCure","article_publisher":"https:\/\/www.facebook.com\/nephcure\/","article_modified_time":"2025-03-21T12:58:22+00:00","og_image":[{"width":512,"height":512,"url":"https:\/\/nephcure.org\/wp-content\/uploads\/2023\/03\/cropped-NephCure-favicon-512x512-1.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_site":"@nephcure","twitter_misc":{"Tiempo de lectura":"2 minutos"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/nephcure.org\/get-involved\/advocacy\/the-nephcure-action-network\/","url":"https:\/\/nephcure.org\/get-involved\/advocacy\/the-nephcure-action-network\/","name":"La Red de Acci\u00f3n NephCure - NephCure","isPartOf":{"@id":"https:\/\/nephcure.org\/#website"},"primaryImageOfPage":{"@id":"https:\/\/nephcure.org\/get-involved\/advocacy\/the-nephcure-action-network\/#primaryimage"},"image":{"@id":"https:\/\/nephcure.org\/get-involved\/advocacy\/the-nephcure-action-network\/#primaryimage"},"thumbnailUrl":"https:\/\/nephcure.org\/wp-content\/uploads\/2023\/03\/cropped-NephCure-favicon-512x512-1.png","datePublished":"2024-03-26T18:46:16+00:00","dateModified":"2025-03-21T12:58:22+00:00","description":"\u00danase a la Red de Acci\u00f3n NephCure para salvar vidas. Sea una voz poderosa en la defensa de los pacientes con enfermedades renales raras y sus cuidadores.","breadcrumb":{"@id":"https:\/\/nephcure.org\/get-involved\/advocacy\/the-nephcure-action-network\/#breadcrumb"},"inLanguage":"es","potentialAction":[{"@type":"ReadAction","target":["https:\/\/nephcure.org\/get-involved\/advocacy\/the-nephcure-action-network\/"]}]},{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/nephcure.org\/get-involved\/advocacy\/the-nephcure-action-network\/#primaryimage","url":"https:\/\/nephcure.org\/wp-content\/uploads\/2023\/03\/cropped-NephCure-favicon-512x512-1.png","contentUrl":"https:\/\/nephcure.org\/wp-content\/uploads\/2023\/03\/cropped-NephCure-favicon-512x512-1.png","width":512,"height":512},{"@type":"BreadcrumbList","@id":"https:\/\/nephcure.org\/get-involved\/advocacy\/the-nephcure-action-network\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/nephcure.org\/"},{"@type":"ListItem","position":2,"name":"Get Involved","item":"https:\/\/nephcure.org\/get-involved\/"},{"@type":"ListItem","position":3,"name":"Advocacy","item":"https:\/\/nephcure.org\/get-involved\/advocacy\/"},{"@type":"ListItem","position":4,"name":"The NephCure Action Network"}]},{"@type":"WebSite","@id":"https:\/\/nephcure.org\/#website","url":"https:\/\/nephcure.org\/","name":"NephCure","description":"Para enfermedades renales raras","publisher":{"@id":"https:\/\/nephcure.org\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/nephcure.org\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"es"},{"@type":"Organization","@id":"https:\/\/nephcure.org\/#organization","name":"NephCure","url":"https:\/\/nephcure.org\/","logo":{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/nephcure.org\/#\/schema\/logo\/image\/","url":"https:\/\/nephcure.org\/wp-content\/uploads\/2023\/03\/cropped-NephCure-favicon-512x512-1.png","contentUrl":"https:\/\/nephcure.org\/wp-content\/uploads\/2023\/03\/cropped-NephCure-favicon-512x512-1.png","width":512,"height":512,"caption":"NephCure"},"image":{"@id":"https:\/\/nephcure.org\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/nephcure\/","https:\/\/x.com\/nephcure","https:\/\/www.instagram.com\/nephcure\/","https:\/\/www.linkedin.com\/company\/nephcure\/","https:\/\/www.youtube.com\/user\/Nephcure"]}]}},"_links":{"self":[{"href":"https:\/\/nephcure.org\/es\/wp-json\/wp\/v2\/pages\/27390","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/nephcure.org\/es\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/nephcure.org\/es\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/nephcure.org\/es\/wp-json\/wp\/v2\/users\/12083"}],"replies":[{"embeddable":true,"href":"https:\/\/nephcure.org\/es\/wp-json\/wp\/v2\/comments?post=27390"}],"version-history":[{"count":0,"href":"https:\/\/nephcure.org\/es\/wp-json\/wp\/v2\/pages\/27390\/revisions"}],"up":[{"embeddable":true,"href":"https:\/\/nephcure.org\/es\/wp-json\/wp\/v2\/pages\/26083"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/nephcure.org\/es\/wp-json\/wp\/v2\/media\/22948"}],"wp:attachment":[{"href":"https:\/\/nephcure.org\/es\/wp-json\/wp\/v2\/media?parent=27390"}],"wp:term":[{"taxonomy":"disease-category","embeddable":true,"href":"https:\/\/nephcure.org\/es\/wp-json\/wp\/v2\/disease-category?post=27390"},{"taxonomy":"topic","embeddable":true,"href":"https:\/\/nephcure.org\/es\/wp-json\/wp\/v2\/topic?post=27390"},{"taxonomy":"treatment-option","embeddable":true,"href":"https:\/\/nephcure.org\/es\/wp-json\/wp\/v2\/treatment-option?post=27390"},{"taxonomy":"hf_cat_page","embeddable":true,"href":"https:\/\/nephcure.org\/es\/wp-json\/wp\/v2\/hf_cat_page?post=27390"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}