{"id":1467,"date":"2022-12-29T08:00:00","date_gmt":"2022-12-29T08:00:00","guid":{"rendered":"http:\/\/marereport.namma.org\/?p=1467"},"modified":"2024-01-19T21:29:16","modified_gmt":"2024-01-19T21:29:16","slug":"inthenews-2022","status":"publish","type":"post","link":"https:\/\/marereport.namma.org\/index.php\/2022\/12\/29\/inthenews-2022\/","title":{"rendered":"In the News:  Seafarers\u2019 Ministries in North America 2022"},"content":{"rendered":"\n<p><strong><em>by Jason Zuidema, NAMMA<\/em><\/strong><\/p>\n\n\n\n<p>Often, seafarers\u2019 welfare is done \u2018under the radar\u2019. It is often said that the general public does not pay all that much attention to shipping, a proverbial \u201csea blindness\u201d. In previous years, this has meant that seafarers\u2019 welfare providers needed to spend that much more time justifying their work and educating the public about why seafarers and shipping were so important.<\/p>\n\n\n\n<p>Since the global COVID-19 pandemic, shipping and the work of seafarers\u2019 welfare hit the news. The following is a list of all the news stories in NAMMA\u2019s region that talk about the work of our members and partners. We will keep this list updated throughout 2022 as new stories appear.<\/p>\n\n\n\n<style>\n     .collapsible {\n        background-color: #ebebeb;\n        color: #b8c6d4;\n        cursor: pointer;\n        padding: 8px;\n        width: 100%;\n        border: none;\n        text-align: left;\n        outline: none;\n        font-size: 16px;\n        font-family: \"Lato\", sans-serif;\n        white-space: normal;\n    }\n\n    .active:focus,\n    .collapsible:focus {\n        background-color: #e3e3e3;\n        color: #b8c6d4;\n        border: none;\n        text-align: left;\n        outline: none;\n        font-size: 16px;\n        font-family: \"Lato\", sans-serif;\n        white-space: normal;\n    }\n\n    .active:hover,\n    .collapsible:hover {\n        background-color: #dbdbdb;\n        color: #b8c6d4;\n        border: none;\n        text-align: left;\n        outline: none;\n        font-size: 16px;\n        font-family: \"Lato\", sans-serif;\n        white-space: normal;\n    }\n\n    .collapsible:after {\n        content: '\\002B';\n        color: #b8c6d4;\n        font-weight: bold;\n        float: right;\n        margin-left: 5px;\n        border: none;\n        text-align: left;\n        outline: none;\n        font-size: 16px;\n        font-family: \"Lato\", sans-serif;\n        white-space: normal;\n    }\n\n    .active {\n        background-color: #ebebeb;\n        color: black;\n    }\n\n    .active:after {\n        content: \"\\2212\";\n    }\n\n    .content {\n        padding: 0 18px;\n        max-height: 0;\n        overflow: hidden;\n        transition: max-height 0.2s ease-out;\n        background-color: #f1f1f1;\n    }\n\n    #searchInput {\n        background-image: url('https:\/\/www.freepnglogos.com\/uploads\/search-png\/search-icon-transparent-images-vector-16.png');\n        background-position: 10px 10px;\n        background-size: 25px;\n        background-repeat: no-repeat;\n        width: 100%;\n        font-size: 16px;\n        padding: 12px 20px 12px 40px;\n        border: 1px solid #ddd;\n        margin-bottom: 12px;\n    }\n\n    #listItem {\n        border: 0px solid #ddd;\n        margin-top: -1px;\n        background-color: #f6f6f6;\n        padding: 0px;\n        text-decoration: none;\n        color: black;\n        display: block\n    }\n\n    .ListContainer {\n        list-style-type: none;\n        padding: 0;\n        margin: 0;\n    }\n<\/style>\n\n<input type=\"text\" id=\"searchInput\" onkeyup=\"searchList()\" placeholder=\"Search for keywords or titles...\">\n<div id=\"mainContentBar\"><\/div>\n\n<script src=\"https:\/\/ajax.googleapis.com\/ajax\/libs\/jquery\/2.1.1\/jquery.min.js\"><\/script>\n<script>\n \n  \/\/variables and url that are compatible with Google Sheets v4 API\n  var apiKey = 'AIzaSyBAH8EG8YdxxIyYaqfH0L5wG3eBrVZTYFA';\n  var spreadsheetID = '1Ko1bnUPSQCOPREsJBkl0qBDy6_Y2DnonfNLD_ok7Uyk';\n  var tabName = 'NAMMAnews2022';\n\n  var spreadsheetUrl = 'https:\/\/sheets.googleapis.com\/v4\/spreadsheets\/' + spreadsheetID + '\/values\/' + tabName + '?alt=json&key=' + apiKey;\n \n  \/\/gets spreadsheet data\n  ($.getJSON(spreadsheetUrl, 'callback=?')).success(function(data) {\n  makeList(data.values);\n   });\n\n \n   function makeList(spreadsheetArray) {\n        var listData = spreadsheetArray,\n            listContainers = [],\n            listCategories = [],\n            listTitles = [],\n            numberOfListItems = listData.length,\n            buttonItem,\n            contentItem,\n            contentItemTable;\n\n        listData.shift();\n\n        numberOfListItems = listData.length;\n\n        listData.sort(function (x, y) {\n            let a = x[1].toUpperCase(),\n                b = y[1].toUpperCase();\n            return a == b ? 0 : a > b ? 1 : -1;\n        });\n\n        \/\/define listCategies\n        for (var i = 0; i < numberOfListItems; i++) {\n            var thisCat = -1;\n            for (var j = 0; j < listCategories.length; j++) {\n                if (listData[i][0] == (listCategories[j])) {\n                    thisCat = j;\n                    break;\n                }\n            }\n            if (thisCat == -1) {\n                listCategories.push(listData[i][0]);\n            }\n        }\n\n        listCategories.sort(function (x, y) {\n            let a = parseInt(x),\n                b = parseInt(y);\n            return a == b ? 0 : a < b ? 1 : -1;\n        });\n\n        for (var i = 0; i < listCategories.length; i++) {\n            \/\/title\n            listTitles.push(document.createElement('h3'));\n            listTitles[i].setAttribute('class', 'areaTitle');\n            listTitles[i].innerHTML = listCategories[i];\n            document.getElementById(\"mainContentBar\").appendChild(listTitles[i]);\n\n            \/\/listContainer\n            listContainers.push(document.createElement('ul'));\n            listContainers[i].setAttribute('class', 'ListContainer');\n            listContainers[i].setAttribute('id', listCategories[i]);\n            document.getElementById(\"mainContentBar\").appendChild(listContainers[i]);\n        }\n\n        for (var i = 0; i < numberOfListItems; i++) {\n            \/\/create drop down button\n            buttonItem = document.createElement('button');\n            buttonItem.classList.add('collapsible');\n\n            if(listData[i][1] != \"-\"){\n                buttonItem.innerHTML = \"<span style='color: #b8c6d4'><b>\" + (listData[i][1] +\n                    \"<\/b><\/span><span style='color: #96a6b5'> - \" + listData[i][2]) + \"<\/span>\";\n            }else{\n                buttonItem.innerHTML = \"<span style='color: #b8c6d4'><b>\" + listData[i][2] + \"<\/b><\/span>\";\n            }\n            \/\/insert content\n            contentItem = document.createElement('div');\n            contentItem.classList.add('content');\n\n            \/\/inset content item table\n            contentItemTable = document.createElement('p');\n\n            var innerContentList = [\n                [\"<b>Publication: <\/b> \" + listData[i][3], 3],\n                [\"<b>Topic: <\/b>\" + listData[i][4], 4],\n                [\"<b>Title: <\/b>\" + listData[i][5], 5],\n                [\"<b>Author: <\/b>\" + listData[i][6], 6],\n                [\"<b>Publication: <\/b>\" + listData[i][7], 7],\n                [\"<b>Tags: <\/b>\" + listData[i][8], 8],\n                [\"<b>Additional Information: <\/b>\" + listData[i][9], 9],\n                [\"<b>Accessed Date: <\/b>\" + listData[i][10], 10],\n                [\"<b>Weblinks: <\/b>\" + listData[i][11], 11]\n            ];\n\n            for (var j = 0; j < innerContentList.length; j++) {\n                if (listData[i][innerContentList[j][1]] != '-') {\n                    if (j === 8) {\n                        var linkString = listData[i][11];\n                        if (linkString.indexOf(' ') >= 0) {\n                            var links = [];\n                            var lastIndex = 0;\n\n                            while (linkString.indexOf(' ') >= 0) {\n                                links.push(linkString.substring(0, linkString.indexOf(' ')));\n                                linkString = linkString.slice(linkString.indexOf(' ') + 1);\n                            }\n\n                            links.push(linkString.trim());\n\n                            contentItemTable.innerHTML += \"<b>Weblinks: \";\n\n                            for (var n = 0; n < links.length; n++) {\n                                contentItemTable.innerHTML += \"<a href='\" + links[n] + \"'>\" + links[n] + \"<\/a>\";\n                                if (links.length - n > 1) {\n                                    contentItemTable.innerHTML += \", <br>\";\n                                }\n                            }\n                            contentItemTable.innerHTML += \"<br>\";\n                        } else {\n                            contentItemTable.innerHTML += \"<b>Weblinks: <\/b>\" + \"<a href='\" + listData[i][11] + \"'>\" +\n                                listData[i][11] + \"<\/a>\";\n                        }\n                    } else {\n                        contentItemTable.innerHTML += innerContentList[j][0] + \"<br>\";\n                    }\n                }\n            }\n\n            var listItem = document.createElement(\"li\");\n            listItem.setAttribute(\"id\", \"listItem\");\n\n            document.getElementById(listData[i][0]).appendChild(listItem);\n\n            listItem.appendChild(buttonItem);\n            contentItem.appendChild(contentItemTable);\n            listItem.appendChild(contentItem);\n        }\n\n        var coll = document.getElementsByClassName(\"collapsible\");\n        var i;\n\n        for (i = 0; i < coll.length; i++) {\n            coll[i].addEventListener(\"click\", function () {\n                this.classList.toggle(\"active\");\n                var content = this.nextElementSibling;\n                if (content.style.maxHeight) {\n                    content.style.maxHeight = null;\n                } else {\n                    content.style.maxHeight = content.scrollHeight + \"px\";\n                }\n            });\n        }\n    }\n\n    function searchList() {\n        let input, filter, ul, li, a, i, txtValue, hidden;\n        input = document.getElementById(\"searchInput\");\n        filter = input.value.toUpperCase();\n        uls = document.getElementById(\"mainContentBar\").getElementsByClassName(\"ListContainer\");\n        for (var j = 0; j < uls.length; j++) {\n            hidden = 0;\n            ul = uls[j];\n            li = ul.getElementsByTagName(\"li\");\n            for (i = 0; i < li.length; i++) {\n                button = li[i].getElementsByTagName(\"button\")[0];\n                p = li[i].getElementsByTagName(\"p\")[0];\n                txtValue = (button.textContent + \" \" + p.innerText).toUpperCase();\n                if (txtValue.indexOf(filter) != -1) {\n                    li[i].style.display = \"\";\n                } else {\n                    li[i].style.display = \"none\";\n                    hidden++;\n                }\n            }\n            if (hidden == li.length) {\n                document.getElementsByClassName(\"areaTitle\")[j].style.display = \"none\";\n            } else {\n                document.getElementsByClassName(\"areaTitle\")[j].style.display = \"\";\n            }\n        }\n    }\n<\/script>\n\n\n\n<p>View the <a href=\"https:\/\/marereport.namma.org\/index.php\/2021\/01\/01\/news-about-namma-members-in-2021\/\">2021 <em>In the News<\/em><\/a> list here.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>by Jason Zuidema, NAMMA Often, seafarers\u2019 welfare is done \u2018under the radar\u2019. It is often said that the general public does not pay all that much attention to shipping, a proverbial \u201csea blindness\u201d. In previous years, this has meant that [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":2493,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[497],"tags":[502,194,498,39,93],"class_list":["post-1467","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-in-the-news","tag-in-the-news","tag-namma","tag-news","tag-seafarers","tag-seafarers-welfare"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>In the News: Seafarers\u2019 Ministries in North America 2022 - The MARE Report<\/title>\n<meta name=\"description\" content=\"The MARE Report provides an updated list of news stories that highlight the work and impact of NAMMA&#039;s members and partners throughout the year.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/marereport.namma.org\/index.php\/2022\/12\/29\/inthenews-2022\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"In the News: Seafarers\u2019 Ministries in North America 2022 - The MARE Report\" \/>\n<meta property=\"og:description\" content=\"The MARE Report provides an updated list of news stories that highlight the work and impact of NAMMA&#039;s members and partners throughout the year.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/marereport.namma.org\/index.php\/2022\/12\/29\/inthenews-2022\/\" \/>\n<meta property=\"og:site_name\" content=\"The MARE Report\" \/>\n<meta property=\"article:published_time\" content=\"2022-12-29T08:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-01-19T21:29:16+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/marereport.namma.org\/wp-content\/uploads\/2022\/12\/new_inthenews-2022-.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"2560\" \/>\n\t<meta property=\"og:image:height\" content=\"750\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Jason Zuidema\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jason Zuidema\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/marereport.namma.org\\\/index.php\\\/2022\\\/12\\\/29\\\/inthenews-2022\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/marereport.namma.org\\\/index.php\\\/2022\\\/12\\\/29\\\/inthenews-2022\\\/\"},\"author\":{\"name\":\"Jason Zuidema\",\"@id\":\"https:\\\/\\\/marereport.namma.org\\\/#\\\/schema\\\/person\\\/4f39f8925c9efdd95652247c492f11ef\"},\"headline\":\"In the News: Seafarers\u2019 Ministries in North America 2022\",\"datePublished\":\"2022-12-29T08:00:00+00:00\",\"dateModified\":\"2024-01-19T21:29:16+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/marereport.namma.org\\\/index.php\\\/2022\\\/12\\\/29\\\/inthenews-2022\\\/\"},\"wordCount\":130,\"image\":{\"@id\":\"https:\\\/\\\/marereport.namma.org\\\/index.php\\\/2022\\\/12\\\/29\\\/inthenews-2022\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/marereport.namma.org\\\/wp-content\\\/uploads\\\/2022\\\/12\\\/new_inthenews-2022-.jpg\",\"keywords\":[\"in the news\",\"namma\",\"News\",\"seafarers\",\"seafarers' welfare\"],\"articleSection\":[\"In the News\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/marereport.namma.org\\\/index.php\\\/2022\\\/12\\\/29\\\/inthenews-2022\\\/\",\"url\":\"https:\\\/\\\/marereport.namma.org\\\/index.php\\\/2022\\\/12\\\/29\\\/inthenews-2022\\\/\",\"name\":\"In the News: Seafarers\u2019 Ministries in North America 2022 - The MARE Report\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/marereport.namma.org\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/marereport.namma.org\\\/index.php\\\/2022\\\/12\\\/29\\\/inthenews-2022\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/marereport.namma.org\\\/index.php\\\/2022\\\/12\\\/29\\\/inthenews-2022\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/marereport.namma.org\\\/wp-content\\\/uploads\\\/2022\\\/12\\\/new_inthenews-2022-.jpg\",\"datePublished\":\"2022-12-29T08:00:00+00:00\",\"dateModified\":\"2024-01-19T21:29:16+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/marereport.namma.org\\\/#\\\/schema\\\/person\\\/4f39f8925c9efdd95652247c492f11ef\"},\"description\":\"The MARE Report provides an updated list of news stories that highlight the work and impact of NAMMA's members and partners throughout the year.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/marereport.namma.org\\\/index.php\\\/2022\\\/12\\\/29\\\/inthenews-2022\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/marereport.namma.org\\\/index.php\\\/2022\\\/12\\\/29\\\/inthenews-2022\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/marereport.namma.org\\\/index.php\\\/2022\\\/12\\\/29\\\/inthenews-2022\\\/#primaryimage\",\"url\":\"https:\\\/\\\/marereport.namma.org\\\/wp-content\\\/uploads\\\/2022\\\/12\\\/new_inthenews-2022-.jpg\",\"contentUrl\":\"https:\\\/\\\/marereport.namma.org\\\/wp-content\\\/uploads\\\/2022\\\/12\\\/new_inthenews-2022-.jpg\",\"width\":2560,\"height\":750,\"caption\":\"IN THE NEWS, NAMMA, NEWS, SEAFARERS, SEAFARERS' WELFARE\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/marereport.namma.org\\\/index.php\\\/2022\\\/12\\\/29\\\/inthenews-2022\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/marereport.namma.org\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"In the News: Seafarers\u2019 Ministries in North America 2022\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/marereport.namma.org\\\/#website\",\"url\":\"https:\\\/\\\/marereport.namma.org\\\/\",\"name\":\"The MARE Report\",\"description\":\"News for Seafarers&#039; Welfare Professionals\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/marereport.namma.org\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/marereport.namma.org\\\/#\\\/schema\\\/person\\\/4f39f8925c9efdd95652247c492f11ef\",\"name\":\"Jason Zuidema\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5e09d5fdc078a59f3072211e74087a6b2839993d220cfbe1f34dfaacfc4c5b74?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5e09d5fdc078a59f3072211e74087a6b2839993d220cfbe1f34dfaacfc4c5b74?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/5e09d5fdc078a59f3072211e74087a6b2839993d220cfbe1f34dfaacfc4c5b74?s=96&d=mm&r=g\",\"caption\":\"Jason Zuidema\"},\"url\":\"https:\\\/\\\/marereport.namma.org\\\/index.php\\\/author\\\/namma-mare-wp\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"In the News: Seafarers\u2019 Ministries in North America 2022 - The MARE Report","description":"The MARE Report provides an updated list of news stories that highlight the work and impact of NAMMA's members and partners throughout the year.","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:\/\/marereport.namma.org\/index.php\/2022\/12\/29\/inthenews-2022\/","og_locale":"en_US","og_type":"article","og_title":"In the News: Seafarers\u2019 Ministries in North America 2022 - The MARE Report","og_description":"The MARE Report provides an updated list of news stories that highlight the work and impact of NAMMA's members and partners throughout the year.","og_url":"https:\/\/marereport.namma.org\/index.php\/2022\/12\/29\/inthenews-2022\/","og_site_name":"The MARE Report","article_published_time":"2022-12-29T08:00:00+00:00","article_modified_time":"2024-01-19T21:29:16+00:00","og_image":[{"width":2560,"height":750,"url":"https:\/\/marereport.namma.org\/wp-content\/uploads\/2022\/12\/new_inthenews-2022-.jpg","type":"image\/jpeg"}],"author":"Jason Zuidema","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Jason Zuidema","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/marereport.namma.org\/index.php\/2022\/12\/29\/inthenews-2022\/#article","isPartOf":{"@id":"https:\/\/marereport.namma.org\/index.php\/2022\/12\/29\/inthenews-2022\/"},"author":{"name":"Jason Zuidema","@id":"https:\/\/marereport.namma.org\/#\/schema\/person\/4f39f8925c9efdd95652247c492f11ef"},"headline":"In the News: Seafarers\u2019 Ministries in North America 2022","datePublished":"2022-12-29T08:00:00+00:00","dateModified":"2024-01-19T21:29:16+00:00","mainEntityOfPage":{"@id":"https:\/\/marereport.namma.org\/index.php\/2022\/12\/29\/inthenews-2022\/"},"wordCount":130,"image":{"@id":"https:\/\/marereport.namma.org\/index.php\/2022\/12\/29\/inthenews-2022\/#primaryimage"},"thumbnailUrl":"https:\/\/marereport.namma.org\/wp-content\/uploads\/2022\/12\/new_inthenews-2022-.jpg","keywords":["in the news","namma","News","seafarers","seafarers' welfare"],"articleSection":["In the News"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/marereport.namma.org\/index.php\/2022\/12\/29\/inthenews-2022\/","url":"https:\/\/marereport.namma.org\/index.php\/2022\/12\/29\/inthenews-2022\/","name":"In the News: Seafarers\u2019 Ministries in North America 2022 - The MARE Report","isPartOf":{"@id":"https:\/\/marereport.namma.org\/#website"},"primaryImageOfPage":{"@id":"https:\/\/marereport.namma.org\/index.php\/2022\/12\/29\/inthenews-2022\/#primaryimage"},"image":{"@id":"https:\/\/marereport.namma.org\/index.php\/2022\/12\/29\/inthenews-2022\/#primaryimage"},"thumbnailUrl":"https:\/\/marereport.namma.org\/wp-content\/uploads\/2022\/12\/new_inthenews-2022-.jpg","datePublished":"2022-12-29T08:00:00+00:00","dateModified":"2024-01-19T21:29:16+00:00","author":{"@id":"https:\/\/marereport.namma.org\/#\/schema\/person\/4f39f8925c9efdd95652247c492f11ef"},"description":"The MARE Report provides an updated list of news stories that highlight the work and impact of NAMMA's members and partners throughout the year.","breadcrumb":{"@id":"https:\/\/marereport.namma.org\/index.php\/2022\/12\/29\/inthenews-2022\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/marereport.namma.org\/index.php\/2022\/12\/29\/inthenews-2022\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/marereport.namma.org\/index.php\/2022\/12\/29\/inthenews-2022\/#primaryimage","url":"https:\/\/marereport.namma.org\/wp-content\/uploads\/2022\/12\/new_inthenews-2022-.jpg","contentUrl":"https:\/\/marereport.namma.org\/wp-content\/uploads\/2022\/12\/new_inthenews-2022-.jpg","width":2560,"height":750,"caption":"IN THE NEWS, NAMMA, NEWS, SEAFARERS, SEAFARERS' WELFARE"},{"@type":"BreadcrumbList","@id":"https:\/\/marereport.namma.org\/index.php\/2022\/12\/29\/inthenews-2022\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/marereport.namma.org\/"},{"@type":"ListItem","position":2,"name":"In the News: Seafarers\u2019 Ministries in North America 2022"}]},{"@type":"WebSite","@id":"https:\/\/marereport.namma.org\/#website","url":"https:\/\/marereport.namma.org\/","name":"The MARE Report","description":"News for Seafarers&#039; Welfare Professionals","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/marereport.namma.org\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/marereport.namma.org\/#\/schema\/person\/4f39f8925c9efdd95652247c492f11ef","name":"Jason Zuidema","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/5e09d5fdc078a59f3072211e74087a6b2839993d220cfbe1f34dfaacfc4c5b74?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/5e09d5fdc078a59f3072211e74087a6b2839993d220cfbe1f34dfaacfc4c5b74?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/5e09d5fdc078a59f3072211e74087a6b2839993d220cfbe1f34dfaacfc4c5b74?s=96&d=mm&r=g","caption":"Jason Zuidema"},"url":"https:\/\/marereport.namma.org\/index.php\/author\/namma-mare-wp\/"}]}},"_links":{"self":[{"href":"https:\/\/marereport.namma.org\/index.php\/wp-json\/wp\/v2\/posts\/1467","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/marereport.namma.org\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/marereport.namma.org\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/marereport.namma.org\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/marereport.namma.org\/index.php\/wp-json\/wp\/v2\/comments?post=1467"}],"version-history":[{"count":5,"href":"https:\/\/marereport.namma.org\/index.php\/wp-json\/wp\/v2\/posts\/1467\/revisions"}],"predecessor-version":[{"id":1933,"href":"https:\/\/marereport.namma.org\/index.php\/wp-json\/wp\/v2\/posts\/1467\/revisions\/1933"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/marereport.namma.org\/index.php\/wp-json\/wp\/v2\/media\/2493"}],"wp:attachment":[{"href":"https:\/\/marereport.namma.org\/index.php\/wp-json\/wp\/v2\/media?parent=1467"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/marereport.namma.org\/index.php\/wp-json\/wp\/v2\/categories?post=1467"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/marereport.namma.org\/index.php\/wp-json\/wp\/v2\/tags?post=1467"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}