{"id":3707,"date":"2026-03-16T14:18:00","date_gmt":"2026-03-16T14:18:00","guid":{"rendered":"https:\/\/developers.maplink.global\/?p=3707"},"modified":"2026-05-13T20:35:17","modified_gmt":"2026-05-13T20:35:17","slug":"example-3-multi-day-routes","status":"publish","type":"post","link":"https:\/\/developers.maplink.global\/en\/example-3-multi-day-routes\/","title":{"rendered":"Example 3 \u2013 Multi-Day Routes"},"content":{"rendered":"\n<ul class=\"wp-block-list\">\n<li><a href=\"#description\" data-type=\"internal\" data-id=\"#description\">Description of the problem<\/a><\/li>\n\n\n\n<li><a href=\"#request\">Request<\/a><\/li>\n\n\n\n<li><a href=\"#solution\">Solution to the logistics problem<\/a><\/li>\n\n\n\n<li><a href=\"#response\" data-type=\"internal\" data-id=\"#response\">Response<\/a><\/li>\n<\/ul>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"description\"><strong>Description of the problem<\/strong><\/h3>\n\n\n\n<p>In this example, we have a request to solve a logistics problem for a company that operates a fleet composed of <strong>1 VUC-type vehicle and 15 delivery service orders<\/strong> in the northeast region of Brazil. The planning considers multiple days, respecting legal regulations regarding driving breaks and daily working hours.<\/p>\n\n\n\n<p>Among the 15 deliveries, all have a wide time window spanning 3 days, which provides flexibility for the driver to comply with mandatory breaks.<\/p>\n\n\n\n<p>There are no specific volume or weight restrictions beyond the driver\u2019s working time window, and each delivery has a customer handling time of <strong>900 seconds (15 minutes)<\/strong>.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td class=\"has-text-align-center\" data-align=\"center\"><img loading=\"lazy\" decoding=\"async\" width=\"44\" height=\"54\" src=\"https:\/\/developers.maplink.global\/wp-content\/uploads\/2023\/12\/ba77dadf-a75f-413d-97a8-6b5ccec2e65b.png\" alt=\"\"><br><strong>15<\/strong><br>DELIVERY LOCATIONS<\/td><td class=\"has-text-align-center\" data-align=\"center\"><img loading=\"lazy\" decoding=\"async\" width=\"54\" height=\"56\" src=\"https:\/\/developers.maplink.global\/wp-content\/uploads\/2023\/12\/bddb55a4-3804-4eb9-b5b8-7b903e1eac65.png\" alt=\"\"><br><strong>1<\/strong><br>DEPOT<\/td><td class=\"has-text-align-center\" data-align=\"center\"><img loading=\"lazy\" decoding=\"async\" width=\"67\" height=\"46\" src=\"https:\/\/developers.maplink.global\/wp-content\/uploads\/2023\/12\/955c5b4b-8816-4c49-b094-1fdf9d0713d5.png\" alt=\"\"><br><strong>1<\/strong><br>VUC 3\/4 TRUCK<\/td><td class=\"has-text-align-center\" data-align=\"center\"><img loading=\"lazy\" decoding=\"async\" width=\"55\" height=\"48\" src=\"https:\/\/developers.maplink.global\/wp-content\/uploads\/2023\/12\/da447111-f132-412a-8032-675d4e1e5f53.png\" alt=\"\"><br><strong>15<\/strong><br>ORDERS<\/td><\/tr><\/tbody><\/table><figcaption class=\"wp-element-caption\">Description of the problem<\/figcaption><\/figure>\n\n\n\n<p>The 15 delivery locations are distributed across the state of Bahia, in the Northeast region of Brazil. The vehicle must start and return to the \u201cBahia Vidros\u201d depot, complying with legal regulations related to driving and working hours.<\/p>\n\n\n\n<p>The planning considers the following restrictions: a <strong>maximum continuous driving time of 3h45min before a mandatory 1-hour break, a maximum continuous working time of 8 hours before a 15-hour rest period<\/strong>, in addition to <strong>mandatory daily breaks<\/strong>.<\/p>\n\n\n\n<p>These restrictions are defined in the <a href=\"https:\/\/developers.maplink.global\/en\/list-of-parameters-planning\/#legislationProfiles\"><code>legistlationProfiles<\/code><\/a> parameter, as shown in the example below:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"json\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">\"legislationProfiles\": [\n    {\n      \"name\": \"DEFAULT\",\n      \"maxContinuousDrivingTime\": 13500,\n      \"drivingPauseDuration\": 3600,\n      \"maxContinuousWorkingTime\": 28800,\n      \"workingPauseDuration\": 54000\n    }\n  ]<\/pre>\n\n\n\n<p>Finally, the created legislation profile must be referenced in the vehicles declared in the <code>vehicles<\/code> parameter, as shown in the example below:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"json\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">\"vehicles\": [\n        {\n            \"name\": \"TMP-3020\",\n            \"vehicleType\": \"VUC\",\n            \"legislationProfile\": \"DEFAULT\",\n            \"availablePeriods\": [\n                {\n                    \"departureSite\": \"Bahia Vidros\",\n                    \"arrivalSite\": \"Bahia Vidros\",\n                    \"timeWindow\": {\n                        \"start\": 1603364400000,\n                        \"end\": 1603659600000\n                    }\n                }\n            ]\n        }\n    ]<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"request\">Request<\/h3>\n\n\n\n<p>The full request can be seen below:<\/p>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"json\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">{\n    \"optimizationProfile\": \"BRAZIL46\",\n    \"tripsProfile\": \"MAPLINKBR\",\n    \"startDate\": 1603364400000,\n    \"products\": [\n        {\n            \"name\": \"DEFAULT\"\n        }\n    ],\n    \"legislationProfiles\": [\n        {\n            \"name\": \"DEFAULT\",\n            \"maxContinuousDrivingTime\": 13500,\n            \"drivingPauseDuration\": 3600,\n            \"maxContinuousWorkingTime\": 28800,\n            \"workingPauseDuration\": 54000\n        }\n    ],\n    \"logisticConstraints\": [\n        {\n            \"name\": \"DEFAULT\"\n        }\n    ],\n    \"depots\": [\n        {\n            \"name\": \"Bahia Vidros\",\n            \"coordinates\": {\n                \"latitude\": -12.9850539,\n                \"longitude\": -39.2946463\n            },\n            \"logisticConstraints\": \"DEFAULT\"\n        }\n    ],\n    \"vehicleTypes\": [\n        {\n            \"name\": \"VUC\",\n            \"maxVolume\": 20,\n            \"maxWeight\": 1200,\n            \"size\": 1\n        }\n    ],\n    \"vehicles\": [\n        {\n            \"name\": \"TMP-3020\",\n            \"vehicleType\": \"VUC\",\n            \"legislationProfile\": \"DEFAULT\",\n            \"availablePeriods\": [\n                {\n                    \"departureSite\": \"Bahia Vidros\",\n                    \"arrivalSite\": \"Bahia Vidros\",\n                    \"timeWindow\": {\n                        \"start\": 1603364400000,\n                        \"end\": 1603659600000\n                    }\n                }\n            ]\n        }\n    ],\n    \"sites\": [\n        {\n            \"name\": \"Penha vidros\",\n            \"coordinates\": {\n                \"latitude\": -14.2805954,\n                \"longitude\": -38.9900972\n            },\n            \"logisticConstraints\": \"DEFAULT\"\n        },\n        {\n            \"name\": \"Nadson Sena\",\n            \"coordinates\": {\n                \"latitude\": -15.4168545,\n                \"longitude\": -39.4983672\n            },\n            \"logisticConstraints\": \"DEFAULT\"\n        },\n        {\n            \"name\": \"Vidra\u00e7aria Cabral\",\n            \"coordinates\": {\n                \"latitude\": -16.372485,\n                \"longitude\": -39.5867328\n            },\n            \"logisticConstraints\": \"DEFAULT\"\n        },\n        {\n            \"name\": \"MUNDO DOS VIDROS\",\n            \"coordinates\": {\n                \"latitude\": -16.4444137,\n                \"longitude\": -39.0698734\n            },\n            \"logisticConstraints\": \"DEFAULT\"\n        },\n        {\n            \"name\": \"Vidros &amp; Cia\",\n            \"coordinates\": {\n                \"latitude\": -16.4511815,\n                \"longitude\": -39.065805\n            },\n            \"logisticConstraints\": \"DEFAULT\"\n        },\n        {\n            \"name\": \"ESQUAVIDROS\",\n            \"coordinates\": {\n                \"latitude\": -16.4443537,\n                \"longitude\": -39.0653656\n            },\n            \"logisticConstraints\": \"DEFAULT\"\n        },\n        {\n            \"name\": \"MM CONSTRUTORA E INCORPORADORA LTDA\",\n            \"coordinates\": {\n                \"latitude\": -16.4184717,\n                \"longitude\": -39.0883174\n            },\n            \"logisticConstraints\": \"DEFAULT\"\n        },\n        {\n            \"name\": \"SERRALHERIA TRES IRMAOS\",\n            \"coordinates\": {\n                \"latitude\": -15.8639043,\n                \"longitude\": -38.876611\n            },\n            \"logisticConstraints\": \"DEFAULT\"\n        },\n        {\n            \"name\": \"MARCIO DOS SANTOS NASCIMENTO 9\",\n            \"coordinates\": {\n                \"latitude\": -15.6655186,\n                \"longitude\": -38.9495478\n            },\n            \"logisticConstraints\": \"DEFAULT\"\n        },\n        {\n            \"name\": \"JONES SANTOS BRAZ\",\n            \"coordinates\": {\n                \"latitude\": -15.2895054,\n                \"longitude\": -39.0670267\n            },\n            \"logisticConstraints\": \"DEFAULT\"\n        },\n        {\n            \"name\": \"UNA VIDROS\",\n            \"coordinates\": {\n                \"latitude\": -15.2900986,\n                \"longitude\": -39.06667230000001\n            },\n            \"logisticConstraints\": \"DEFAULT\"\n        },\n        {\n            \"name\": \"METALVIDROS\",\n            \"coordinates\": {\n                \"latitude\": -14.785113,\n                \"longitude\": -39.2603036\n            },\n            \"logisticConstraints\": \"DEFAULT\"\n        },\n        {\n            \"name\": \"VIDRACARIA IMPERIO\",\n            \"coordinates\": {\n                \"latitude\": -14.7822245,\n                \"longitude\": -39.2835594\n            },\n            \"logisticConstraints\": \"DEFAULT\"\n        },\n        {\n            \"name\": \"VIDRACARIA DIAMANTE (MENEZES )\",\n            \"coordinates\": {\n                \"latitude\": -14.8094166,\n                \"longitude\": -39.2749927\n            },\n            \"logisticConstraints\": \"DEFAULT\"\n        },\n        {\n            \"name\": \"IMPERIAL MARMORARIA E VIDRACARIA\",\n            \"coordinates\": {\n                \"latitude\": -14.8180948,\n                \"longitude\": -39.2928816\n            },\n            \"logisticConstraints\": \"DEFAULT\"\n        }\n    ],\n    \"operations\": [\n        {\n            \"id\": \"5f91c86c2774500fa36af00c\",\n            \"depotSite\": \"Bahia Vidros\",\n            \"customerSite\": \"Penha vidros\",\n            \"product\": \"DEFAULT\",\n            \"type\": \"DELIVERY\",\n            \"volume\": 0,\n            \"weight\": 0,\n            \"customerHandlingDuration\": 900,\n            \"customerTimeWindows\": [\n                {\n                    \"start\": 1603364400000,\n                    \"end\": 1603659600000\n                }\n            ]\n        },\n        {\n            \"id\": \"5f91c8c52774500fa36af00d\",\n            \"depotSite\": \"Bahia Vidros\",\n            \"customerSite\": \"Nadson Sena\",\n            \"product\": \"DEFAULT\",\n            \"type\": \"DELIVERY\",\n            \"volume\": 0,\n            \"weight\": 0,\n            \"customerHandlingDuration\": 900,\n            \"customerTimeWindows\": [\n                {\n                    \"start\": 1603364400000,\n                    \"end\": 1603659600000\n                }\n            ]\n        },\n        {\n            \"id\": \"5f91c8e02774500fa36af00e\",\n            \"depotSite\": \"Bahia Vidros\",\n            \"customerSite\": \"Vidra\u00e7aria Cabral\",\n            \"product\": \"DEFAULT\",\n            \"type\": \"DELIVERY\",\n            \"volume\": 0,\n            \"weight\": 0,\n            \"customerHandlingDuration\": 900,\n            \"customerTimeWindows\": [\n                {\n                    \"start\": 1603364400000,\n                    \"end\": 1603659600000\n                }\n            ]\n        },\n        {\n            \"id\": \"5f91c9002774500fa36af00f\",\n            \"depotSite\": \"Bahia Vidros\",\n            \"customerSite\": \"MUNDO DOS VIDROS\",\n            \"product\": \"DEFAULT\",\n            \"type\": \"DELIVERY\",\n            \"volume\": 0,\n            \"weight\": 0,\n            \"customerHandlingDuration\": 900,\n            \"customerTimeWindows\": [\n                {\n                    \"start\": 1603364400000,\n                    \"end\": 1603659600000\n                }\n            ]\n        },\n        {\n            \"id\": \"5f91c9312774500fa36af010\",\n            \"depotSite\": \"Bahia Vidros\",\n            \"customerSite\": \"Vidros &amp; Cia\",\n            \"product\": \"DEFAULT\",\n            \"type\": \"DELIVERY\",\n            \"volume\": 0,\n            \"weight\": 0,\n            \"customerHandlingDuration\": 900,\n            \"customerTimeWindows\": [\n                {\n                    \"start\": 1603364400000,\n                    \"end\": 1603659600000\n                }\n            ]\n        },\n        {\n            \"id\": \"5f91c9512774500fa36af011\",\n            \"depotSite\": \"Bahia Vidros\",\n            \"customerSite\": \"ESQUAVIDROS\",\n            \"product\": \"DEFAULT\",\n            \"type\": \"DELIVERY\",\n            \"volume\": 0,\n            \"weight\": 0,\n            \"customerHandlingDuration\": 900,\n            \"customerTimeWindows\": [\n                {\n                    \"start\": 1603364400000,\n                    \"end\": 1603659600000\n                }\n            ]\n        },\n        {\n            \"id\": \"5f91c98b2774500fa36af012\",\n            \"depotSite\": \"Bahia Vidros\",\n            \"customerSite\": \"MM CONSTRUTORA E INCORPORADORA LTDA\",\n            \"product\": \"DEFAULT\",\n            \"type\": \"DELIVERY\",\n            \"volume\": 0,\n            \"weight\": 0,\n            \"customerHandlingDuration\": 900,\n            \"customerTimeWindows\": [\n                {\n                    \"start\": 1603364400000,\n                    \"end\": 1603659600000\n                }\n            ]\n        },\n        {\n            \"id\": \"5f91c9a02774500fa36af013\",\n            \"depotSite\": \"Bahia Vidros\",\n            \"customerSite\": \"SERRALHERIA TRES IRMAOS\",\n            \"product\": \"DEFAULT\",\n            \"type\": \"DELIVERY\",\n            \"volume\": 0,\n            \"weight\": 0,\n            \"customerHandlingDuration\": 900,\n            \"customerTimeWindows\": [\n                {\n                    \"start\": 1603364400000,\n                    \"end\": 1603659600000\n                }\n            ]\n        },\n        {\n            \"id\": \"5f91c9be2774500fa36af014\",\n            \"depotSite\": \"Bahia Vidros\",\n            \"customerSite\": \"MARCIO DOS SANTOS NASCIMENTO 9\",\n            \"product\": \"DEFAULT\",\n            \"type\": \"DELIVERY\",\n            \"volume\": 0,\n            \"weight\": 0,\n            \"customerHandlingDuration\": 900,\n            \"customerTimeWindows\": [\n                {\n                    \"start\": 1603364400000,\n                    \"end\": 1603659600000\n                }\n            ]\n        },\n        {\n            \"id\": \"5f91c9d72774500fa36af015\",\n            \"depotSite\": \"Bahia Vidros\",\n            \"customerSite\": \"JONES SANTOS BRAZ\",\n            \"product\": \"DEFAULT\",\n            \"type\": \"DELIVERY\",\n            \"volume\": 0,\n            \"weight\": 0,\n            \"customerHandlingDuration\": 900,\n            \"customerTimeWindows\": [\n                {\n                    \"start\": 1603364400000,\n                    \"end\": 1603659600000\n                }\n            ]\n        },\n        {\n            \"id\": \"5f91c9f02774500fa36af016\",\n            \"depotSite\": \"Bahia Vidros\",\n            \"customerSite\": \"UNA VIDROS\",\n            \"product\": \"DEFAULT\",\n            \"type\": \"DELIVERY\",\n            \"volume\": 0,\n            \"weight\": 0,\n            \"customerHandlingDuration\": 900,\n            \"customerTimeWindows\": [\n                {\n                    \"start\": 1603364400000,\n                    \"end\": 1603659600000\n                }\n            ]\n        },\n        {\n            \"id\": \"5f91ca102774500fa36af017\",\n            \"depotSite\": \"Bahia Vidros\",\n            \"customerSite\": \"METALVIDROS\",\n            \"product\": \"DEFAULT\",\n            \"type\": \"DELIVERY\",\n            \"volume\": 0,\n            \"weight\": 0,\n            \"customerHandlingDuration\": 900,\n            \"customerTimeWindows\": [\n                {\n                    \"start\": 1603364400000,\n                    \"end\": 1603659600000\n                }\n            ]\n        },\n        {\n            \"id\": \"5f91ca242774500fa36af018\",\n            \"depotSite\": \"Bahia Vidros\",\n            \"customerSite\": \"VIDRACARIA IMPERIO\",\n            \"product\": \"DEFAULT\",\n            \"type\": \"DELIVERY\",\n            \"volume\": 0,\n            \"weight\": 0,\n            \"customerHandlingDuration\": 900,\n            \"customerTimeWindows\": [\n                {\n                    \"start\": 1603364400000,\n                    \"end\": 1603659600000\n                }\n            ]\n        },\n        {\n            \"id\": \"5f91ca542774500fa36af019\",\n            \"depotSite\": \"Bahia Vidros\",\n            \"customerSite\": \"VIDRACARIA DIAMANTE (MENEZES )\",\n            \"product\": \"DEFAULT\",\n            \"type\": \"DELIVERY\",\n            \"volume\": 0,\n            \"weight\": 0,\n            \"customerHandlingDuration\": 900,\n            \"customerTimeWindows\": [\n                {\n                    \"start\": 1603364400000,\n                    \"end\": 1603659600000\n                }\n            ]\n        },\n        {\n            \"id\": \"5f91ca862774500fa36af01a\",\n            \"depotSite\": \"Bahia Vidros\",\n            \"customerSite\": \"IMPERIAL MARMORARIA E VIDRACARIA\",\n            \"product\": \"DEFAULT\",\n            \"type\": \"DELIVERY\",\n            \"volume\": 0,\n            \"weight\": 0,\n            \"customerHandlingDuration\": 900,\n            \"customerTimeWindows\": [\n                {\n                    \"start\": 1603364400000,\n                    \"end\": 1603659600000\n                }\n            ]\n        }\n    ]\n}<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"solution\"><strong>Solution to the logistics problem<\/strong><\/h3>\n\n\n\n<p>The API response will be returned in <strong>JSON <\/strong>format, containing the best sequencing of delivery operations for the vehicle, considering breaks (after <strong>3h45min of driving<\/strong>) and <strong>overnight rest periods<\/strong> (after <strong>8 hours of work<\/strong>).<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"793\" height=\"597\" src=\"https:\/\/developers.maplink.global\/wp-content\/uploads\/2026\/03\/image.png\" alt=\"\" class=\"wp-image-3750\" srcset=\"https:\/\/developers.maplink.global\/wp-content\/uploads\/2026\/03\/image.png 793w, https:\/\/developers.maplink.global\/wp-content\/uploads\/2026\/03\/image-300x226.png 300w, https:\/\/developers.maplink.global\/wp-content\/uploads\/2026\/03\/image-768x578.png 768w\" sizes=\"auto, (max-width: 793px) 100vw, 793px\" \/><figcaption class=\"wp-element-caption\">Route visualization on the map<\/figcaption><\/figure>\n\n\n\n<p>Breaks will be returned in <code>vehicleRoutes[n].routes[n].activities<\/code>, identified as <code>\"activity\": \"PAUSE\"<\/code>. The first break represents the moment when the driver stops for lunch after reaching the 3h45min continuous driving limit defined in <code>maxContinuousDrivingTime<\/code>. The second represents the moment when the driver stops working to rest after reaching the 8-hour working limit defined in <code>maxContinuousWorkingTime<\/code>.<\/p>\n\n\n\n<p>In the example, the driver starts the workday at <strong>08:00 on 10\/22<\/strong>, drives for approximately <strong>3h45min<\/strong>, completes some deliveries, and takes a <strong>1-hour lunch break<\/strong>. After that, the driver resumes activities until 17:00, when the workday ends and the rest period begins until <strong>08:00 on the following day<\/strong>.<\/p>\n\n\n\n<p>This pattern repeats on subsequent days, with the breaks properly incorporated into the planning to ensure compliance with the legislation.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"response\">Response<\/h3>\n\n\n\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"json\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">{\n    \"id\": \"69dd698b8620796cf45f0059\",\n    \"clientId\": \"maplink\",\n    \"vehicleRoutes\": [\n        {\n            \"routes\": [\n                {\n                    \"id\": \"NewRoute_1_1\",\n                    \"activities\": [\n                        {\n                            \"activity\": \"ROUTE_START\",\n                            \"timeWindow\": {\n                                \"start\": 1603364400000,\n                                \"end\": 1603364400000\n                            },\n                            \"type\": \"SITE\",\n                            \"site\": \"Bahia Vidros\",\n                            \"operations\": []\n                        },\n                        {\n                            \"activity\": \"LOADING\",\n                            \"timeWindow\": {\n                                \"start\": 1603364400000,\n                                \"end\": 1603364400000\n                            },\n                            \"type\": \"SITE\",\n                            \"site\": \"Bahia Vidros\",\n                            \"fixedTimeSite\": 0,\n                            \"volume\": 0.0,\n                            \"weight\": 0.0,\n                            \"operations\": [\n                                \"5f91c9f02774500fa36af016\",\n                                \"5f91c86c2774500fa36af00c\",\n                                \"5f91ca242774500fa36af018\",\n                                \"5f91ca102774500fa36af017\",\n                                \"5f91ca542774500fa36af019\",\n                                \"5f91ca862774500fa36af01a\",\n                                \"5f91c9d72774500fa36af015\",\n                                \"5f91c8c52774500fa36af00d\",\n                                \"5f91c9be2774500fa36af014\",\n                                \"5f91c8e02774500fa36af00e\",\n                                \"5f91c9a02774500fa36af013\",\n                                \"5f91c98b2774500fa36af012\",\n                                \"5f91c9512774500fa36af011\",\n                                \"5f91c9312774500fa36af010\",\n                                \"5f91c9002774500fa36af00f\"\n                            ]\n                        },\n                        {\n                            \"activity\": \"DRIVING\",\n                            \"timeWindow\": {\n                                \"start\": 1603364400000,\n                                \"end\": 1603375982000\n                            },\n                            \"type\": \"DRIVING\",\n                            \"operations\": [],\n                            \"arrivalSite\": \"Penha vidros\",\n                            \"departureSite\": \"Bahia Vidros\",\n                            \"distance\": 198885,\n                            \"nominalDuration\": 11582\n                        },\n                        {\n                            \"activity\": \"DELIVERY\",\n                            \"timeWindow\": {\n                                \"start\": 1603375982000,\n                                \"end\": 1603376882000\n                            },\n                            \"type\": \"SITE\",\n                            \"site\": \"Penha vidros\",\n                            \"fixedTimeSite\": 0,\n                            \"volume\": 0.0,\n                            \"weight\": 0.0,\n                            \"operations\": [\n                                \"5f91c86c2774500fa36af00c\"\n                            ]\n                        },\n                        {\n                            \"activity\": \"DRIVING\",\n                            \"timeWindow\": {\n                                \"start\": 1603376882000,\n                                \"end\": 1603378800000\n                            },\n                            \"type\": \"DRIVING\",\n                            \"operations\": [],\n                            \"arrivalSite\": \"UNA VIDROS\",\n                            \"departureSite\": \"Penha vidros\",\n                            \"distance\": 31812,\n                            \"nominalDuration\": 1918\n                        },\n                        {\n                            \"activity\": \"PAUSE\",\n                            \"timeWindow\": {\n                                \"start\": 1603378800000,\n                                \"end\": 1603382400000\n                            },\n                            \"type\": \"SITE\",\n                            \"site\": \"UNA VIDROS\",\n                            \"operations\": []\n                        },\n                        {\n                            \"activity\": \"DRIVING\",\n                            \"timeWindow\": {\n                                \"start\": 1603382400000,\n                                \"end\": 1603388537000\n                            },\n                            \"type\": \"DRIVING\",\n                            \"operations\": [],\n                            \"arrivalSite\": \"UNA VIDROS\",\n                            \"departureSite\": \"UNA VIDROS\",\n                            \"distance\": 101788,\n                            \"nominalDuration\": 6137\n                        },\n                        {\n                            \"activity\": \"DELIVERY\",\n                            \"timeWindow\": {\n                                \"start\": 1603388537000,\n                                \"end\": 1603389437000\n                            },\n                            \"type\": \"SITE\",\n                            \"site\": \"UNA VIDROS\",\n                            \"fixedTimeSite\": 0,\n                            \"volume\": 0.0,\n                            \"weight\": 0.0,\n                            \"operations\": [\n                                \"5f91c9f02774500fa36af016\"\n                            ]\n                        },\n                        {\n                            \"activity\": \"DRIVING\",\n                            \"timeWindow\": {\n                                \"start\": 1603389437000,\n                                \"end\": 1603389453000\n                            },\n                            \"type\": \"DRIVING\",\n                            \"operations\": [],\n                            \"arrivalSite\": \"JONES SANTOS BRAZ\",\n                            \"departureSite\": \"UNA VIDROS\",\n                            \"distance\": 87,\n                            \"nominalDuration\": 16\n                        },\n                        {\n                            \"activity\": \"DELIVERY\",\n                            \"timeWindow\": {\n                                \"start\": 1603389453000,\n                                \"end\": 1603390353000\n                            },\n                            \"type\": \"SITE\",\n                            \"site\": \"JONES SANTOS BRAZ\",\n                            \"fixedTimeSite\": 0,\n                            \"volume\": 0.0,\n                            \"weight\": 0.0,\n                            \"operations\": [\n                                \"5f91c9d72774500fa36af015\"\n                            ]\n                        },\n                        {\n                            \"activity\": \"DRIVING\",\n                            \"timeWindow\": {\n                                \"start\": 1603390353000,\n                                \"end\": 1603393577000\n                            },\n                            \"type\": \"DRIVING\",\n                            \"operations\": [],\n                            \"arrivalSite\": \"MARCIO DOS SANTOS NASCIMENTO 9\",\n                            \"departureSite\": \"JONES SANTOS BRAZ\",\n                            \"distance\": 55342,\n                            \"nominalDuration\": 3224\n                        },\n                        {\n                            \"activity\": \"DELIVERY\",\n                            \"timeWindow\": {\n                                \"start\": 1603393577000,\n                                \"end\": 1603394477000\n                            },\n                            \"type\": \"SITE\",\n                            \"site\": \"MARCIO DOS SANTOS NASCIMENTO 9\",\n                            \"fixedTimeSite\": 0,\n                            \"volume\": 0.0,\n                            \"weight\": 0.0,\n                            \"operations\": [\n                                \"5f91c9be2774500fa36af014\"\n                            ]\n                        },\n                        {\n                            \"activity\": \"DRIVING\",\n                            \"timeWindow\": {\n                                \"start\": 1603394477000,\n                                \"end\": 1603396800000\n                            },\n                            \"type\": \"DRIVING\",\n                            \"operations\": [],\n                            \"arrivalSite\": \"SERRALHERIA TRES IRMAOS\",\n                            \"departureSite\": \"MARCIO DOS SANTOS NASCIMENTO 9\",\n                            \"distance\": 29593,\n                            \"nominalDuration\": 2323\n                        },\n                        {\n                            \"activity\": \"PAUSE\",\n                            \"timeWindow\": {\n                                \"start\": 1603396800000,\n                                \"end\": 1603450800000\n                            },\n                            \"type\": \"SITE\",\n                            \"site\": \"SERRALHERIA TRES IRMAOS\",\n                            \"operations\": []\n                        },\n                        {\n                            \"activity\": \"DRIVING\",\n                            \"timeWindow\": {\n                                \"start\": 1603450800000,\n                                \"end\": 1603462510000\n                            },\n                            \"type\": \"DRIVING\",\n                            \"operations\": [],\n                            \"arrivalSite\": \"SERRALHERIA TRES IRMAOS\",\n                            \"departureSite\": \"SERRALHERIA TRES IRMAOS\",\n                            \"distance\": 149175,\n                            \"nominalDuration\": 11710\n                        },\n                        {\n                            \"activity\": \"DELIVERY\",\n                            \"timeWindow\": {\n                                \"start\": 1603462510000,\n                                \"end\": 1603463410000\n                            },\n                            \"type\": \"SITE\",\n                            \"site\": \"SERRALHERIA TRES IRMAOS\",\n                            \"fixedTimeSite\": 0,\n                            \"volume\": 0.0,\n                            \"weight\": 0.0,\n                            \"operations\": [\n                                \"5f91c9a02774500fa36af013\"\n                            ]\n                        },\n                        {\n                            \"activity\": \"DRIVING\",\n                            \"timeWindow\": {\n                                \"start\": 1603463410000,\n                                \"end\": 1603465200000\n                            },\n                            \"type\": \"DRIVING\",\n                            \"operations\": [],\n                            \"arrivalSite\": \"Vidros &amp; Cia\",\n                            \"departureSite\": \"SERRALHERIA TRES IRMAOS\",\n                            \"distance\": 24586,\n                            \"nominalDuration\": 1790\n                        },\n                        {\n                            \"activity\": \"PAUSE\",\n                            \"timeWindow\": {\n                                \"start\": 1603465200000,\n                                \"end\": 1603468800000\n                            },\n                            \"type\": \"SITE\",\n                            \"site\": \"Vidros &amp; Cia\",\n                            \"operations\": []\n                        },\n                        {\n                            \"activity\": \"DRIVING\",\n                            \"timeWindow\": {\n                                \"start\": 1603468800000,\n                                \"end\": 1603472510000\n                            },\n                            \"type\": \"DRIVING\",\n                            \"operations\": [],\n                            \"arrivalSite\": \"Vidros &amp; Cia\",\n                            \"departureSite\": \"Vidros &amp; Cia\",\n                            \"distance\": 50958,\n                            \"nominalDuration\": 3710\n                        },\n                        {\n                            \"activity\": \"DELIVERY\",\n                            \"timeWindow\": {\n                                \"start\": 1603472510000,\n                                \"end\": 1603473410000\n                            },\n                            \"type\": \"SITE\",\n                            \"site\": \"Vidros &amp; Cia\",\n                            \"fixedTimeSite\": 0,\n                            \"volume\": 0.0,\n                            \"weight\": 0.0,\n                            \"operations\": [\n                                \"5f91c9312774500fa36af010\"\n                            ]\n                        },\n                        {\n                            \"activity\": \"DRIVING\",\n                            \"timeWindow\": {\n                                \"start\": 1603473410000,\n                                \"end\": 1603473588000\n                            },\n                            \"type\": \"DRIVING\",\n                            \"operations\": [],\n                            \"arrivalSite\": \"ESQUAVIDROS\",\n                            \"departureSite\": \"Vidros &amp; Cia\",\n                            \"distance\": 1890,\n                            \"nominalDuration\": 178\n                        },\n                        {\n                            \"activity\": \"DELIVERY\",\n                            \"timeWindow\": {\n                                \"start\": 1603473588000,\n                                \"end\": 1603474488000\n                            },\n                            \"type\": \"SITE\",\n                            \"site\": \"ESQUAVIDROS\",\n                            \"fixedTimeSite\": 0,\n                            \"volume\": 0.0,\n                            \"weight\": 0.0,\n                            \"operations\": [\n                                \"5f91c9512774500fa36af011\"\n                            ]\n                        },\n                        {\n                            \"activity\": \"DRIVING\",\n                            \"timeWindow\": {\n                                \"start\": 1603474488000,\n                                \"end\": 1603474619000\n                            },\n                            \"type\": \"DRIVING\",\n                            \"operations\": [],\n                            \"arrivalSite\": \"MUNDO DOS VIDROS\",\n                            \"departureSite\": \"ESQUAVIDROS\",\n                            \"distance\": 1015,\n                            \"nominalDuration\": 131\n                        },\n                        {\n                            \"activity\": \"DELIVERY\",\n                            \"timeWindow\": {\n                                \"start\": 1603474619000,\n                                \"end\": 1603475519000\n                            },\n                            \"type\": \"SITE\",\n                            \"site\": \"MUNDO DOS VIDROS\",\n                            \"fixedTimeSite\": 0,\n                            \"volume\": 0.0,\n                            \"weight\": 0.0,\n                            \"operations\": [\n                                \"5f91c9002774500fa36af00f\"\n                            ]\n                        },\n                        {\n                            \"activity\": \"DRIVING\",\n                            \"timeWindow\": {\n                                \"start\": 1603475519000,\n                                \"end\": 1603476283000\n                            },\n                            \"type\": \"DRIVING\",\n                            \"operations\": [],\n                            \"arrivalSite\": \"MM CONSTRUTORA E INCORPORADORA LTDA\",\n                            \"departureSite\": \"MUNDO DOS VIDROS\",\n                            \"distance\": 6529,\n                            \"nominalDuration\": 764\n                        },\n                        {\n                            \"activity\": \"DELIVERY\",\n                            \"timeWindow\": {\n                                \"start\": 1603476283000,\n                                \"end\": 1603477183000\n                            },\n                            \"type\": \"SITE\",\n                            \"site\": \"MM CONSTRUTORA E INCORPORADORA LTDA\",\n                            \"fixedTimeSite\": 0,\n                            \"volume\": 0.0,\n                            \"weight\": 0.0,\n                            \"operations\": [\n                                \"5f91c98b2774500fa36af012\"\n                            ]\n                        },\n                        {\n                            \"activity\": \"DRIVING\",\n                            \"timeWindow\": {\n                                \"start\": 1603477183000,\n                                \"end\": 1603480854000\n                            },\n                            \"type\": \"DRIVING\",\n                            \"operations\": [],\n                            \"arrivalSite\": \"Vidra?aria Cabral\",\n                            \"departureSite\": \"MM CONSTRUTORA E INCORPORADORA LTDA\",\n                            \"distance\": 59915,\n                            \"nominalDuration\": 3671\n                        },\n                        {\n                            \"activity\": \"DELIVERY\",\n                            \"timeWindow\": {\n                                \"start\": 1603480854000,\n                                \"end\": 1603481754000\n                            },\n                            \"type\": \"SITE\",\n                            \"site\": \"Vidra?aria Cabral\",\n                            \"fixedTimeSite\": 0,\n                            \"volume\": 0.0,\n                            \"weight\": 0.0,\n                            \"operations\": [\n                                \"5f91c8e02774500fa36af00e\"\n                            ]\n                        },\n                        {\n                            \"activity\": \"DRIVING\",\n                            \"timeWindow\": {\n                                \"start\": 1603481754000,\n                                \"end\": 1603483200000\n                            },\n                            \"type\": \"DRIVING\",\n                            \"operations\": [],\n                            \"arrivalSite\": \"Nadson Sena\",\n                            \"departureSite\": \"Vidra?aria Cabral\",\n                            \"distance\": 26462,\n                            \"nominalDuration\": 1446\n                        },\n                        {\n                            \"activity\": \"PAUSE\",\n                            \"timeWindow\": {\n                                \"start\": 1603483200000,\n                                \"end\": 1603537200000\n                            },\n                            \"type\": \"SITE\",\n                            \"site\": \"Nadson Sena\",\n                            \"operations\": []\n                        },\n                        {\n                            \"activity\": \"DRIVING\",\n                            \"timeWindow\": {\n                                \"start\": 1603537200000,\n                                \"end\": 1603543385000\n                            },\n                            \"type\": \"DRIVING\",\n                            \"operations\": [],\n                            \"arrivalSite\": \"Nadson Sena\",\n                            \"departureSite\": \"Nadson Sena\",\n                            \"distance\": 113185,\n                            \"nominalDuration\": 6185\n                        },\n                        {\n                            \"activity\": \"DELIVERY\",\n                            \"timeWindow\": {\n                                \"start\": 1603543385000,\n                                \"end\": 1603544285000\n                            },\n                            \"type\": \"SITE\",\n                            \"site\": \"Nadson Sena\",\n                            \"fixedTimeSite\": 0,\n                            \"volume\": 0.0,\n                            \"weight\": 0.0,\n                            \"operations\": [\n                                \"5f91c8c52774500fa36af00d\"\n                            ]\n                        },\n                        {\n                            \"activity\": \"DRIVING\",\n                            \"timeWindow\": {\n                                \"start\": 1603544285000,\n                                \"end\": 1603548766000\n                            },\n                            \"type\": \"DRIVING\",\n                            \"operations\": [],\n                            \"arrivalSite\": \"IMPERIAL MARMORARIA E VIDRACARIA\",\n                            \"departureSite\": \"Nadson Sena\",\n                            \"distance\": 83152,\n                            \"nominalDuration\": 4481\n                        },\n                        {\n                            \"activity\": \"DELIVERY\",\n                            \"timeWindow\": {\n                                \"start\": 1603548766000,\n                                \"end\": 1603549666000\n                            },\n                            \"type\": \"SITE\",\n                            \"site\": \"IMPERIAL MARMORARIA E VIDRACARIA\",\n                            \"fixedTimeSite\": 0,\n                            \"volume\": 0.0,\n                            \"weight\": 0.0,\n                            \"operations\": [\n                                \"5f91ca862774500fa36af01a\"\n                            ]\n                        },\n                        {\n                            \"activity\": \"DRIVING\",\n                            \"timeWindow\": {\n                                \"start\": 1603549666000,\n                                \"end\": 1603549950000\n                            },\n                            \"type\": \"DRIVING\",\n                            \"operations\": [],\n                            \"arrivalSite\": \"VIDRACARIA DIAMANTE (MENEZES )\",\n                            \"departureSite\": \"IMPERIAL MARMORARIA E VIDRACARIA\",\n                            \"distance\": 2826,\n                            \"nominalDuration\": 284\n                        },\n                        {\n                            \"activity\": \"DELIVERY\",\n                            \"timeWindow\": {\n                                \"start\": 1603549950000,\n                                \"end\": 1603550850000\n                            },\n                            \"type\": \"SITE\",\n                            \"site\": \"VIDRACARIA DIAMANTE (MENEZES )\",\n                            \"fixedTimeSite\": 0,\n                            \"volume\": 0.0,\n                            \"weight\": 0.0,\n                            \"operations\": [\n                                \"5f91ca542774500fa36af019\"\n                            ]\n                        },\n                        {\n                            \"activity\": \"DRIVING\",\n                            \"timeWindow\": {\n                                \"start\": 1603550850000,\n                                \"end\": 1603551351000\n                            },\n                            \"type\": \"DRIVING\",\n                            \"operations\": [],\n                            \"arrivalSite\": \"METALVIDROS\",\n                            \"departureSite\": \"VIDRACARIA DIAMANTE (MENEZES )\",\n                            \"distance\": 5513,\n                            \"nominalDuration\": 501\n                        },\n                        {\n                            \"activity\": \"DELIVERY\",\n                            \"timeWindow\": {\n                                \"start\": 1603551351000,\n                                \"end\": 1603552251000\n                            },\n                            \"type\": \"SITE\",\n                            \"site\": \"METALVIDROS\",\n                            \"fixedTimeSite\": 0,\n                            \"volume\": 0.0,\n                            \"weight\": 0.0,\n                            \"operations\": [\n                                \"5f91ca102774500fa36af017\"\n                            ]\n                        },\n                        {\n                            \"activity\": \"DRIVING\",\n                            \"timeWindow\": {\n                                \"start\": 1603552251000,\n                                \"end\": 1603552560000\n                            },\n                            \"type\": \"DRIVING\",\n                            \"operations\": [],\n                            \"arrivalSite\": \"VIDRACARIA IMPERIO\",\n                            \"departureSite\": \"METALVIDROS\",\n                            \"distance\": 3663,\n                            \"nominalDuration\": 309\n                        },\n                        {\n                            \"activity\": \"DELIVERY\",\n                            \"timeWindow\": {\n                                \"start\": 1603552560000,\n                                \"end\": 1603553460000\n                            },\n                            \"type\": \"SITE\",\n                            \"site\": \"VIDRACARIA IMPERIO\",\n                            \"fixedTimeSite\": 0,\n                            \"volume\": 0.0,\n                            \"weight\": 0.0,\n                            \"operations\": [\n                                \"5f91ca242774500fa36af018\"\n                            ]\n                        },\n                        {\n                            \"activity\": \"DRIVING\",\n                            \"timeWindow\": {\n                                \"start\": 1603553460000,\n                                \"end\": 1603555200000\n                            },\n                            \"type\": \"DRIVING\",\n                            \"operations\": [],\n                            \"arrivalSite\": \"Bahia Vidros\",\n                            \"departureSite\": \"VIDRACARIA IMPERIO\",\n                            \"distance\": 32691,\n                            \"nominalDuration\": 1740\n                        },\n                        {\n                            \"activity\": \"PAUSE\",\n                            \"timeWindow\": {\n                                \"start\": 1603555200000,\n                                \"end\": 1603558800000\n                            },\n                            \"type\": \"SITE\",\n                            \"site\": \"Bahia Vidros\",\n                            \"operations\": []\n                        },\n                        {\n                            \"activity\": \"DRIVING\",\n                            \"timeWindow\": {\n                                \"start\": 1603558800000,\n                                \"end\": 1603569600000\n                            },\n                            \"type\": \"DRIVING\",\n                            \"operations\": [],\n                            \"arrivalSite\": \"Bahia Vidros\",\n                            \"departureSite\": \"Bahia Vidros\",\n                            \"distance\": 202912,\n                            \"nominalDuration\": 10800\n                        },\n                        {\n                            \"activity\": \"PAUSE\",\n                            \"timeWindow\": {\n                                \"start\": 1603569600000,\n                                \"end\": 1603623600000\n                            },\n                            \"type\": \"SITE\",\n                            \"site\": \"Bahia Vidros\",\n                            \"operations\": []\n                        },\n                        {\n                            \"activity\": \"DRIVING\",\n                            \"timeWindow\": {\n                                \"start\": 1603623600000,\n                                \"end\": 1603623843000\n                            },\n                            \"type\": \"DRIVING\",\n                            \"operations\": [],\n                            \"arrivalSite\": \"Bahia Vidros\",\n                            \"departureSite\": \"Bahia Vidros\",\n                            \"distance\": 4566,\n                            \"nominalDuration\": 243\n                        },\n                        {\n                            \"activity\": \"ROUTE_END\",\n                            \"timeWindow\": {\n                                \"start\": 1603623843000,\n                                \"end\": 1603623843000\n                            },\n                            \"type\": \"SITE\",\n                            \"site\": \"Bahia Vidros\",\n                            \"operations\": []\n                        }\n                    ]\n                }\n            ],\n            \"vehicle\": \"TMP-3020\",\n            \"period\": {\n                \"timeWindow\": {\n                    \"start\": 1603364400000,\n                    \"end\": 1603659600000\n                },\n                \"departureSite\": \"Bahia Vidros\",\n                \"arrivalSite\": \"Bahia Vidros\"\n            }\n        }\n    ],\n    \"indicators\": {\n        \"totalServiceTime\": 13500,\n        \"totalDeliveringTime\": 13500,\n        \"dayWorkingTotalTime\": 86643,\n        \"nightWorkingTotalTime\": 0,\n        \"totalUnloadingTime\": 0,\n        \"totalWorkingTime\": 86643,\n        \"totalCollectingTime\": 0,\n        \"timeWindowNumber\": 1,\n        \"totalDrivingTime\": 73143,\n        \"totalLoadingTime\": 0,\n        \"totalTime\": 259443,\n        \"totalDistance\": 1186545,\n        \"averageOccupancyRateVolume\": 0.08,\n        \"averageOccupancyRateWeight\": 0.0,\n        \"rejectOperationsNumber\": 0,\n        \"totalWaitingTime\": 0,\n        \"totalRestTime\": 0,\n        \"routesNumber\": 1\n    }\n}<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>Description of the problem In this example, we have a request to solve a logistics problem for a company that operates a fleet composed of 1 VUC-type vehicle and 15 delivery service orders in the northeast region of Brazil. The planning considers multiple days, respecting legal regulations regarding driving breaks and daily working hours. Among [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"inline_featured_image":false,"footnotes":""},"categories":[160],"tags":[],"class_list":["post-3707","post","type-post","status-publish","format-standard","hentry","category-planning-en"],"acf":[],"_links":{"self":[{"href":"https:\/\/developers.maplink.global\/en\/wp-json\/wp\/v2\/posts\/3707","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/developers.maplink.global\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/developers.maplink.global\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/developers.maplink.global\/en\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/developers.maplink.global\/en\/wp-json\/wp\/v2\/comments?post=3707"}],"version-history":[{"count":4,"href":"https:\/\/developers.maplink.global\/en\/wp-json\/wp\/v2\/posts\/3707\/revisions"}],"predecessor-version":[{"id":3876,"href":"https:\/\/developers.maplink.global\/en\/wp-json\/wp\/v2\/posts\/3707\/revisions\/3876"}],"wp:attachment":[{"href":"https:\/\/developers.maplink.global\/en\/wp-json\/wp\/v2\/media?parent=3707"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/developers.maplink.global\/en\/wp-json\/wp\/v2\/categories?post=3707"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/developers.maplink.global\/en\/wp-json\/wp\/v2\/tags?post=3707"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}