{ "_type": "export", "__export_format": 4, "__export_date": "2024-03-28T09:50:49.308Z", "__export_source": "insomnia.importers:v0.1.0", "resources": [ { "_type": "workspace", "_id": "__WORKSPACE_ID__", "parentId": null, "name": "VRt.Packer [PC] 6.20.2289", "description": "Veeroute Packer API.\n\n# Description\n\nThe service is designed to calculate the placement of goods inside given packages.\n\n## Types of packages\n\n### Pallet\n\n![pallet](../images/packer_pallet.svg)\n\n*Mono-pallet*\n\nIf the pallet is fully equipped with the same product, then such a pallet is called **mono-pallet**,\nsuch a pallet has the following loading rules:\n\n1. The maximum allowable height of the pallet with the goods laid on it is taken into account.\n1. The maximum allowable weight of the loaded pallet is taken into account.\n1. Goods packages can only be stacked parallel to the walls of the pallet.\n1. It is allowed to rotate packages around the vertical Z-axis and only at a right angle.\n1. In order to equalize the height between the positions (to place another pallet on top), empty spaces can be added to the stacking by layers.\n\n*Zone tray*\n\nAfter the formation of mono-pallets, the remaining part of the goods of the same article is placed on the next pallet,\nwhich is divided into zones by means of a cardboard partition in such a way that only one item of goods is placed in each zone,\nwhile the zones have the following restrictions:\n\n1. The zones are rectangular.\n1. The ratio between the sides of the zones can be any.\n1. One of the sides of any zone is always in contact with the edge of the pallet.\n1. Permissible number of zones on a pallet: from 2 to 6.\n1. Each zone is filled according to the rules for filling a mono-pallet.\n1. The stacking height of all goods does not exceed 50 mm, so that another pallet can be placed on top of such a pallet.\n1. It is allowed to form pallets with different stacking heights for different positions (height difference is more than 50 mm), if these are the top pallets in the stack.\n\n### Mixbox\n\n![mixbox](../images/packer_mixbox.svg)\n\nIf the above steps fail to place the item in this way,\nso that the pallet is of the required height or weight, mixboxes are used:\n\n1. Mixbox can only be placed in one layer.\n1. Different goods can be placed in one mixbox, in this case it is divided by partitions similarly to a pallet (the only difference is that the height of the packed goods is not aligned).\n1. Mixboxes can be mixed with items on the same pallet.\n1. One product can be packed in different mixboxes.\n\n### Slot\n\n![slot](../images/packer_slot.svg)\n\nThe loaded pallets are stacked on top of each other, the slot is where the stack of pallets is placed.\nThe slot has no physical body - so the dimensions of the `body` of the slot are zero.\n\n## Coordinate system\n\n![coordinates](../images/packer_coordinates.svg)\n\nTo indicate the location of packages and goods, a local coordinate system is used,\nin which the coordinates of a particular object are indicated relative to the near left lower corner of the parent object, while:\n\n* Horizontal plane - axes **X**, **Y**\n* Vertical - **Z** axis\n\nThe ratio of the axes of goods and packages:\n\n* Width - **X**\n* Length - **Y**\n* Height - **Z**\n\n## Entity diagram\n\n![erd](../uml/packer.svg)" }, { "parentId": "__WORKSPACE_ID__", "name": "Base environment", "data": { "base_url": "{{ scheme }}://{{ host }}{{ base_path }}" }, "_type": "environment", "_id": "__BASE_ENVIRONMENT_ID__" }, { "parentId": "__BASE_ENVIRONMENT_ID__", "name": "OpenAPI env", "data": { "scheme": "https", "base_path": "", "host": "api.edge.veeroute.tech", "bearerToken": "bearerToken" }, "_type": "environment", "_id": "env___BASE_ENVIRONMENT_ID___sub" }, { "parentId": "__WORKSPACE_ID__", "name": "Pack", "environment": {}, "_id": "fld___WORKSPACE_ID__152a5035", "_type": "request_group", "description": "Calculation of the placement of products inside the packages.\n" }, { "parentId": "__WORKSPACE_ID__", "name": "System", "environment": {}, "_id": "fld___WORKSPACE_ID__bc0792d8", "_type": "request_group", "description": "System functions.\nAuxiliary functionality common to all services.\n" }, { "parentId": "fld___WORKSPACE_ID__152a5035", "name": "Packing (SYNC)", "url": "{{ base_url }}/packer/pack/calculation", "body": { "mimeType": "application/json", "text": "{\n \"products\": [\n {\n \"key\": \"pallet_type_1\",\n \"count\": 1460,\n \"dimensions\": {\n \"length\": 1000,\n \"width\": 1000,\n \"height\": 1000,\n \"mass\": 1000\n },\n \"max_pressure\": 2,\n \"compatible_package_keys\": [\n \"pallet_type_1\"\n ],\n \"attributes\": []\n }\n ],\n \"packages\": [\n {\n \"key\": \"pallet_type_1\",\n \"type\": \"MIXBOX\",\n \"body_dimensions\": {\n \"length\": 1000,\n \"width\": 1000,\n \"height\": 1000,\n \"mass\": 1000\n },\n \"container_dimensions\": {\n \"length\": 1000,\n \"width\": 1000,\n \"height\": 1000,\n \"mass\": 1000\n },\n \"container_coordinates\": {\n \"x\": 1000,\n \"y\": 2000,\n \"z\": 3000\n },\n \"attributes\": []\n }\n ],\n \"pack_settings\": {\n \"calculation_settings\": {\n \"max_calculation_time\": \"PT4M30S\",\n \"max_waiting_time\": \"PT2H\",\n \"result_ttl\": \"PT4M30S\",\n \"result_timezone\": 3,\n \"treat_warnings_as_errors\": true,\n \"precision\": 3\n }\n }\n}" }, "parameters": [], "headers": [], "authentication": { "type": "bearer", "token": "{{bearerToken}}", "prefix": "" }, "_type": "request", "_id": "req___WORKSPACE_ID__c60eede7", "method": "POST" }, { "parentId": "fld___WORKSPACE_ID__152a5035", "name": "Packing (ASYNC)", "url": "{{ base_url }}/packer/pack/calculation_async", "body": { "mimeType": "application/json", "text": "{\n \"products\": [\n {\n \"key\": \"pallet_type_1\",\n \"count\": 1460,\n \"dimensions\": {\n \"length\": 1000,\n \"width\": 1000,\n \"height\": 1000,\n \"mass\": 1000\n },\n \"max_pressure\": 2,\n \"compatible_package_keys\": [\n \"pallet_type_1\"\n ],\n \"attributes\": []\n }\n ],\n \"packages\": [\n {\n \"key\": \"pallet_type_1\",\n \"type\": \"MIXBOX\",\n \"body_dimensions\": {\n \"length\": 1000,\n \"width\": 1000,\n \"height\": 1000,\n \"mass\": 1000\n },\n \"container_dimensions\": {\n \"length\": 1000,\n \"width\": 1000,\n \"height\": 1000,\n \"mass\": 1000\n },\n \"container_coordinates\": {\n \"x\": 1000,\n \"y\": 2000,\n \"z\": 3000\n },\n \"attributes\": []\n }\n ],\n \"pack_settings\": {\n \"calculation_settings\": {\n \"max_calculation_time\": \"PT4M30S\",\n \"max_waiting_time\": \"PT2H\",\n \"result_ttl\": \"PT4M30S\",\n \"result_timezone\": 3,\n \"treat_warnings_as_errors\": true,\n \"precision\": 3\n }\n }\n}" }, "parameters": [], "headers": [], "authentication": { "type": "bearer", "token": "{{bearerToken}}", "prefix": "" }, "_type": "request", "_id": "req___WORKSPACE_ID__387b6619", "method": "POST" }, { "parentId": "fld___WORKSPACE_ID__152a5035", "name": "Calculation state", "url": "{{ base_url }}/packer/pack/calculation_async/{{ id }}", "body": {}, "parameters": [], "headers": [], "authentication": { "type": "bearer", "token": "{{bearerToken}}", "prefix": "" }, "_type": "request", "_id": "req___WORKSPACE_ID__85c1479b", "method": "GET" }, { "parentId": "fld___WORKSPACE_ID__152a5035", "name": "Cancel calculation", "url": "{{ base_url }}/packer/pack/calculation_async/{{ id }}", "body": {}, "parameters": [], "headers": [], "authentication": { "type": "bearer", "token": "{{bearerToken}}", "prefix": "" }, "_type": "request", "_id": "req___WORKSPACE_ID__641882a8", "method": "DELETE" }, { "parentId": "fld___WORKSPACE_ID__152a5035", "name": "Getting the result", "url": "{{ base_url }}/packer/pack/result/{{ id }}", "body": {}, "parameters": [], "headers": [], "authentication": { "type": "bearer", "token": "{{bearerToken}}", "prefix": "" }, "_type": "request", "_id": "req___WORKSPACE_ID__6c317664", "method": "GET" }, { "parentId": "fld___WORKSPACE_ID__152a5035", "name": "Result removal", "url": "{{ base_url }}/packer/pack/result/{{ id }}", "body": {}, "parameters": [], "headers": [], "authentication": { "type": "bearer", "token": "{{bearerToken}}", "prefix": "" }, "_type": "request", "_id": "req___WORKSPACE_ID__b92af5bb", "method": "DELETE" }, { "parentId": "fld___WORKSPACE_ID__152a5035", "name": "Data validation", "url": "{{ base_url }}/packer/pack/validation", "body": { "mimeType": "application/json", "text": "{\n \"products\": [\n {\n \"key\": \"pallet_type_1\",\n \"count\": 1460,\n \"dimensions\": {\n \"length\": 1000,\n \"width\": 1000,\n \"height\": 1000,\n \"mass\": 1000\n },\n \"max_pressure\": 2,\n \"compatible_package_keys\": [\n \"pallet_type_1\"\n ],\n \"attributes\": []\n }\n ],\n \"packages\": [\n {\n \"key\": \"pallet_type_1\",\n \"type\": \"MIXBOX\",\n \"body_dimensions\": {\n \"length\": 1000,\n \"width\": 1000,\n \"height\": 1000,\n \"mass\": 1000\n },\n \"container_dimensions\": {\n \"length\": 1000,\n \"width\": 1000,\n \"height\": 1000,\n \"mass\": 1000\n },\n \"container_coordinates\": {\n \"x\": 1000,\n \"y\": 2000,\n \"z\": 3000\n },\n \"attributes\": []\n }\n ],\n \"pack_settings\": {\n \"calculation_settings\": {\n \"max_calculation_time\": \"PT4M30S\",\n \"max_waiting_time\": \"PT2H\",\n \"result_ttl\": \"PT4M30S\",\n \"result_timezone\": 3,\n \"treat_warnings_as_errors\": true,\n \"precision\": 3\n }\n }\n}" }, "parameters": [], "headers": [], "authentication": { "type": "bearer", "token": "{{bearerToken}}", "prefix": "" }, "_type": "request", "_id": "req___WORKSPACE_ID__59d3d005", "method": "POST" }, { "parentId": "fld___WORKSPACE_ID__bc0792d8", "name": "Checking the availability", "url": "{{ base_url }}/packer/system/check", "body": {}, "parameters": [], "headers": [], "authentication": {}, "_type": "request", "_id": "req___WORKSPACE_ID__d56d9853", "method": "GET" }, { "parentId": "fld___WORKSPACE_ID__bc0792d8", "name": "Getting the service version", "url": "{{ base_url }}/packer/system/version", "body": {}, "parameters": [], "headers": [], "authentication": {}, "_type": "request", "_id": "req___WORKSPACE_ID__c692273d", "method": "GET" }, { "parentId": "fld___WORKSPACE_ID__bc0792d8", "name": "Getting the documentation", "url": "{{ base_url }}/packer/file/{{ filename }}", "body": {}, "parameters": [], "headers": [], "authentication": {}, "_type": "request", "_id": "req___WORKSPACE_ID__971c419d", "method": "GET" } ] }