{"id":286,"date":"2020-03-02T12:44:58","date_gmt":"2020-03-02T12:44:58","guid":{"rendered":"http:\/\/fredborg.org\/?p=286"},"modified":"2020-12-23T20:45:48","modified_gmt":"2020-12-23T20:45:48","slug":"migrate-to-business-central-cloud","status":"publish","type":"post","link":"https:\/\/fredborg.org\/?p=286","title":{"rendered":"Migrate to Business Central Cloud"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">I just recently upgraded my first customer from an on prem installation to the Business Central cloud, and what a ride&nbsp;<a href=\"https:\/\/emojipedia.org\/upside-down-face\/\" target=\"_blank\" rel=\"noreferrer noopener\">&#x1f643;<\/a>&nbsp;&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">So I thought that I would share my experiences and how I managed to get by data migrated, first off I would like to point out, that the way that I will cover in this post was the way that succeed for me and not necessarily the correct way. On another note I would like to give a shout out to my talented colleague&nbsp;Iheb&nbsp;Mahmoudi&nbsp;who helped guide my hand though most of the process&nbsp;&#x1f60a;&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Pre conditions:&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Before you can migrate your data to the cloud, you must upgrade your NAV\/BC to BC15, now I would recommend that you upgrade everything in the old fashion way until you get to BC14, when you are on a BC14 you must move all your customizations and data to extensions, and then delete all objects (not standard tables) and put a stanard NAV Cronus package on top, once you have done this and everything still works as intended you are ready to upgrade to BC15.&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Step 1:&nbsp;<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Un publish and uninstall all extensions from your BC14 which you can do with this PowerShell command.\u00a0<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: powershell; title: ; notranslate\" title=\"\">\nGet-NAVAppInfo -ServerInstance {BC13ServerInstance} | % { Uninstall-NAVApp -ServerInstance upgbc13 -Name $_.Name -Version $_.Version } \n\nGet-NAVAppInfo -ServerInstance {BC13ServerInstance} | % { Unpublish-NAVApp -ServerInstance upgbc13 -Name $_.Name -Version $_.Version } \n<\/pre><\/div>\n\n\n<p class=\"wp-block-paragraph\"><strong>Step 2:&nbsp;<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Delete all objects except tables.&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Step 4:&nbsp;<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Start the database conversion which you do with the following PowerShell command&nbsp;&nbsp;&nbsp;<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: powershell; title: ; notranslate\" title=\"\">\nInvoke-NAVApplicationDatabaseConversion -DatabaseServer ].\\instance} -DatabaseName {DatabaseName} \n<\/pre><\/div>\n\n\n<p class=\"wp-block-paragraph\"><strong>Step 5:&nbsp;<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Configure the BC15 service tier, which you can do with the following PowerShell\u00a0<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: powershell; title: ; notranslate\" title=\"\">\nSet-NAVServerConfiguration -ServerInstance {BC15ServerInstance} -KeyName DatabaseName -KeyValue &quot;{Databasename}&quot; \n\nSet-NAVServerConfiguration -ServerInstance {BC15ServerInstance} -KeyName &quot;DestinationAppsForMigration&quot; -KeyValue &#039;&#x5B;{&quot;appId&quot;:&quot;63ca2fa4-4f03-4f2b-a480-172fef340d3f&quot;, &quot;name&quot;:&quot;System Application&quot;, &quot;publisher&quot;: &quot;Microsoft&quot;},{&quot;appId&quot;:&quot;437dbf0e-84ff-417a-965d-ed2bb9650972&quot;, &quot;name&quot;:&quot;Base Application&quot;, &quot;publisher&quot;: &quot;Microsoft&quot;}]&#039; \n\n\nSet-NavServerConfiguration -ServerInstance {BC15ServerInstance} -KeyName &quot;EnableTaskScheduler&quot; -KeyValue false \n<\/pre><\/div>\n\n\n<p class=\"wp-block-paragraph\">This will set your service tier to use the new database, and it disables your job ques.&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Step 6:&nbsp;<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Restart the service tier&nbsp;<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: powershell; title: ; notranslate\" title=\"\">\nRestart-NAVServerInstance -ServerInstance {BC15ServerInstance} \n<\/pre><\/div>\n\n\n<p class=\"wp-block-paragraph\"><strong>Step 7:&nbsp;<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Publish System app, System application and base application&nbsp;<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: powershell; title: ; notranslate\" title=\"\">\nPublish-NAVApp -ServerInstance  {BC15ServerInstance} -Path &quot;C:\\Program Files (x86)\\Microsoft Dynamics 365 Business Central\\150\\AL Development Environment\\System.app&quot; -PackageType SymbolsOnly \n\nPublish-NAVApp -ServerInstance  {BC15ServerInstance} -Path &quot;Dynamics.365.BC.39040.DK.DVD\\Applications\\System Application\\Source\\Microsoft_System Application.app&quot; \n\n\nPublish-NAVApp -ServerInstance {BC15ServerInstance} -Path &quot;Dynamics.365.BC.39040.DK.DVD\\Applications\\BaseApp\\Source\\Microsoft_Base Application.app\n<\/pre><\/div>\n\n\n<p class=\"wp-block-paragraph\"><strong>Step 8:&nbsp;<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Synchronize&nbsp;the extensions&nbsp;<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: powershell; title: ; notranslate\" title=\"\">\nSync-NAVTenant -ServerInstance {BC15ServerInstance} -Mode Sync  \n\nSync-NAVApp -ServerInstance {BC15ServerInstance} -Name &quot;System Application&quot; -Version 15.2.39040.0 \n\nSync-NAVApp -ServerInstance {BC15ServerInstance} -Name &quot;Base Application&quot; -Version 15.2.39040.0 \n<\/pre><\/div>\n\n\n<p class=\"wp-block-paragraph\"><strong>Step 9:&nbsp;<\/strong>&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Start\u00a0Data upgrade<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: powershell; title: ; notranslate\" title=\"\">\nStart-NAVAppDataUpgrade -ServerInstance {BC15ServerInstance} -Name &quot;System Application&quot; -Version 15.2.39040.0 \n\n\nStart-NAVAppDataUpgrade -ServerInstance {BC15ServerInstance} -Name &quot;Base Application&quot; -Version 15.2.39040.0 \n\n<\/pre><\/div>\n\n\n<p class=\"wp-block-paragraph\">&nbsp;You are now on a BC15&nbsp;&#x1f60a;&nbsp;next step is to migrate data to the cloud, the first thing you have to do is make sure that your SQL server is running in mixed mode and that you have a SQL user with Sysadmin permissions.&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Next go to your BC in the cloud and go to assisted setup and start the\u00a0Set up\u00a0Cloud Migration.\u00a0<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img loading=\"lazy\" decoding=\"async\" width=\"587\" height=\"273\" src=\"https:\/\/fredborg.org\/wp-content\/uploads\/2020\/03\/brave_evoVE2kiFg.png\" alt=\"\" class=\"wp-image-288\" srcset=\"https:\/\/fredborg.org\/wp-content\/uploads\/2020\/03\/brave_evoVE2kiFg.png 587w, https:\/\/fredborg.org\/wp-content\/uploads\/2020\/03\/brave_evoVE2kiFg-300x140.png 300w\" sizes=\"auto, (max-width: 587px) 100vw, 587px\" \/><\/figure><\/div>\n\n\n\n<p class=\"wp-block-paragraph\">On the first page you&nbsp;have to&nbsp;accept the license agreement, then press next where you have to choose Dynamics 365 Business Central then press next. On the Next page you must setup your SQL connection, in SQL configuration you must choose SQL server, then enter an SQL connection string which should look something like this:&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>&nbsp;Server=localhost;Database={Database};User Id={user};Password={password};&nbsp;<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">And then press next.\u00a0<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter\"><img loading=\"lazy\" decoding=\"async\" width=\"571\" height=\"515\" src=\"https:\/\/fredborg.org\/wp-content\/uploads\/2020\/03\/brave_rsddyjMwxy.png\" alt=\"\" class=\"wp-image-289\" srcset=\"https:\/\/fredborg.org\/wp-content\/uploads\/2020\/03\/brave_rsddyjMwxy.png 571w, https:\/\/fredborg.org\/wp-content\/uploads\/2020\/03\/brave_rsddyjMwxy-300x271.png 300w\" sizes=\"auto, (max-width: 571px) 100vw, 571px\" \/><\/figure><\/div>\n\n\n\n<p class=\"wp-block-paragraph\">This will take you to a page where you will be given a download link for Microsoft&nbsp;Intergration&nbsp;agent and an API key which you&nbsp;have to&nbsp;use when you install the agent.&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Once you finish installing the agent, you can complete the setup in BC and your data should start to be migrated.&nbsp;&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Errors:&nbsp;<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">SQL compatibility mode is must be 130 or higher \u2013 to solve this run following command on your SQL&nbsp;database :&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">ALTER DATABASE&nbsp;database_name&nbsp;SET COMPATIBILITY_LEVEL =&nbsp;{ 150&nbsp;| 140 | 130 | 120 | 110 | 100 | 90 }&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Your application version is not high enough, now this is a&nbsp;hack&nbsp;but you can open your database go to the table&nbsp;$ndo$dbproperty&nbsp;and change&nbsp;databaseversionno&nbsp;to the desired application no&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">If you get an error during&nbsp;Data Upgrade&nbsp;try to restart service tier&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">And that is it, like I wrote this is not necessarily the official way to do your data&nbsp;migration&nbsp;but it is the way that worked for me&nbsp;&#x1f60a;&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>I just recently upgraded my first customer from an on prem installation to the Business Central cloud, and what a&#8230; <a class=\"read-more\" href=\"https:\/\/fredborg.org\/?p=286\" rel=\"nofollow\"> Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":287,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5,1],"tags":[],"class_list":["post-286","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-business-central","category-uncategorized","shapla-grid-item"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Migrate to Business Central Cloud - Fredborg<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/fredborg.org\/?p=286\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Migrate to Business Central Cloud - Fredborg\" \/>\n<meta property=\"og:description\" content=\"I just recently upgraded my first customer from an on prem installation to the Business Central cloud, and what a... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/fredborg.org\/?p=286\" \/>\n<meta property=\"og:site_name\" content=\"Fredborg\" \/>\n<meta property=\"article:published_time\" content=\"2020-03-02T12:44:58+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-12-23T20:45:48+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/fredborg.org\/wp-content\/uploads\/2020\/03\/ToCloud.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1077\" \/>\n\t<meta property=\"og:image:height\" content=\"472\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"dfredborg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@dfredborg\" \/>\n<meta name=\"twitter:site\" content=\"@dfredborg\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"dfredborg\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/fredborg.org\/?p=286#article\",\"isPartOf\":{\"@id\":\"https:\/\/fredborg.org\/?p=286\"},\"author\":{\"name\":\"dfredborg\",\"@id\":\"https:\/\/fredborg.org\/#\/schema\/person\/59a5520cbf04c6bd1267f30b4488e71d\"},\"headline\":\"Migrate to Business Central Cloud\",\"datePublished\":\"2020-03-02T12:44:58+00:00\",\"dateModified\":\"2020-12-23T20:45:48+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/fredborg.org\/?p=286\"},\"wordCount\":642,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/fredborg.org\/#\/schema\/person\/59a5520cbf04c6bd1267f30b4488e71d\"},\"image\":{\"@id\":\"https:\/\/fredborg.org\/?p=286#primaryimage\"},\"thumbnailUrl\":\"https:\/\/fredborg.org\/wp-content\/uploads\/2020\/03\/ToCloud.png\",\"articleSection\":[\"Business Central\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/fredborg.org\/?p=286#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/fredborg.org\/?p=286\",\"url\":\"https:\/\/fredborg.org\/?p=286\",\"name\":\"Migrate to Business Central Cloud - Fredborg\",\"isPartOf\":{\"@id\":\"https:\/\/fredborg.org\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/fredborg.org\/?p=286#primaryimage\"},\"image\":{\"@id\":\"https:\/\/fredborg.org\/?p=286#primaryimage\"},\"thumbnailUrl\":\"https:\/\/fredborg.org\/wp-content\/uploads\/2020\/03\/ToCloud.png\",\"datePublished\":\"2020-03-02T12:44:58+00:00\",\"dateModified\":\"2020-12-23T20:45:48+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/fredborg.org\/?p=286#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/fredborg.org\/?p=286\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/fredborg.org\/?p=286#primaryimage\",\"url\":\"https:\/\/fredborg.org\/wp-content\/uploads\/2020\/03\/ToCloud.png\",\"contentUrl\":\"https:\/\/fredborg.org\/wp-content\/uploads\/2020\/03\/ToCloud.png\",\"width\":1077,\"height\":472},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/fredborg.org\/?p=286#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/fredborg.org\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Migrate to Business Central Cloud\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/fredborg.org\/#website\",\"url\":\"https:\/\/fredborg.org\/\",\"name\":\"Fredborg\",\"description\":\"Business Central and Azure\",\"publisher\":{\"@id\":\"https:\/\/fredborg.org\/#\/schema\/person\/59a5520cbf04c6bd1267f30b4488e71d\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/fredborg.org\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/fredborg.org\/#\/schema\/person\/59a5520cbf04c6bd1267f30b4488e71d\",\"name\":\"dfredborg\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/fredborg.org\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/fredborg.org\/wp-content\/uploads\/2023\/06\/download.png\",\"contentUrl\":\"https:\/\/fredborg.org\/wp-content\/uploads\/2023\/06\/download.png\",\"width\":256,\"height\":256,\"caption\":\"dfredborg\"},\"logo\":{\"@id\":\"https:\/\/fredborg.org\/#\/schema\/person\/image\/\"},\"sameAs\":[\"https:fredborg.org\",\"https:\/\/www.linkedin.com\/in\/dfredborg\/\",\"https:\/\/x.com\/dfredborg\",\"https:\/\/www.youtube.com\/channel\/UCUNZglLDMjBlOK_T9JtI8UA\"],\"url\":\"https:\/\/fredborg.org\/?author=1\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Migrate to Business Central Cloud - Fredborg","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:\/\/fredborg.org\/?p=286","og_locale":"en_US","og_type":"article","og_title":"Migrate to Business Central Cloud - Fredborg","og_description":"I just recently upgraded my first customer from an on prem installation to the Business Central cloud, and what a... Read more","og_url":"https:\/\/fredborg.org\/?p=286","og_site_name":"Fredborg","article_published_time":"2020-03-02T12:44:58+00:00","article_modified_time":"2020-12-23T20:45:48+00:00","og_image":[{"width":1077,"height":472,"url":"https:\/\/fredborg.org\/wp-content\/uploads\/2020\/03\/ToCloud.png","type":"image\/png"}],"author":"dfredborg","twitter_card":"summary_large_image","twitter_creator":"@dfredborg","twitter_site":"@dfredborg","twitter_misc":{"Written by":"dfredborg","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/fredborg.org\/?p=286#article","isPartOf":{"@id":"https:\/\/fredborg.org\/?p=286"},"author":{"name":"dfredborg","@id":"https:\/\/fredborg.org\/#\/schema\/person\/59a5520cbf04c6bd1267f30b4488e71d"},"headline":"Migrate to Business Central Cloud","datePublished":"2020-03-02T12:44:58+00:00","dateModified":"2020-12-23T20:45:48+00:00","mainEntityOfPage":{"@id":"https:\/\/fredborg.org\/?p=286"},"wordCount":642,"commentCount":0,"publisher":{"@id":"https:\/\/fredborg.org\/#\/schema\/person\/59a5520cbf04c6bd1267f30b4488e71d"},"image":{"@id":"https:\/\/fredborg.org\/?p=286#primaryimage"},"thumbnailUrl":"https:\/\/fredborg.org\/wp-content\/uploads\/2020\/03\/ToCloud.png","articleSection":["Business Central"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/fredborg.org\/?p=286#respond"]}]},{"@type":"WebPage","@id":"https:\/\/fredborg.org\/?p=286","url":"https:\/\/fredborg.org\/?p=286","name":"Migrate to Business Central Cloud - Fredborg","isPartOf":{"@id":"https:\/\/fredborg.org\/#website"},"primaryImageOfPage":{"@id":"https:\/\/fredborg.org\/?p=286#primaryimage"},"image":{"@id":"https:\/\/fredborg.org\/?p=286#primaryimage"},"thumbnailUrl":"https:\/\/fredborg.org\/wp-content\/uploads\/2020\/03\/ToCloud.png","datePublished":"2020-03-02T12:44:58+00:00","dateModified":"2020-12-23T20:45:48+00:00","breadcrumb":{"@id":"https:\/\/fredborg.org\/?p=286#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/fredborg.org\/?p=286"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/fredborg.org\/?p=286#primaryimage","url":"https:\/\/fredborg.org\/wp-content\/uploads\/2020\/03\/ToCloud.png","contentUrl":"https:\/\/fredborg.org\/wp-content\/uploads\/2020\/03\/ToCloud.png","width":1077,"height":472},{"@type":"BreadcrumbList","@id":"https:\/\/fredborg.org\/?p=286#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/fredborg.org\/"},{"@type":"ListItem","position":2,"name":"Migrate to Business Central Cloud"}]},{"@type":"WebSite","@id":"https:\/\/fredborg.org\/#website","url":"https:\/\/fredborg.org\/","name":"Fredborg","description":"Business Central and Azure","publisher":{"@id":"https:\/\/fredborg.org\/#\/schema\/person\/59a5520cbf04c6bd1267f30b4488e71d"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/fredborg.org\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/fredborg.org\/#\/schema\/person\/59a5520cbf04c6bd1267f30b4488e71d","name":"dfredborg","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/fredborg.org\/#\/schema\/person\/image\/","url":"https:\/\/fredborg.org\/wp-content\/uploads\/2023\/06\/download.png","contentUrl":"https:\/\/fredborg.org\/wp-content\/uploads\/2023\/06\/download.png","width":256,"height":256,"caption":"dfredborg"},"logo":{"@id":"https:\/\/fredborg.org\/#\/schema\/person\/image\/"},"sameAs":["https:fredborg.org","https:\/\/www.linkedin.com\/in\/dfredborg\/","https:\/\/x.com\/dfredborg","https:\/\/www.youtube.com\/channel\/UCUNZglLDMjBlOK_T9JtI8UA"],"url":"https:\/\/fredborg.org\/?author=1"}]}},"_links":{"self":[{"href":"https:\/\/fredborg.org\/index.php?rest_route=\/wp\/v2\/posts\/286","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/fredborg.org\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/fredborg.org\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/fredborg.org\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/fredborg.org\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=286"}],"version-history":[{"count":1,"href":"https:\/\/fredborg.org\/index.php?rest_route=\/wp\/v2\/posts\/286\/revisions"}],"predecessor-version":[{"id":290,"href":"https:\/\/fredborg.org\/index.php?rest_route=\/wp\/v2\/posts\/286\/revisions\/290"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/fredborg.org\/index.php?rest_route=\/wp\/v2\/media\/287"}],"wp:attachment":[{"href":"https:\/\/fredborg.org\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=286"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/fredborg.org\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=286"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/fredborg.org\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=286"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}