{"id":1705,"date":"2026-01-06T22:06:00","date_gmt":"2026-01-06T22:06:00","guid":{"rendered":"https:\/\/craftcookcode.com\/?p=1705"},"modified":"2026-01-06T22:06:03","modified_gmt":"2026-01-06T22:06:03","slug":"qlik-replicate-schedules-a-cron-with-an-extra-field","status":"publish","type":"post","link":"https:\/\/craftcookcode.com\/?p=1705","title":{"rendered":"Qlik Replicate Schedules &#8211; a CRON with an extra field?"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">Introduction<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">To make our lives easier migrating Qlik Replicate tasks from one environment to another; I am looking how to migrate Qlik Replicate schedules.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">So far by GitLab pipelines we can migrate tasks and endpoint; but schedules we must do manually.&nbsp; Quite often we forget to manually create the schedules as they are not as obvious component compared to tasks and endpoints.&nbsp; If you move to a new environment and your task is not there, well that is a no brainer.&nbsp; If your endpoint is not there; your task will not migrate.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">But schedules are something that lurks in the background; inconsistently created when we rush to put them in when we realise the Qlik task did not run when it was meant to.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Plan<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Using the python API, we can export all the items from a Qlik Replicate server with the export_all method.&nbsp; In the returned Json file will be the schedule details like this:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: java; title: ; notranslate\" title=\"\">\n{\n    &quot;name&quot;: &quot;DEV_S004_GCS_DLA&quot;,\n    &quot;command_id&quot;: 25,\n    &quot;schedule&quot;: &quot;0 1 * * * *&quot;,\n    &quot;command_requests&quot;: {\n        &quot;cleanlogs_req&quot;: {\n            &quot;server&quot;: {},\n            &quot;task&quot;: {},\n            &quot;fts&quot;: {}\n        },\n        &quot;logfilerollover_req&quot;: {},\n        &quot;execute_req&quot;: {\n            &quot;task&quot;: &quot;&quot;,\n            &quot;operation&quot;: &quot;EXECUTE_OPERATIONS_BOTH&quot;,\n            &quot;flags&quot;: &quot;FRESH&quot;\n        },\n        &quot;stoptask_req&quot;: {\n            &quot;task&quot;: &quot;&quot;\n        }\n    },\n    &quot;task&quot;: &quot;DEV_T222_DL_LENDING_DLA&quot;,\n    &quot;is_local_time&quot;: true\n}\n<\/pre><\/div>\n\n\n<p class=\"wp-block-paragraph\">The idea is to modify the Json for the schedule to match the environment we are migrating to; put the schedule into a blank server Json template and use the import_all<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">&nbsp;method to upload the new schedules to the destination server.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The Cron does not look right\u2026<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Looking over the exported Json; the <a href=\"https:\/\/en.wikipedia.org\/wiki\/Cron\" target=\"_blank\" rel=\"noopener\" title=\"\">cron syntax<\/a> did not look right.\u00a0 It had six fields instead of the expected five.<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: java; title: ; notranslate\" title=\"\">\n&quot;schedule&quot;: &quot;0 1 * * * *&quot;\n<\/pre><\/div>\n\n\n<p class=\"wp-block-paragraph\">This confused me for a while as I haven&#8217;t come across a cron like this before.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">After coming up with no results searching Qlik&#8217;s documentation; I created some test schedules to try and determine what the sixth field is used for.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Ahh. After a short while I found the answer.  <\/p>\n\n\n\n<p class=\"wp-block-paragraph\">If the schedule is a &#8220;Once off&#8221; run; the sixth field is used for &#8220;Year&#8221;.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Here is an example below:<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img fetchpriority=\"high\" decoding=\"async\" width=\"395\" height=\"400\" src=\"http:\/\/craftcookcode.com\/wp-content\/uploads\/2026\/01\/code_qr_schedules_02.png\" alt=\"\" class=\"wp-image-1708\" srcset=\"https:\/\/craftcookcode.com\/wp-content\/uploads\/2026\/01\/code_qr_schedules_02.png 395w, https:\/\/craftcookcode.com\/wp-content\/uploads\/2026\/01\/code_qr_schedules_02-296x300.png 296w\" sizes=\"(max-width: 395px) 100vw, 395px\" \/><\/figure>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: java; title: ; notranslate\" title=\"\">\n{\n\t&quot;name&quot;:\t&quot;Test&quot;,\n\t&quot;command_id&quot;:\t25,\n\t&quot;schedule&quot;:\t&quot;30 15 7 1 * 2026&quot;,\n\t&quot;command_requests&quot;:\t{\n\t\t&quot;cleanlogs_req&quot;:\t{\n\t\t\t&quot;server&quot;:\t{\n\t\t\t},\n\t\t\t&quot;task&quot;:\t{\n\t\t\t},\n\t\t\t&quot;fts&quot;:\t{\n\t\t\t}\n\t\t},\n\t\t&quot;logfilerollover_req&quot;:\t{\n\t\t},\n\t\t&quot;execute_req&quot;:\t{\n\t\t\t&quot;task&quot;:\t&quot;&quot;,\n\t\t\t&quot;operation&quot;:\t&quot;EXECUTE_OPERATIONS_BOTH&quot;,\n\t\t\t&quot;flags&quot;:\t&quot;FRESH&quot;\n\t\t},\n\t\t&quot;stoptask_req&quot;:\t{\n\t\t\t&quot;task&quot;:\t&quot;&quot;\n\t\t}\n\t},\n\t&quot;task&quot;:\t&quot;EIT_T002_OB_RFSB_ACCT_02&quot;,\n\t&quot;enabled&quot;:\tfalse\n}\n<\/pre><\/div>","protected":false},"excerpt":{"rendered":"<p>Introduction To make our lives easier migrating Qlik Replicate tasks from one environment to another; I am looking how to migrate Qlik Replicate schedules. So far&#46;&#46;&#46;<\/p>\n","protected":false},"author":1,"featured_media":1707,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[16],"tags":[101,36],"class_list":["post-1705","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-qlik-replicate","tag-cron","tag-qlikreplicate"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.10 - aioseo.com -->\n\t<meta name=\"description\" content=\"Introduction To make our lives easier migrating Qlik Replicate tasks from one environment to another; I am looking how to migrate Qlik Replicate schedules. So far by GitLab pipelines we can migrate tasks and endpoint; but schedules we must do manually. Quite often we forget to manually create the schedules as they are not as\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"jonny.donker@gmail.com\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/craftcookcode.com\/?p=1705\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.10\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Craft Cook Code - c^3?\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Qlik Replicate Schedules \u2013 a CRON with an extra field? - Craft Cook Code\" \/>\n\t\t<meta property=\"og:description\" content=\"Introduction To make our lives easier migrating Qlik Replicate tasks from one environment to another; I am looking how to migrate Qlik Replicate schedules. So far by GitLab pipelines we can migrate tasks and endpoint; but schedules we must do manually. Quite often we forget to manually create the schedules as they are not as\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/craftcookcode.com\/?p=1705\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2026-01-06T22:06:00+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2026-01-06T22:06:03+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Qlik Replicate Schedules \u2013 a CRON with an extra field? - Craft Cook Code\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Introduction To make our lives easier migrating Qlik Replicate tasks from one environment to another; I am looking how to migrate Qlik Replicate schedules. So far by GitLab pipelines we can migrate tasks and endpoint; but schedules we must do manually. Quite often we forget to manually create the schedules as they are not as\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?p=1705#blogposting\",\"name\":\"Qlik Replicate Schedules \\u2013 a CRON with an extra field? - Craft Cook Code\",\"headline\":\"Qlik Replicate Schedules &#8211; a CRON with an extra field?\",\"author\":{\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?author=1#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/#person\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/craftcookcode.com\\\/wp-content\\\/uploads\\\/2026\\\/01\\\/code_qr_schedules_01.jpeg\",\"width\":1792,\"height\":1024},\"datePublished\":\"2026-01-06T22:06:00+00:00\",\"dateModified\":\"2026-01-06T22:06:03+00:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?p=1705#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?p=1705#webpage\"},\"articleSection\":\"Qlik Replicate, cron, qlikreplicate\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?p=1705#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/craftcookcode.com#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/craftcookcode.com\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?cat=13#listItem\",\"name\":\"Code\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?cat=13#listItem\",\"position\":2,\"name\":\"Code\",\"item\":\"https:\\\/\\\/craftcookcode.com\\\/?cat=13\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?cat=16#listItem\",\"name\":\"Qlik Replicate\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/craftcookcode.com#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?cat=16#listItem\",\"position\":3,\"name\":\"Qlik Replicate\",\"item\":\"https:\\\/\\\/craftcookcode.com\\\/?cat=16\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?p=1705#listItem\",\"name\":\"Qlik Replicate Schedules &#8211; a CRON with an extra field?\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?cat=13#listItem\",\"name\":\"Code\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?p=1705#listItem\",\"position\":4,\"name\":\"Qlik Replicate Schedules &#8211; a CRON with an extra field?\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?cat=16#listItem\",\"name\":\"Qlik Replicate\"}}]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/#person\",\"name\":\"jonny.donker@gmail.com\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?p=1705#personImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/12ea7810156e378894993fa29611c905482263dd05898a50ae5ece294bb6aff0?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"jonny.donker@gmail.com\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?author=1#author\",\"url\":\"https:\\\/\\\/craftcookcode.com\\\/?author=1\",\"name\":\"jonny.donker@gmail.com\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?p=1705#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/12ea7810156e378894993fa29611c905482263dd05898a50ae5ece294bb6aff0?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"jonny.donker@gmail.com\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?p=1705#webpage\",\"url\":\"https:\\\/\\\/craftcookcode.com\\\/?p=1705\",\"name\":\"Qlik Replicate Schedules \\u2013 a CRON with an extra field? - Craft Cook Code\",\"description\":\"Introduction To make our lives easier migrating Qlik Replicate tasks from one environment to another; I am looking how to migrate Qlik Replicate schedules. So far by GitLab pipelines we can migrate tasks and endpoint; but schedules we must do manually. Quite often we forget to manually create the schedules as they are not as\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?p=1705#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?author=1#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?author=1#author\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/craftcookcode.com\\\/wp-content\\\/uploads\\\/2026\\\/01\\\/code_qr_schedules_01.jpeg\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?p=1705\\\/#mainImage\",\"width\":1792,\"height\":1024},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?p=1705#mainImage\"},\"datePublished\":\"2026-01-06T22:06:00+00:00\",\"dateModified\":\"2026-01-06T22:06:03+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/#website\",\"url\":\"https:\\\/\\\/craftcookcode.com\\\/\",\"name\":\"Craft Cook Code\",\"description\":\"c^3?\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/#person\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Qlik Replicate Schedules \u2013 a CRON with an extra field? - Craft Cook Code","description":"Introduction To make our lives easier migrating Qlik Replicate tasks from one environment to another; I am looking how to migrate Qlik Replicate schedules. So far by GitLab pipelines we can migrate tasks and endpoint; but schedules we must do manually. Quite often we forget to manually create the schedules as they are not as","canonical_url":"https:\/\/craftcookcode.com\/?p=1705","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/craftcookcode.com\/?p=1705#blogposting","name":"Qlik Replicate Schedules \u2013 a CRON with an extra field? - Craft Cook Code","headline":"Qlik Replicate Schedules &#8211; a CRON with an extra field?","author":{"@id":"https:\/\/craftcookcode.com\/?author=1#author"},"publisher":{"@id":"https:\/\/craftcookcode.com\/#person"},"image":{"@type":"ImageObject","url":"https:\/\/craftcookcode.com\/wp-content\/uploads\/2026\/01\/code_qr_schedules_01.jpeg","width":1792,"height":1024},"datePublished":"2026-01-06T22:06:00+00:00","dateModified":"2026-01-06T22:06:03+00:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/craftcookcode.com\/?p=1705#webpage"},"isPartOf":{"@id":"https:\/\/craftcookcode.com\/?p=1705#webpage"},"articleSection":"Qlik Replicate, cron, qlikreplicate"},{"@type":"BreadcrumbList","@id":"https:\/\/craftcookcode.com\/?p=1705#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/craftcookcode.com#listItem","position":1,"name":"Home","item":"https:\/\/craftcookcode.com","nextItem":{"@type":"ListItem","@id":"https:\/\/craftcookcode.com\/?cat=13#listItem","name":"Code"}},{"@type":"ListItem","@id":"https:\/\/craftcookcode.com\/?cat=13#listItem","position":2,"name":"Code","item":"https:\/\/craftcookcode.com\/?cat=13","nextItem":{"@type":"ListItem","@id":"https:\/\/craftcookcode.com\/?cat=16#listItem","name":"Qlik Replicate"},"previousItem":{"@type":"ListItem","@id":"https:\/\/craftcookcode.com#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/craftcookcode.com\/?cat=16#listItem","position":3,"name":"Qlik Replicate","item":"https:\/\/craftcookcode.com\/?cat=16","nextItem":{"@type":"ListItem","@id":"https:\/\/craftcookcode.com\/?p=1705#listItem","name":"Qlik Replicate Schedules &#8211; a CRON with an extra field?"},"previousItem":{"@type":"ListItem","@id":"https:\/\/craftcookcode.com\/?cat=13#listItem","name":"Code"}},{"@type":"ListItem","@id":"https:\/\/craftcookcode.com\/?p=1705#listItem","position":4,"name":"Qlik Replicate Schedules &#8211; a CRON with an extra field?","previousItem":{"@type":"ListItem","@id":"https:\/\/craftcookcode.com\/?cat=16#listItem","name":"Qlik Replicate"}}]},{"@type":"Person","@id":"https:\/\/craftcookcode.com\/#person","name":"jonny.donker@gmail.com","image":{"@type":"ImageObject","@id":"https:\/\/craftcookcode.com\/?p=1705#personImage","url":"https:\/\/secure.gravatar.com\/avatar\/12ea7810156e378894993fa29611c905482263dd05898a50ae5ece294bb6aff0?s=96&d=mm&r=g","width":96,"height":96,"caption":"jonny.donker@gmail.com"}},{"@type":"Person","@id":"https:\/\/craftcookcode.com\/?author=1#author","url":"https:\/\/craftcookcode.com\/?author=1","name":"jonny.donker@gmail.com","image":{"@type":"ImageObject","@id":"https:\/\/craftcookcode.com\/?p=1705#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/12ea7810156e378894993fa29611c905482263dd05898a50ae5ece294bb6aff0?s=96&d=mm&r=g","width":96,"height":96,"caption":"jonny.donker@gmail.com"}},{"@type":"WebPage","@id":"https:\/\/craftcookcode.com\/?p=1705#webpage","url":"https:\/\/craftcookcode.com\/?p=1705","name":"Qlik Replicate Schedules \u2013 a CRON with an extra field? - Craft Cook Code","description":"Introduction To make our lives easier migrating Qlik Replicate tasks from one environment to another; I am looking how to migrate Qlik Replicate schedules. So far by GitLab pipelines we can migrate tasks and endpoint; but schedules we must do manually. Quite often we forget to manually create the schedules as they are not as","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/craftcookcode.com\/#website"},"breadcrumb":{"@id":"https:\/\/craftcookcode.com\/?p=1705#breadcrumblist"},"author":{"@id":"https:\/\/craftcookcode.com\/?author=1#author"},"creator":{"@id":"https:\/\/craftcookcode.com\/?author=1#author"},"image":{"@type":"ImageObject","url":"https:\/\/craftcookcode.com\/wp-content\/uploads\/2026\/01\/code_qr_schedules_01.jpeg","@id":"https:\/\/craftcookcode.com\/?p=1705\/#mainImage","width":1792,"height":1024},"primaryImageOfPage":{"@id":"https:\/\/craftcookcode.com\/?p=1705#mainImage"},"datePublished":"2026-01-06T22:06:00+00:00","dateModified":"2026-01-06T22:06:03+00:00"},{"@type":"WebSite","@id":"https:\/\/craftcookcode.com\/#website","url":"https:\/\/craftcookcode.com\/","name":"Craft Cook Code","description":"c^3?","inLanguage":"en-US","publisher":{"@id":"https:\/\/craftcookcode.com\/#person"}}]},"og:locale":"en_US","og:site_name":"Craft Cook Code - c^3?","og:type":"article","og:title":"Qlik Replicate Schedules \u2013 a CRON with an extra field? - Craft Cook Code","og:description":"Introduction To make our lives easier migrating Qlik Replicate tasks from one environment to another; I am looking how to migrate Qlik Replicate schedules. So far by GitLab pipelines we can migrate tasks and endpoint; but schedules we must do manually. Quite often we forget to manually create the schedules as they are not as","og:url":"https:\/\/craftcookcode.com\/?p=1705","article:published_time":"2026-01-06T22:06:00+00:00","article:modified_time":"2026-01-06T22:06:03+00:00","twitter:card":"summary_large_image","twitter:title":"Qlik Replicate Schedules \u2013 a CRON with an extra field? - Craft Cook Code","twitter:description":"Introduction To make our lives easier migrating Qlik Replicate tasks from one environment to another; I am looking how to migrate Qlik Replicate schedules. So far by GitLab pipelines we can migrate tasks and endpoint; but schedules we must do manually. Quite often we forget to manually create the schedules as they are not as"},"aioseo_meta_data":{"post_id":"1705","title":null,"description":null,"keywords":null,"keyphrases":{"focus":{"keyphrase":"","score":0,"analysis":{"keyphraseInTitle":{"score":0,"maxScore":9,"error":1}}},"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"BlogPosting","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":{"faqs":[],"keyPoints":[],"titles":[],"descriptions":[],"socialPosts":{"email":[],"linkedin":[],"twitter":[],"facebook":[],"instagram":[]}},"created":"2026-01-06 21:54:09","updated":"2026-01-06 22:08:25","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/craftcookcode.com\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/craftcookcode.com\/?cat=13\" title=\"Code\">Code<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/craftcookcode.com\/?cat=16\" title=\"Qlik Replicate\">Qlik Replicate<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tQlik Replicate Schedules \u2013 a CRON with an extra field?\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/craftcookcode.com"},{"label":"Code","link":"https:\/\/craftcookcode.com\/?cat=13"},{"label":"Qlik Replicate","link":"https:\/\/craftcookcode.com\/?cat=16"},{"label":"Qlik Replicate Schedules &#8211; a CRON with an extra field?","link":"https:\/\/craftcookcode.com\/?p=1705"}],"_links":{"self":[{"href":"https:\/\/craftcookcode.com\/index.php?rest_route=\/wp\/v2\/posts\/1705","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/craftcookcode.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/craftcookcode.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/craftcookcode.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/craftcookcode.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=1705"}],"version-history":[{"count":2,"href":"https:\/\/craftcookcode.com\/index.php?rest_route=\/wp\/v2\/posts\/1705\/revisions"}],"predecessor-version":[{"id":1709,"href":"https:\/\/craftcookcode.com\/index.php?rest_route=\/wp\/v2\/posts\/1705\/revisions\/1709"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/craftcookcode.com\/index.php?rest_route=\/wp\/v2\/media\/1707"}],"wp:attachment":[{"href":"https:\/\/craftcookcode.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1705"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/craftcookcode.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=1705"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/craftcookcode.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=1705"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}