"public" => false,
                         "members" => false,
                         "collaborators" => false,
                     ),
                     "email" => array(
                         "public" => false,
                         "members" => false,
                         "collaborators" => false,
                     ),
                 ),

             );
             # Fetch the structured data for the profile
             $structuredData = $baseStructuredData;
             # Fetch and overwrite keys
             $profile = $viewUser->getProfile();
             if(is_array($profile)) {
                 $structuredData = array_merge($structuredData, $profile);
             }
             $place = $structuredData["place"];
             $social = $structuredData["social"];
             $bio = $structuredData["profile"];
             $privacyConfig = $structuredData["privacy"];
             # Helper captcha function
             $hasIncludedCaptcha = false;
             require_once 'admin/CONFIG.php';
             function getCaptchaData($dataType = "email") {
                 /***
                  *
                  ***/
                 global $hasIncludedCaptcha, $recaptcha_public_key;