Skip to content

Instantly share code, notes, and snippets.

@zanthrash
Last active November 5, 2017 02:43
Show Gist options
  • Save zanthrash/2e3d993a71d2ff6abd83e4dea396cf7f to your computer and use it in GitHub Desktop.
Save zanthrash/2e3d993a71d2ff6abd83e4dea396cf7f to your computer and use it in GitHub Desktop.
Tree diagram with styling in v4
license: mit

This is a tree diagram with styling applied to the nodes and links written with d3.js v4. It is based on the simple horizontal version here

This is designed to be used as part of documenting an update to the book D3 Tips and Tricks to version 4 of d3.js.

forked from d3noob's block: Tree diagram with styling in v4

<!DOCTYPE html>
<meta charset="utf-8">
<style> /* set the CSS */
.node circle {
fill: #fff;
stroke: steelblue;
stroke-width: 3px;
}
.node text { font: 12px sans-serif; }
.node--internal text {
text-shadow: 0 1px 0 #fff, 0 -1px 0 #fff, 1px 0 0 #fff, -1px 0 0 #fff;
}
.link {
fill: none;
stroke: #ccc;
stroke-width: 2px;
}
</style>
<body>
<!-- load the d3.js library -->
<script src="//d3js.org/d3.v4.min.js"></script>
<script>
// set the dimensions and margins of the diagram
var margin = {top: 20, right: 90, bottom: 30, left: 90},
width = 1000 - margin.left - margin.right,
height = 600 - margin.top - margin.bottom;
// declares a tree layout and assigns the size
var treemap = d3.tree()
.size([height, width])
d3.json("task.json", function(error, graph) {
console.log("treeData",graph)
var nodes = d3.hierarchy(graph)
nodes = treemap(graph)
// nodes.each(function(d) {
// d.y = d.depth * 100
// })
console.log('nodes', nodes)
var svg = d3.select("body").append("svg")
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.top + margin.bottom),
g = svg.append("g")
.attr("transform",
"translate(" + margin.left + "," + margin.top + ")");
console.log('svg', svg)
const line = d3.line().curve(d3.curveBasis);
var link = g.selectAll(".link")
.data( nodes.descendants().slice(1))
.enter().append("path")
.attr("class", "link")
.style("stroke", function(d) { return d.data.level; })
.attr("d", function(d) {
return line([
[d.x, d.y],
[d.x, (d.y + d.parent.y) / 2],
[d.parent.x, (d.y + d.parent.y) / 2],
[d.parent.x, (d.parent.y)]
])
});
var node = g.selectAll(".node")
.data(nodes.descendants())
.enter().append("g")
.attr("class", function(d) {
return "node" +
(d.children ? " node--internal" : " node--leaf"); })
.attr("transform", function(d) {
return "translate(" + d.x + "," + d.y + ")"; });
node.append("circle")
.attr("r", 9)
.style("stroke", function(d) { return d.data.type; })
.style("fill", function(d) { return d.data.level; });
// node.append("text")
// .attr("dy", ".35em")
// .attr("x", function(d) { return d.children ?
// (d.data.value + 4) * -1 : d.data.value + 4 })
// .style("text-anchor", function(d) {
// return d.children ? "end" : "start"; })
// .text(function(d) { return d.data.name; });
});
</script>
</body>
{
"id": "6b30e244-6afe-4176-94f8-ed71f3c38589",
"type": "AGGREGATE",
"location_id": "3844",
"entry_point": "384420700000000062",
"aggregate_task_type": "PICK",
"status": "IN_PROGRESS",
"start_time": "2017-11-03T15:39:33.832Z",
"metadata": {
"title": "pick.title",
"subTasks": [
"10b15464-ba3b-48f2-8d84-229a37f14377",
"2efdab0e-17ea-4327-8c3d-cbaa7ea845b5",
"70eaad98-77b8-4cd2-a859-d5d1d661ae66",
"e20109ec-13c9-4cb7-a1bf-46ff5d5393fa",
"9c8e3b6b-979c-4612-8714-5a980be1f672",
"3c27fcb9-ce55-414d-af2e-fbf8c9ccd1dd",
"18bbccd6-e0af-4994-bb02-612e74098760",
"3470fdae-f928-4689-9d62-909af09d75f2",
"66c1e415-ad37-439f-9baf-415bc211b903",
"b592f53d-ba75-4795-805c-3d2e5f867e4a",
"95b6ba65-0d5e-472e-a736-95d28df5aae2",
"9f167d54-d8f4-4e10-a1a5-7c2b0383f0fb",
"38e58517-4cc8-47d2-a463-e45e9f832934",
"6fdbcf73-236f-4724-8827-b9ce544dce21",
"b3c5d67e-8226-4cf4-ab99-99fc4b565363",
"8ce92ef5-5b5b-4743-af01-ace46834dc87",
"b18ff808-c098-4700-917a-d25721681866",
"4ca8da67-ebc5-45c2-b7c3-d0b477e938bc",
"8b435edd-408d-4ce7-8f8b-0eb6597f07fc",
"b298b0f2-74c1-4fe9-baa8-4950e19cdabd",
"3b8a843b-fa92-458d-a42f-2224f387bb79",
"fe0b625d-70db-443d-993c-22814f95b2d4",
"be5ebb3f-a3d0-4b23-85a2-8345be198eeb",
"9aedd7cd-e5db-49d3-9de6-1e847298af4b",
"f426165b-3dd0-4812-b5c2-28e3703c6cf8",
"c6dc2e5e-961a-4599-a6af-993462c8c5a8",
"e3254a78-732c-4940-9f6e-a991c30b5826",
"bcf8410b-a776-4e67-9714-d343979ce928",
"d2f0c300-cbab-4040-9dfb-50fd4ed07b0a",
"3ff67d30-c30a-429d-9c41-7e1fe38cbf77",
"74f61230-fd66-4062-92e6-ff0a1f787366",
"2bdb5e75-807d-4ecd-9f69-0b3f68ad647b",
"dfcf3da8-b441-4d28-8609-9e3c1e5cb3a4",
"e0ac97a4-1f37-471d-8f8e-e7fb43af502f",
"80dc8ac2-eb83-4e54-ae84-f62b06d9e52b",
"ddfd4f36-a01e-486c-868b-83b4736b9bbb",
"f4b61c52-cfa3-440a-ba0b-b0a447081b75",
"ed8dab2b-ccba-4837-af12-4c0c46d062c0",
"b133fc31-1f97-4d8f-82b1-6b906d2ae149",
"9c9128eb-23be-4f3c-9250-062f55c00ef6",
"6fde48da-e3b1-4de1-bf90-b141c889b1f0",
"851a64ee-9cb2-40c5-9bf0-c317947fd017",
"4043f04b-ebe6-49b4-a685-93388ca9d2e6",
"323952ca-f5e9-4097-9891-ca3b593fc29d",
"49fec7db-5dc9-467d-94fd-861e140b0998",
"2d18f79a-1d21-43a7-b746-ea1453b3761e",
"29ece673-ab09-4b53-b9a6-b2d4d5abca03",
"b463d455-104c-4c1f-a536-81613169e793",
"803a5641-fabe-4dbb-bfec-95166326de02",
"f740a935-304e-45ec-bcb2-9f20bb3acbf2",
"a7594cd7-c008-4390-ba17-cd3f004b548e",
"87b08d76-4bfa-4f1b-81f3-e4aed6215602",
"31de131e-b6ea-4305-8c06-a77aa6240bb3",
"066197c5-5095-45a4-bf9d-e361099ba020",
"5bfd6111-39cd-4298-be86-6ca463e48e8f",
"374327a5-fd3c-426c-935e-97d02b15894e",
"96eacd18-282b-4ac2-9b8d-47b0f8e8fe4e",
"768f9e9a-4535-440b-94b8-26333333f5bc",
"d51be34a-7b0c-49e5-844e-3acadcfc1c0b",
"fe349291-de77-434f-b83b-be746cb0f3eb",
"01014521-b4d6-489c-9d26-5096e65af60e",
"fe156903-74dd-42f7-8601-2f5dda35839f",
"94f313c1-7c9a-4667-94e3-621d2636559e",
"744e6457-a196-46fe-9f50-a4a8847900ab",
"4326e235-f6bf-446f-862c-20ad4d10ea72",
"b0067818-b3d2-4da6-903f-aa4839a20648",
"a1982895-fc9b-4f90-af40-bdb96f8d1519",
"0f325282-74d9-44e2-a00e-48f1088c2f93",
"ff32179f-ab4c-4946-8a60-7ebe744de6f4",
"ffdc19b4-3369-4abd-b701-7824e161fc1c",
"35b35ce7-7c1a-4d2d-9f00-71238612f9ac",
"dbd6a9d4-fd19-4623-83f3-6a25cf77247d",
"572c30ca-ca31-4e30-a014-3455dd9f7d0d",
"39a0975a-6f52-45b6-a558-b1ddf794362b",
"b501e406-24b2-4feb-8a11-7c153c0b8112",
"2231fd43-7af1-4234-b1e4-f57d7b6b01c2",
"18b09aab-989c-41e1-8323-84b44130d398",
"b1988f51-3e4e-45d4-9a14-61554adfdb7b",
"26c40529-6575-48fa-81d5-790cb695f308",
"1778f29b-98c9-4a69-9e14-4c07a30c6cbc",
"7b3f3c67-7cc4-4fda-bcd8-b3dd888add95",
"785b75bb-63b5-4723-aeff-7b7b54c7371d",
"b104d866-f91b-44b1-9a4f-f5f862bca739",
"4ae93111-0aaf-42af-9aff-dd6f88ee7d5a",
"b607b3a3-cf24-453b-9a3a-042dee52142c",
"b1215140-774a-4723-a36d-cd7ff5c56cc5",
"64e12063-df78-4d5b-84e9-e16ab4225991",
"10d1af9c-dedd-401a-b55b-7d8ca64b5b39",
"1b1d2061-16b0-4a24-8b09-610ae5c353ae",
"4da2c5ad-bf97-4895-9d41-0151bff4b5b8"
],
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.business.pick.PickTaskProcessor",
"alternateTasks": [
"d3311ca2-9889-4646-a1ed-2032cc043c74"
],
"assignedCartId": "384420700000000062",
"completionScreenType": "COMPLETION",
"confirmationRequired": false,
"completionDescription": "pick.completionDescription",
"rootAggregateTaskType": "PICK"
},
"children": [
{
"id": "10b15464-ba3b-48f2-8d84-229a37f14377",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:39:33.832Z",
"end_time": "2017-11-03T15:39:33.832Z",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.assignDescription",
"acceptedValue": "^[\\d]{4}207[\\d]{11}",
"acceptanceType": "REGEX",
"successMessage": "pick.assignSuccess",
"assignsEntryPoint": true,
"descriptionParams": [],
"rootMetaDataField": "assignedCartId",
"confirmationRequired": false,
"successMessageParams": [],
"validatesBarcodeType": "PICK_LADDER_CART",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsForEmptyContainer": true
}
},
{
"id": "2efdab0e-17ea-4327-8c3d-cbaa7ea845b5",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:41:31.773Z",
"end_time": "2017-11-03T15:41:40.945Z",
"metadata": {
"upc": "893869000720",
"dpci": "071-08-2163",
"tcin": "50304558",
"upcList": [
"893869000720",
"848996000426"
],
"subTasks": [
"9cc36ee1-1103-40bb-a2dd-117552cb0c2b",
"447e4b31-c10c-4f45-b3fa-85e48b31c5b6"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105838",
"itemType": "FOOD",
"sortGroup": "3230:B13",
"packLocation": {
"order": 1,
"shelf": "TRIANGLE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B13",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"b54d3e39-80f3-4f86-af87-4a5375c5707e"
],
"autoSkipTaskId": "b54d3e39-80f3-4f86-af87-4a5375c5707e",
"reservedItemId": "2ceea937-c4f2-4d28-824b-5f23c78ca0f6",
"transferOrderId": "100000003417483",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000013075",
"destinationContainerBarcode": "384420700000000062"
},
"children": [
{
"id": "9cc36ee1-1103-40bb-a2dd-117552cb0c2b",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:41:31.773Z",
"end_time": "2017-11-03T15:41:31.773Z",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000013075",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAA1-213-003-02-01"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAA1"
},
{
"name": "Aisle",
"value": "213"
},
{
"name": "Bay",
"value": "003"
},
{
"name": "Level",
"value": "02"
},
{
"name": "Bin",
"value": "01"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAA1-213-003-02-01"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000013075"
}
},
{
"id": "447e4b31-c10c-4f45-b3fa-85e48b31c5b6",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:41:40.945Z",
"end_time": "2017-11-03T15:41:40.945Z",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/50304558",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"893869000720",
"848996000426"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Sahale Snacks&#174; Pomegranate Flavored Pistachios - 4oz",
"SAA1-213-003-02-01"
],
"confirmationRequired": false,
"successMessageParams": [
"893869000720"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"893869000720",
"848996000426"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "70eaad98-77b8-4cd2-a859-d5d1d661ae66",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:43:04.479Z",
"end_time": "2017-11-03T15:43:09.382Z",
"metadata": {
"upc": "037600107433",
"dpci": "212-18-0581",
"tcin": "13220942",
"upcList": [
"037600491204",
"492121805815",
"037600107433",
"376001074334"
],
"subTasks": [
"0ac814ee-3004-4014-bc42-130b39bf323a",
"be1d7922-6155-4813-9611-f5a9f1f5b9c6"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105839",
"itemType": "FOOD",
"sortGroup": "3230:B4",
"packLocation": {
"order": 2,
"shelf": "SQUARE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B4",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"abfd8d46-f179-4fd7-919b-46ed9555ebca"
],
"autoSkipTaskId": "abfd8d46-f179-4fd7-919b-46ed9555ebca",
"reservedItemId": "3fc66a1c-c6b9-4f42-a26f-704eaed6d01d",
"transferOrderId": "100000003416857",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000029163",
"destinationContainerBarcode": "384420700000000062"
},
"children": [
{
"id": "0ac814ee-3004-4014-bc42-130b39bf323a",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:43:04.479Z",
"end_time": "2017-11-03T15:43:04.479Z",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000029163",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-316-001-02-01"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "316"
},
{
"name": "Bay",
"value": "001"
},
{
"name": "Level",
"value": "02"
},
{
"name": "Bin",
"value": "01"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-316-001-02-01"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000029163"
}
},
{
"id": "be1d7922-6155-4813-9611-f5a9f1f5b9c6",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:43:09.381Z",
"end_time": "2017-11-03T15:43:09.381Z",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/13220942",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"037600491204",
"492121805815",
"037600107433",
"376001074334"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Hormel 99% Fat Free Turkey with Beans Chili 15 oz",
"SAB1-316-001-02-01"
],
"confirmationRequired": false,
"successMessageParams": [
"037600107433"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"037600491204",
"492121805815",
"037600107433",
"376001074334"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "e20109ec-13c9-4cb7-a1bf-46ff5d5393fa",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:43:21.072Z",
"end_time": "2017-11-03T15:43:24.871Z",
"metadata": {
"upc": "085239013779",
"dpci": "071-08-1937",
"tcin": "14525486",
"upcList": [
"490710819373",
"085239193785",
"085239013779",
"085239819371"
],
"subTasks": [
"dfd0de75-d9fd-4b73-8459-c0d042761551",
"87996225-e77c-4f63-a6c7-3c2ddc0ba796"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105838",
"itemType": "FOOD",
"sortGroup": "3230:B13",
"packLocation": {
"order": 1,
"shelf": "TRIANGLE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B13",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"6f6ffc9f-b7bd-4a22-9cda-86f9dccce3f8"
],
"autoSkipTaskId": "6f6ffc9f-b7bd-4a22-9cda-86f9dccce3f8",
"reservedItemId": "8af3b8ad-fd58-4384-95c1-a2e2ab38c366",
"transferOrderId": "100000003421602",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000029180",
"destinationContainerBarcode": "384420700000000062"
},
"children": [
{
"id": "dfd0de75-d9fd-4b73-8459-c0d042761551",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:43:21.072Z",
"end_time": "2017-11-03T15:43:21.072Z",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000029180",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-316-001-07-03"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "316"
},
{
"name": "Bay",
"value": "001"
},
{
"name": "Level",
"value": "07"
},
{
"name": "Bin",
"value": "03"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-316-001-07-03"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000029180"
}
},
{
"id": "87996225-e77c-4f63-a6c7-3c2ddc0ba796",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:43:24.870Z",
"end_time": "2017-11-03T15:43:24.870Z",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/14525486",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"490710819373",
"085239193785",
"085239013779",
"085239819371"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Deluxe Mixed Nuts With Sea Salt - 9oz - Archer Farms&#153;",
"SAB1-316-001-07-03"
],
"confirmationRequired": false,
"successMessageParams": [
"085239013779"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"490710819373",
"085239193785",
"085239013779",
"085239819371"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "9c8e3b6b-979c-4612-8714-5a980be1f672",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:43:28.918Z",
"end_time": "2017-11-03T15:43:30.663Z",
"metadata": {
"upc": "085239013779",
"dpci": "071-08-1937",
"tcin": "14525486",
"upcList": [
"490710819373",
"085239193785",
"085239013779",
"085239819371"
],
"subTasks": [
"dc07da33-7775-450e-9fb7-e2de0e620afe",
"d7d1a976-7087-4f4f-93c6-375bb0f7ccc2"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105838",
"itemType": "FOOD",
"sortGroup": "3230:B13",
"packLocation": {
"order": 1,
"shelf": "TRIANGLE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B13",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"4e83f861-2461-40ed-873f-f506fcc223b6"
],
"autoSkipTaskId": "4e83f861-2461-40ed-873f-f506fcc223b6",
"reservedItemId": "4f9b8a0e-b5dc-4874-99fd-c7e7395eaaad",
"transferOrderId": "100000003421602",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000029180",
"destinationContainerBarcode": "384420700000000062"
},
"children": [
{
"id": "dc07da33-7775-450e-9fb7-e2de0e620afe",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:43:28.918Z",
"end_time": "2017-11-03T15:43:28.918Z",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000029180",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-316-001-07-03"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "316"
},
{
"name": "Bay",
"value": "001"
},
{
"name": "Level",
"value": "07"
},
{
"name": "Bin",
"value": "03"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-316-001-07-03"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000029180"
}
},
{
"id": "d7d1a976-7087-4f4f-93c6-375bb0f7ccc2",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:43:30.662Z",
"end_time": "2017-11-03T15:43:30.662Z",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/14525486",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"490710819373",
"085239193785",
"085239013779",
"085239819371"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Deluxe Mixed Nuts With Sea Salt - 9oz - Archer Farms&#153;",
"SAB1-316-001-07-03"
],
"confirmationRequired": false,
"successMessageParams": [
"085239013779"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"490710819373",
"085239193785",
"085239013779",
"085239819371"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "3c27fcb9-ce55-414d-af2e-fbf8c9ccd1dd",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:43:34.790Z",
"end_time": "2017-11-03T15:43:36.503Z",
"metadata": {
"upc": "085239013779",
"dpci": "071-08-1937",
"tcin": "14525486",
"upcList": [
"490710819373",
"085239193785",
"085239013779",
"085239819371"
],
"subTasks": [
"5252d98d-ac32-444f-a616-26bc6d6de8d9",
"2e89731f-aed1-4ef4-8ab4-907bbb8c69ab"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105838",
"itemType": "FOOD",
"sortGroup": "3230:B13",
"packLocation": {
"order": 1,
"shelf": "TRIANGLE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B13",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"248b901c-0293-4b5e-820c-80e968bbcc03"
],
"autoSkipTaskId": "248b901c-0293-4b5e-820c-80e968bbcc03",
"reservedItemId": "27244525-b69b-4e7b-aabe-04fa6d4ff716",
"transferOrderId": "100000003421602",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000029180",
"destinationContainerBarcode": "384420700000000062"
},
"children": [
{
"id": "5252d98d-ac32-444f-a616-26bc6d6de8d9",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:43:34.790Z",
"end_time": "2017-11-03T15:43:34.790Z",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000029180",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-316-001-07-03"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "316"
},
{
"name": "Bay",
"value": "001"
},
{
"name": "Level",
"value": "07"
},
{
"name": "Bin",
"value": "03"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-316-001-07-03"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000029180"
}
},
{
"id": "2e89731f-aed1-4ef4-8ab4-907bbb8c69ab",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:43:36.502Z",
"end_time": "2017-11-03T15:43:36.502Z",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/14525486",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"490710819373",
"085239193785",
"085239013779",
"085239819371"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Deluxe Mixed Nuts With Sea Salt - 9oz - Archer Farms&#153;",
"SAB1-316-001-07-03"
],
"confirmationRequired": false,
"successMessageParams": [
"085239013779"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"490710819373",
"085239193785",
"085239013779",
"085239819371"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "18bbccd6-e0af-4994-bb02-612e74098760",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:43:51.794Z",
"end_time": "2017-11-03T15:43:56.439Z",
"metadata": {
"upc": "013562111053",
"dpci": "071-18-0288",
"tcin": "12936118",
"upcList": [
"013562111053",
"490711802886"
],
"subTasks": [
"e157da12-feab-482a-b672-2be215408c8f",
"468988fb-a9fb-477a-a244-dd45881ee5ae"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105842",
"itemType": "FOOD",
"sortGroup": "3230:B15",
"packLocation": {
"order": 1,
"shelf": "CIRCLE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B15",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"7d880cad-c0d1-40db-ad6c-a946ee36a3e1"
],
"autoSkipTaskId": "7d880cad-c0d1-40db-ad6c-a946ee36a3e1",
"reservedItemId": "a561a636-eed6-487f-a01d-68a828243c45",
"transferOrderId": "100000003418275",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000029690",
"destinationContainerBarcode": "384420700000000062"
},
"children": [
{
"id": "e157da12-feab-482a-b672-2be215408c8f",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:43:51.794Z",
"end_time": "2017-11-03T15:43:51.794Z",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000029690",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-317-001-03-03"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "317"
},
{
"name": "Bay",
"value": "001"
},
{
"name": "Level",
"value": "03"
},
{
"name": "Bin",
"value": "03"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-317-001-03-03"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000029690"
}
},
{
"id": "468988fb-a9fb-477a-a244-dd45881ee5ae",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:43:56.438Z",
"end_time": "2017-11-03T15:43:56.438Z",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/12936118",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"013562111053",
"490711802886"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Annie's Homegrown Organic Bunny Berry Patch Fruit Snacks - 5ct",
"SAB1-317-001-03-03"
],
"confirmationRequired": false,
"successMessageParams": [
"013562111053"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"013562111053",
"490711802886"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "3470fdae-f928-4689-9d62-909af09d75f2",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:44:00.919Z",
"end_time": "2017-11-03T15:44:05.469Z",
"metadata": {
"upc": "013562111077",
"dpci": "071-18-0218",
"tcin": "14082288",
"upcList": [
"013562111077",
"490711802183"
],
"subTasks": [
"3dafcbf3-4212-4e8e-87f8-ffee29f33579",
"1b4898e9-8972-404a-8b45-630facd10c73"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105842",
"itemType": "FOOD",
"sortGroup": "3230:B15",
"packLocation": {
"order": 1,
"shelf": "CIRCLE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B15",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"4e899484-d6c2-400b-b5db-e01474429ce5"
],
"autoSkipTaskId": "4e899484-d6c2-400b-b5db-e01474429ce5",
"reservedItemId": "6300cf2f-40b0-4dd3-a881-2997452e5415",
"transferOrderId": "100000003415967",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000029694",
"destinationContainerBarcode": "384420700000000062"
},
"children": [
{
"id": "3dafcbf3-4212-4e8e-87f8-ffee29f33579",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:44:00.919Z",
"end_time": "2017-11-03T15:44:00.919Z",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000029694",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-317-001-05-01"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "317"
},
{
"name": "Bay",
"value": "001"
},
{
"name": "Level",
"value": "05"
},
{
"name": "Bin",
"value": "01"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-317-001-05-01"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000029694"
}
},
{
"id": "1b4898e9-8972-404a-8b45-630facd10c73",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:44:05.469Z",
"end_time": "2017-11-03T15:44:05.469Z",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/14082288",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"013562111077",
"490711802183"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Annie's Homegrown Organic Bunny Summer Strawberry Fruit Snacks - 5ct",
"SAB1-317-001-05-01"
],
"confirmationRequired": false,
"successMessageParams": [
"013562111077"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"013562111077",
"490711802183"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "66c1e415-ad37-439f-9baf-415bc211b903",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:44:22.544Z",
"end_time": "2017-11-03T15:44:25.210Z",
"metadata": {
"upc": "041570029701",
"dpci": "071-08-0540",
"tcin": "12920262",
"upcList": [
"490710805406",
"041570029701"
],
"subTasks": [
"76e3465f-c322-42e0-ab34-3f89378c3917",
"cada8fc5-966a-4051-ba97-9306c99de2da"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105838",
"itemType": "FOOD",
"sortGroup": "3230:B13",
"packLocation": {
"order": 1,
"shelf": "TRIANGLE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B13",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"69590f23-c597-4e26-92e8-bed42a746b55"
],
"autoSkipTaskId": "69590f23-c597-4e26-92e8-bed42a746b55",
"reservedItemId": "5f644b4b-34ba-4da8-a3ae-9cddf682a11d",
"transferOrderId": "100000003417381",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000030189",
"destinationContainerBarcode": "384420700000000062"
},
"children": [
{
"id": "76e3465f-c322-42e0-ab34-3f89378c3917",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:44:22.544Z",
"end_time": "2017-11-03T15:44:22.544Z",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000030189",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-317-018-05-03"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "317"
},
{
"name": "Bay",
"value": "018"
},
{
"name": "Level",
"value": "05"
},
{
"name": "Bin",
"value": "03"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-317-018-05-03"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000030189"
}
},
{
"id": "cada8fc5-966a-4051-ba97-9306c99de2da",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:44:25.209Z",
"end_time": "2017-11-03T15:44:25.209Z",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/12920262",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"490710805406",
"041570029701"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Blue Diamond Almonds Roasted Salted - 6oz",
"SAB1-317-018-05-03"
],
"confirmationRequired": false,
"successMessageParams": [
"041570029701"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"490710805406",
"041570029701"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "b592f53d-ba75-4795-805c-3d2e5f867e4a",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:44:31.945Z",
"end_time": "2017-11-03T15:44:34.351Z",
"metadata": {
"upc": "013562111053",
"dpci": "071-18-0288",
"tcin": "12936118",
"upcList": [
"013562111053",
"490711802886"
],
"subTasks": [
"3e791d4f-be6d-4be1-aa83-d9f9a7d54428",
"232f1805-6a3e-4ac6-b413-99703913a71c"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105842",
"itemType": "FOOD",
"sortGroup": "3230:B15",
"packLocation": {
"order": 1,
"shelf": "CIRCLE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B15",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"b75fc7ad-6a93-47e3-a57e-eef84476ab98"
],
"autoSkipTaskId": "b75fc7ad-6a93-47e3-a57e-eef84476ab98",
"reservedItemId": "0d8e2574-1d5d-4c6d-9353-82f2abf633d6",
"transferOrderId": "100000003415943",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000052930",
"destinationContainerBarcode": "384420700000000062"
},
"children": [
{
"id": "3e791d4f-be6d-4be1-aa83-d9f9a7d54428",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:44:31.945Z",
"end_time": "2017-11-03T15:44:31.945Z",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000052930",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-317-021-07-03"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "317"
},
{
"name": "Bay",
"value": "021"
},
{
"name": "Level",
"value": "07"
},
{
"name": "Bin",
"value": "03"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-317-021-07-03"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000052930"
}
},
{
"id": "232f1805-6a3e-4ac6-b413-99703913a71c",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:44:34.350Z",
"end_time": "2017-11-03T15:44:34.350Z",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/12936118",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"013562111053",
"490711802886"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Annie's Homegrown Organic Bunny Berry Patch Fruit Snacks - 5ct",
"SAB1-317-021-07-03"
],
"confirmationRequired": false,
"successMessageParams": [
"013562111053"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"013562111053",
"490711802886"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "95b6ba65-0d5e-472e-a736-95d28df5aae2",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:44:55.959Z",
"end_time": "2017-11-03T15:45:00.036Z",
"metadata": {
"upc": "016000407619",
"dpci": "071-20-1158",
"tcin": "13369198",
"upcList": [
"490712011584",
"016000407619"
],
"subTasks": [
"b4608b06-8e28-49ff-a644-81f76c4542dd",
"06a5aa99-9722-40d8-ad27-ea7eb7e2962c"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105842",
"itemType": "FOOD",
"sortGroup": "3230:B15",
"packLocation": {
"order": 1,
"shelf": "CIRCLE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B15",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"d094ef21-67a7-4bb7-ba54-2df1aa9b2f45"
],
"autoSkipTaskId": "d094ef21-67a7-4bb7-ba54-2df1aa9b2f45",
"reservedItemId": "929772a2-242e-4599-9187-4eb9b0f2ae63",
"transferOrderId": "100000003418371",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000030640",
"destinationContainerBarcode": "384420700000000062"
},
"children": [
{
"id": "b4608b06-8e28-49ff-a644-81f76c4542dd",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:44:55.959Z",
"end_time": "2017-11-03T15:44:55.959Z",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000030640",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-318-017-05-01"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "318"
},
{
"name": "Bay",
"value": "017"
},
{
"name": "Level",
"value": "05"
},
{
"name": "Bin",
"value": "01"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-318-017-05-01"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000030640"
}
},
{
"id": "06a5aa99-9722-40d8-ad27-ea7eb7e2962c",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:45:00.036Z",
"end_time": "2017-11-03T15:45:00.036Z",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/13369198",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"490712011584",
"016000407619"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Nature Valley Chewy Trail Mix - Dark Chocolate & Nut Bars 6pk",
"SAB1-318-017-05-01"
],
"confirmationRequired": false,
"successMessageParams": [
"016000407619"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"490712011584",
"016000407619"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "9f167d54-d8f4-4e10-a1a5-7c2b0383f0fb",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:45:36.302Z",
"end_time": "2017-11-03T15:45:40.039Z",
"metadata": {
"upc": "085239260111",
"dpci": "212-26-2011",
"tcin": "13356628",
"upcList": [
"085239260111"
],
"subTasks": [
"0c926ff8-f086-4262-b152-b9ef3b84d21a",
"00cf4292-763a-491d-b811-3c9e4d38e816"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105839",
"itemType": "FOOD",
"sortGroup": "3230:B4",
"packLocation": {
"order": 2,
"shelf": "SQUARE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B4",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"183d65ed-4a90-49ea-940c-72b8321bde26"
],
"autoSkipTaskId": "183d65ed-4a90-49ea-940c-72b8321bde26",
"reservedItemId": "03a3c263-8da3-448e-bc19-f756415f5c76",
"transferOrderId": "100000003422408",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000030351",
"destinationContainerBarcode": "384420700000000062"
},
"children": [
{
"id": "0c926ff8-f086-4262-b152-b9ef3b84d21a",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:45:36.302Z",
"end_time": "2017-11-03T15:45:36.302Z",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000030351",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-318-006-05-02"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "318"
},
{
"name": "Bay",
"value": "006"
},
{
"name": "Level",
"value": "05"
},
{
"name": "Bin",
"value": "02"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-318-006-05-02"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000030351"
}
},
{
"id": "00cf4292-763a-491d-b811-3c9e4d38e816",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:45:40.039Z",
"end_time": "2017-11-03T15:45:40.039Z",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/13356628",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"085239260111"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"8\" Flour Tortilla 10 Count - Market Pantry&#153;",
"SAB1-318-006-05-02"
],
"confirmationRequired": false,
"successMessageParams": [
"085239260111"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"085239260111"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "38e58517-4cc8-47d2-a463-e45e9f832934",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:45:46.378Z",
"end_time": "2017-11-03T15:45:49.842Z",
"metadata": {
"upc": "085239610886",
"dpci": "071-06-1088",
"tcin": "14575649",
"upcList": [
"490710610888",
"085239610886"
],
"subTasks": [
"1c910971-705f-4718-ba47-2a6da43f2f71",
"d296ee8c-eb26-4bdc-a836-e03b37de7d2a"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105840",
"itemType": "FOOD",
"sortGroup": "3230:B14",
"packLocation": {
"order": 1,
"shelf": "SQUARE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B14",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"f043df36-fce5-4a5f-a31d-fb7aef866ede"
],
"autoSkipTaskId": "f043df36-fce5-4a5f-a31d-fb7aef866ede",
"reservedItemId": "3eac7746-8722-42e9-aaf8-9f3bb40abd57",
"transferOrderId": "100000003415187",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000030307",
"destinationContainerBarcode": "384420700000000062"
},
"children": [
{
"id": "1c910971-705f-4718-ba47-2a6da43f2f71",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:45:46.378Z",
"end_time": "2017-11-03T15:45:46.378Z",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000030307",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-318-004-08-03"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "318"
},
{
"name": "Bay",
"value": "004"
},
{
"name": "Level",
"value": "08"
},
{
"name": "Bin",
"value": "03"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-318-004-08-03"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000030307"
}
},
{
"id": "d296ee8c-eb26-4bdc-a836-e03b37de7d2a",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:45:49.841Z",
"end_time": "2017-11-03T15:45:49.841Z",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/14575649",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"490710610888",
"085239610886"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Organic Blue Corn With Flax Seed Tortilla Chips - 12oz - Simply Balanced&#153;",
"SAB1-318-004-08-03"
],
"confirmationRequired": false,
"successMessageParams": [
"085239610886"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"490710610888",
"085239610886"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "6fdbcf73-236f-4724-8827-b9ce544dce21",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:46:24.969Z",
"end_time": "2017-11-03T15:46:28.039Z",
"metadata": {
"upc": "753656709512",
"dpci": "071-20-0854",
"tcin": "14701086",
"upcList": [
"753656709512",
"490712008546"
],
"subTasks": [
"07c4016d-3e35-41e3-8dc2-9fcfa90f7fa1",
"39688424-5019-46ba-8626-dab7078feb7c"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105842",
"itemType": "FOOD",
"sortGroup": "3230:B15",
"packLocation": {
"order": 1,
"shelf": "CIRCLE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B15",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"40f8f188-15a8-4ecb-9744-172590b7ce4e"
],
"autoSkipTaskId": "40f8f188-15a8-4ecb-9744-172590b7ce4e",
"reservedItemId": "1e99fdb7-26cb-419a-ad0c-c73c7539e104",
"transferOrderId": "100000003418848",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000031033",
"destinationContainerBarcode": "384420700000000062"
},
"children": [
{
"id": "07c4016d-3e35-41e3-8dc2-9fcfa90f7fa1",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:46:24.969Z",
"end_time": "2017-11-03T15:46:24.969Z",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000031033",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-319-014-04-02"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "319"
},
{
"name": "Bay",
"value": "014"
},
{
"name": "Level",
"value": "04"
},
{
"name": "Bin",
"value": "02"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-319-014-04-02"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000031033"
}
},
{
"id": "39688424-5019-46ba-8626-dab7078feb7c",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:46:28.038Z",
"end_time": "2017-11-03T15:46:28.038Z",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/14701086",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"753656709512",
"490712008546"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Thinkthin&#174; High Protein Chunky Peanut Butter Chocolate Bars - 5ct",
"SAB1-319-014-04-02"
],
"confirmationRequired": false,
"successMessageParams": [
"753656709512"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"753656709512",
"490712008546"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "b3c5d67e-8226-4cf4-ab99-99fc4b565363",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:46:37.378Z",
"end_time": "2017-11-03T15:46:40.728Z",
"metadata": {
"upc": "052000338768",
"dpci": "203-80-0112",
"tcin": "13674096",
"upcList": [
"052000338768",
"052000039405",
"052000323214"
],
"subTasks": [
"7edecfed-957f-4ade-8dde-0114e00fa3e2",
"1edea48b-ba21-4be7-ab85-60b4319dc1cb"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105837",
"itemType": "FOOD",
"sortGroup": "3230:C11",
"packLocation": {
"order": 2,
"shelf": "TRIANGLE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "C11",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"74163c1d-dae9-4a43-ad6a-580cb1d0e4f1"
],
"autoSkipTaskId": "74163c1d-dae9-4a43-ad6a-580cb1d0e4f1",
"reservedItemId": "287d5db4-aaae-4859-8d72-0d48121e3189",
"transferOrderId": "100000003416218",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000031121",
"destinationContainerBarcode": "384420700000000062"
},
"children": [
{
"id": "7edecfed-957f-4ade-8dde-0114e00fa3e2",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:46:37.378Z",
"end_time": "2017-11-03T15:46:37.378Z",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000031121",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-319-017-07-01"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "319"
},
{
"name": "Bay",
"value": "017"
},
{
"name": "Level",
"value": "07"
},
{
"name": "Bin",
"value": "01"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-319-017-07-01"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000031121"
}
},
{
"id": "1edea48b-ba21-4be7-ab85-60b4319dc1cb",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:46:40.727Z",
"end_time": "2017-11-03T15:46:40.727Z",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/13674096",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"052000338768",
"052000039405",
"052000323214"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Gatorade Orange Sports Drink 32 oz",
"SAB1-319-017-07-01"
],
"confirmationRequired": false,
"successMessageParams": [
"052000338768"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"052000338768",
"052000039405",
"052000323214"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "8ce92ef5-5b5b-4743-af01-ace46834dc87",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:46:56.382Z",
"end_time": "2017-11-03T15:46:59.139Z",
"metadata": {
"upc": "052000208061",
"dpci": "203-80-0176",
"tcin": "13674118",
"upcList": [
"052000208061"
],
"subTasks": [
"90dc27e7-860f-4850-901b-31b09625c7da",
"ccbb8cbc-c0e8-4daa-8ee0-ef9c4ba735a1"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105837",
"itemType": "FOOD",
"sortGroup": "3230:C11",
"packLocation": {
"order": 2,
"shelf": "TRIANGLE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "C11",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"34ecb28b-0717-446e-96f2-71397f5e7c1f"
],
"autoSkipTaskId": "34ecb28b-0717-446e-96f2-71397f5e7c1f",
"reservedItemId": "d224d3b3-442c-45d2-a323-20c3bc8c4fd1",
"transferOrderId": "100000003418688",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000053276",
"destinationContainerBarcode": "384420700000000062"
},
"children": [
{
"id": "90dc27e7-860f-4850-901b-31b09625c7da",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:46:56.382Z",
"end_time": "2017-11-03T15:46:56.382Z",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000053276",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-320-022-06-01"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "320"
},
{
"name": "Bay",
"value": "022"
},
{
"name": "Level",
"value": "06"
},
{
"name": "Bin",
"value": "01"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-320-022-06-01"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000053276"
}
},
{
"id": "ccbb8cbc-c0e8-4daa-8ee0-ef9c4ba735a1",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:46:59.138Z",
"end_time": "2017-11-03T15:46:59.138Z",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/13674118",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"052000208061"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Gatorade Fruit Punch Sports Drink 20oz 8pk",
"SAB1-320-022-06-01"
],
"confirmationRequired": false,
"successMessageParams": [
"052000208061"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"052000208061"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "b18ff808-c098-4700-917a-d25721681866",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:47:10.728Z",
"end_time": "2017-11-03T15:47:14.535Z",
"metadata": {
"upc": "041129000229",
"dpci": "212-40-1494",
"tcin": "52122690",
"upcList": [
"041129000229"
],
"subTasks": [
"eca509b7-9499-4ce2-8af9-cc855e4599c2",
"712627fe-4fdb-4621-b72d-8dbf6f2be8a8"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105839",
"itemType": "FOOD",
"sortGroup": "3230:B4",
"packLocation": {
"order": 2,
"shelf": "SQUARE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B4",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"373dd448-d1d8-4ea9-9e34-1df7fa19040d"
],
"autoSkipTaskId": "373dd448-d1d8-4ea9-9e34-1df7fa19040d",
"reservedItemId": "d58faf87-6111-4741-9b43-b42b53f7e434",
"transferOrderId": "100000003419887",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000053243",
"destinationContainerBarcode": "384420700000000062"
},
"children": [
{
"id": "eca509b7-9499-4ce2-8af9-cc855e4599c2",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:47:10.728Z",
"end_time": "2017-11-03T15:47:10.728Z",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000053243",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-320-021-04-02"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "320"
},
{
"name": "Bay",
"value": "021"
},
{
"name": "Level",
"value": "04"
},
{
"name": "Bin",
"value": "02"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-320-021-04-02"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000053243"
}
},
{
"id": "712627fe-4fdb-4621-b72d-8dbf6f2be8a8",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:47:14.534Z",
"end_time": "2017-11-03T15:47:14.534Z",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/52122690",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"041129000229"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Classico&#174; Pesto Pasta Sauce - 13.5oz",
"SAB1-320-021-04-02"
],
"confirmationRequired": false,
"successMessageParams": [
"041129000229"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"041129000229"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "4ca8da67-ebc5-45c2-b7c3-d0b477e938bc",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:47:19.341Z",
"end_time": "2017-11-03T15:47:21.628Z",
"metadata": {
"upc": "041129000229",
"dpci": "212-40-1494",
"tcin": "52122690",
"upcList": [
"041129000229"
],
"subTasks": [
"156d2211-41cb-462e-b247-e4db9ccdf172",
"28ac441d-162e-4bda-bedd-b2f8892d08a1"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105839",
"itemType": "FOOD",
"sortGroup": "3230:B4",
"packLocation": {
"order": 2,
"shelf": "SQUARE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B4",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"9d92a13d-2e52-49f2-8f54-e92970e512fb"
],
"autoSkipTaskId": "9d92a13d-2e52-49f2-8f54-e92970e512fb",
"reservedItemId": "de8b6de2-a669-4e5f-a21f-a92fd066664d",
"transferOrderId": "100000003419887",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000053243",
"destinationContainerBarcode": "384420700000000062"
},
"children": [
{
"id": "156d2211-41cb-462e-b247-e4db9ccdf172",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:47:19.341Z",
"end_time": "2017-11-03T15:47:19.341Z",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000053243",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-320-021-04-02"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "320"
},
{
"name": "Bay",
"value": "021"
},
{
"name": "Level",
"value": "04"
},
{
"name": "Bin",
"value": "02"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-320-021-04-02"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000053243"
}
},
{
"id": "28ac441d-162e-4bda-bedd-b2f8892d08a1",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:47:21.627Z",
"end_time": "2017-11-03T15:47:21.627Z",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/52122690",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"041129000229"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Classico&#174; Pesto Pasta Sauce - 13.5oz",
"SAB1-320-021-04-02"
],
"confirmationRequired": false,
"successMessageParams": [
"041129000229"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"041129000229"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "8b435edd-408d-4ce7-8f8b-0eb6597f07fc",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:47:27.618Z",
"end_time": "2017-11-03T15:47:29.682Z",
"metadata": {
"upc": "041129000229",
"dpci": "212-40-1494",
"tcin": "52122690",
"upcList": [
"041129000229"
],
"subTasks": [
"f31d4d5a-db7a-4e6d-9946-676d8c81f1a1",
"fd3ede68-6f89-4a73-a9f2-facfe852805d"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105839",
"itemType": "FOOD",
"sortGroup": "3230:B4",
"packLocation": {
"order": 2,
"shelf": "SQUARE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B4",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"8ed65065-858e-4aee-a60e-5aabaa50ce16"
],
"autoSkipTaskId": "8ed65065-858e-4aee-a60e-5aabaa50ce16",
"reservedItemId": "f46c675e-a7e0-4b7e-b997-dcd9359b6af2",
"transferOrderId": "100000003419887",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000053243",
"destinationContainerBarcode": "384420700000000062"
},
"children": [
{
"id": "f31d4d5a-db7a-4e6d-9946-676d8c81f1a1",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:47:27.618Z",
"end_time": "2017-11-03T15:47:27.618Z",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000053243",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-320-021-04-02"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "320"
},
{
"name": "Bay",
"value": "021"
},
{
"name": "Level",
"value": "04"
},
{
"name": "Bin",
"value": "02"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-320-021-04-02"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000053243"
}
},
{
"id": "fd3ede68-6f89-4a73-a9f2-facfe852805d",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:47:29.682Z",
"end_time": "2017-11-03T15:47:29.682Z",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/52122690",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"041129000229"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Classico&#174; Pesto Pasta Sauce - 13.5oz",
"SAB1-320-021-04-02"
],
"confirmationRequired": false,
"successMessageParams": [
"041129000229"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"041129000229"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "b298b0f2-74c1-4fe9-baa8-4950e19cdabd",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:47:36.164Z",
"end_time": "2017-11-03T15:47:38.880Z",
"metadata": {
"upc": "041196915051",
"dpci": "212-18-0379",
"tcin": "12955093",
"upcList": [
"041196915051"
],
"subTasks": [
"23045ad6-a4b2-4d07-89b8-d8465367e5eb",
"4f2bc6f7-d2b8-4220-98a3-4fcf21584575"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105839",
"itemType": "FOOD",
"sortGroup": "3230:B4",
"packLocation": {
"order": 2,
"shelf": "SQUARE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B4",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"6354bb49-d45c-4d4a-843f-731317b0406f"
],
"autoSkipTaskId": "6354bb49-d45c-4d4a-843f-731317b0406f",
"reservedItemId": "d090c235-d56e-4b5d-8b65-fa6ec0276f35",
"transferOrderId": "100000003422113",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000053185",
"destinationContainerBarcode": "384420700000000062"
},
"children": [
{
"id": "23045ad6-a4b2-4d07-89b8-d8465367e5eb",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:47:36.164Z",
"end_time": "2017-11-03T15:47:36.164Z",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000053185",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-320-019-02-03"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "320"
},
{
"name": "Bay",
"value": "019"
},
{
"name": "Level",
"value": "02"
},
{
"name": "Bin",
"value": "03"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-320-019-02-03"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000053185"
}
},
{
"id": "4f2bc6f7-d2b8-4220-98a3-4fcf21584575",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:47:38.880Z",
"end_time": "2017-11-03T15:47:38.880Z",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/12955093",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"041196915051"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Progresso&#174; Traditional Italian-Style Wedding Soup 18.5 oz",
"SAB1-320-019-02-03"
],
"confirmationRequired": false,
"successMessageParams": [
"041196915051"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"041196915051"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "3b8a843b-fa92-458d-a42f-2224f387bb79",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:47:55.917Z",
"end_time": "2017-11-03T15:48:02.981Z",
"metadata": {
"upc": "016000494893",
"dpci": "071-20-1512",
"tcin": "52255811",
"upcList": [
"016000494893"
],
"subTasks": [
"407b07fe-80cc-48f0-a7dc-3ac0ebdfb89b",
"cae6ad58-3e04-440d-967e-1aa4c75fd147"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105842",
"itemType": "FOOD",
"sortGroup": "3230:B15",
"packLocation": {
"order": 1,
"shelf": "CIRCLE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B15",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"e32274df-4745-4382-a43f-55cee93f5a09"
],
"autoSkipTaskId": "e32274df-4745-4382-a43f-55cee93f5a09",
"reservedItemId": "7754228f-ea20-4044-b2dc-39b495d05902",
"transferOrderId": "100000003418440",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000031375",
"destinationContainerBarcode": "384420700000000062"
},
"children": [
{
"id": "407b07fe-80cc-48f0-a7dc-3ac0ebdfb89b",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:47:55.917Z",
"end_time": "2017-11-03T15:47:55.917Z",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000031375",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-320-009-02-03"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "320"
},
{
"name": "Bay",
"value": "009"
},
{
"name": "Level",
"value": "02"
},
{
"name": "Bin",
"value": "03"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-320-009-02-03"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000031375"
}
},
{
"id": "cae6ad58-3e04-440d-967e-1aa4c75fd147",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:48:02.980Z",
"end_time": "2017-11-03T15:48:02.980Z",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/52255811",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"016000494893"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Nature Valley Almond Butter Double Chocolate Granola Cups - 6.75oz",
"SAB1-320-009-02-03"
],
"confirmationRequired": false,
"successMessageParams": [
"016000494893"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"016000494893"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "fe0b625d-70db-443d-993c-22814f95b2d4",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:48:09.528Z",
"end_time": "2017-11-03T15:48:13.311Z",
"metadata": {
"upc": "722252334039",
"dpci": "071-20-0814",
"tcin": "13508820",
"upcList": [
"490712008140",
"722252334039",
"722252344038",
"722252234056",
"722252330307"
],
"subTasks": [
"422744d2-dcc4-4b76-a766-dafe58653151",
"dd3f28ea-02a3-4f14-a0b3-f5f06856d7e1"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105842",
"itemType": "FOOD",
"sortGroup": "3230:B15",
"packLocation": {
"order": 1,
"shelf": "CIRCLE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B15",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"5ce24113-9666-4b19-8080-d1da85a1d71a"
],
"autoSkipTaskId": "5ce24113-9666-4b19-8080-d1da85a1d71a",
"reservedItemId": "083fe885-4778-4324-8a58-03af77b80e5e",
"transferOrderId": "100000003417543",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000031284",
"destinationContainerBarcode": "384420700000000062"
},
"children": [
{
"id": "422744d2-dcc4-4b76-a766-dafe58653151",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:48:09.528Z",
"end_time": "2017-11-03T15:48:09.528Z",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000031284",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-320-005-07-03"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "320"
},
{
"name": "Bay",
"value": "005"
},
{
"name": "Level",
"value": "07"
},
{
"name": "Bin",
"value": "03"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-320-005-07-03"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000031284"
}
},
{
"id": "dd3f28ea-02a3-4f14-a0b3-f5f06856d7e1",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:48:13.311Z",
"end_time": "2017-11-03T15:48:13.311Z",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/13508820",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"490712008140",
"722252334039",
"722252344038",
"722252234056",
"722252330307"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Luna Protein Bar Chocolate Chip Cookie Dough - 6ct",
"SAB1-320-005-07-03"
],
"confirmationRequired": false,
"successMessageParams": [
"722252334039"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"490712008140",
"722252334039",
"722252344038",
"722252234056",
"722252330307"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "be5ebb3f-a3d0-4b23-85a2-8345be198eeb",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:48:39.057Z",
"end_time": "2017-11-03T15:48:42.131Z",
"metadata": {
"upc": "041196010886",
"dpci": "212-18-0613",
"tcin": "12955085",
"upcList": [
"041196010886",
"492121806133",
"041196910889"
],
"subTasks": [
"5e30d4b3-5cc8-4094-b95e-28b79411e009",
"d4367b78-9169-4b46-85f7-27d177c7d0f5"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105839",
"itemType": "FOOD",
"sortGroup": "3230:B4",
"packLocation": {
"order": 2,
"shelf": "SQUARE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B4",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"2cd3170a-b689-434a-95d1-3ad13071f4e2"
],
"autoSkipTaskId": "2cd3170a-b689-434a-95d1-3ad13071f4e2",
"reservedItemId": "dc2620f6-4f40-47e9-a5cc-e2e25da25f31",
"transferOrderId": "100000003417939",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000031719",
"destinationContainerBarcode": "384420700000000062"
},
"children": [
{
"id": "5e30d4b3-5cc8-4094-b95e-28b79411e009",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:48:39.057Z",
"end_time": "2017-11-03T15:48:39.057Z",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000031719",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-321-004-03-02"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "321"
},
{
"name": "Bay",
"value": "004"
},
{
"name": "Level",
"value": "03"
},
{
"name": "Bin",
"value": "02"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-321-004-03-02"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000031719"
}
},
{
"id": "d4367b78-9169-4b46-85f7-27d177c7d0f5",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:48:42.130Z",
"end_time": "2017-11-03T15:48:42.130Z",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/12955085",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"041196010886",
"492121806133",
"041196910889"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Progresso&#174; Traditional Chicken Noodle Soup 19 oz",
"SAB1-321-004-03-02"
],
"confirmationRequired": false,
"successMessageParams": [
"041196010886"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"041196010886",
"492121806133",
"041196910889"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "9aedd7cd-e5db-49d3-9de6-1e847298af4b",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:48:46.159Z",
"end_time": "2017-11-03T15:48:47.908Z",
"metadata": {
"upc": "041196010886",
"dpci": "212-18-0613",
"tcin": "12955085",
"upcList": [
"041196010886",
"492121806133",
"041196910889"
],
"subTasks": [
"ad55ac59-62b4-4928-869f-b9ac5d9690fb",
"5fbd6720-ebc3-462f-ba6b-9bb2bad82057"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105839",
"itemType": "FOOD",
"sortGroup": "3230:B4",
"packLocation": {
"order": 2,
"shelf": "SQUARE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B4",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"39346b0c-a0d5-4102-9ad9-b9864a510a0a"
],
"autoSkipTaskId": "39346b0c-a0d5-4102-9ad9-b9864a510a0a",
"reservedItemId": "cb0c749f-2379-4e8a-9819-8f1e7088ea40",
"transferOrderId": "100000003417939",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000031719",
"destinationContainerBarcode": "384420700000000062"
},
"children": [
{
"id": "ad55ac59-62b4-4928-869f-b9ac5d9690fb",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:48:46.159Z",
"end_time": "2017-11-03T15:48:46.159Z",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000031719",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-321-004-03-02"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "321"
},
{
"name": "Bay",
"value": "004"
},
{
"name": "Level",
"value": "03"
},
{
"name": "Bin",
"value": "02"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-321-004-03-02"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000031719"
}
},
{
"id": "5fbd6720-ebc3-462f-ba6b-9bb2bad82057",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:48:47.908Z",
"end_time": "2017-11-03T15:48:47.908Z",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/12955085",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"041196010886",
"492121806133",
"041196910889"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Progresso&#174; Traditional Chicken Noodle Soup 19 oz",
"SAB1-321-004-03-02"
],
"confirmationRequired": false,
"successMessageParams": [
"041196010886"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"041196010886",
"492121806133",
"041196910889"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "f426165b-3dd0-4812-b5c2-28e3703c6cf8",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:48:54.778Z",
"end_time": "2017-11-03T15:48:58.339Z",
"metadata": {
"upc": "041196010886",
"dpci": "212-18-0613",
"tcin": "12955085",
"upcList": [
"041196010886",
"492121806133",
"041196910889"
],
"subTasks": [
"c338bfc4-7cb1-409f-aa6a-b9fa023712ba",
"cd74e2c1-4b76-490f-967c-63c1c59ddc64"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105839",
"itemType": "FOOD",
"sortGroup": "3230:B4",
"packLocation": {
"order": 2,
"shelf": "SQUARE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B4",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"3c93072a-5d63-4a59-9d3d-342a3089042d"
],
"autoSkipTaskId": "3c93072a-5d63-4a59-9d3d-342a3089042d",
"reservedItemId": "633bc249-9149-4afc-bd13-a1f06a7b1b5f",
"transferOrderId": "100000003417939",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000031719",
"destinationContainerBarcode": "384420700000000062"
},
"children": [
{
"id": "c338bfc4-7cb1-409f-aa6a-b9fa023712ba",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:48:54.778Z",
"end_time": "2017-11-03T15:48:54.778Z",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000031719",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-321-004-03-02"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "321"
},
{
"name": "Bay",
"value": "004"
},
{
"name": "Level",
"value": "03"
},
{
"name": "Bin",
"value": "02"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-321-004-03-02"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000031719"
}
},
{
"id": "cd74e2c1-4b76-490f-967c-63c1c59ddc64",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:48:58.339Z",
"end_time": "2017-11-03T15:48:58.339Z",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/12955085",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"041196010886",
"492121806133",
"041196910889"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Progresso&#174; Traditional Chicken Noodle Soup 19 oz",
"SAB1-321-004-03-02"
],
"confirmationRequired": false,
"successMessageParams": [
"041196010886"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"041196010886",
"492121806133",
"041196910889"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "c6dc2e5e-961a-4599-a6af-993462c8c5a8",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:49:09.965Z",
"end_time": "2017-11-03T15:49:14.755Z",
"metadata": {
"upc": "085239188552",
"dpci": "212-18-0855",
"tcin": "13010837",
"upcList": [
"492121808557",
"085239188552"
],
"subTasks": [
"89420520-a2cf-45da-9c42-a8041d0bab01",
"1387e56d-811f-464a-9843-9cb416a568ca"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105839",
"itemType": "FOOD",
"sortGroup": "3230:B4",
"packLocation": {
"order": 2,
"shelf": "SQUARE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B4",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"b9923b73-e930-48ab-a5a6-76a16289ff7b"
],
"autoSkipTaskId": "b9923b73-e930-48ab-a5a6-76a16289ff7b",
"reservedItemId": "074c28e2-527c-4a9d-a9f8-c7af3bb69104",
"transferOrderId": "100000003419416",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000031895",
"destinationContainerBarcode": "384420700000000062"
},
"children": [
{
"id": "89420520-a2cf-45da-9c42-a8041d0bab01",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:49:09.965Z",
"end_time": "2017-11-03T15:49:09.965Z",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000031895",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-321-010-09-01"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "321"
},
{
"name": "Bay",
"value": "010"
},
{
"name": "Level",
"value": "09"
},
{
"name": "Bin",
"value": "01"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-321-010-09-01"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000031895"
}
},
{
"id": "1387e56d-811f-464a-9843-9cb416a568ca",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:49:14.755Z",
"end_time": "2017-11-03T15:49:14.755Z",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/13010837",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"492121808557",
"085239188552"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Cream of Mushroom Soup 10.5 oz - Market Pantry&#153;",
"SAB1-321-010-09-01"
],
"confirmationRequired": false,
"successMessageParams": [
"085239188552"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"492121808557",
"085239188552"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "e3254a78-732c-4940-9f6e-a991c30b5826",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:49:19.224Z",
"end_time": "2017-11-03T15:49:21.880Z",
"metadata": {
"upc": "085239188552",
"dpci": "212-18-0855",
"tcin": "13010837",
"upcList": [
"492121808557",
"085239188552"
],
"subTasks": [
"34dfdd94-7b48-42ed-91d1-e2fe9dc9a457",
"7a50f2c7-baa5-40be-8b86-03dda817f388"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105839",
"itemType": "FOOD",
"sortGroup": "3230:B4",
"packLocation": {
"order": 2,
"shelf": "SQUARE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B4",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"40b9844a-9692-490b-87fd-548f947f63c8"
],
"autoSkipTaskId": "40b9844a-9692-490b-87fd-548f947f63c8",
"reservedItemId": "860ce556-062f-4de6-a3c4-f2c65d9bd101",
"transferOrderId": "100000003419416",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000031895",
"destinationContainerBarcode": "384420700000000062"
},
"children": [
{
"id": "34dfdd94-7b48-42ed-91d1-e2fe9dc9a457",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:49:19.224Z",
"end_time": "2017-11-03T15:49:19.224Z",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000031895",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-321-010-09-01"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "321"
},
{
"name": "Bay",
"value": "010"
},
{
"name": "Level",
"value": "09"
},
{
"name": "Bin",
"value": "01"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-321-010-09-01"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000031895"
}
},
{
"id": "7a50f2c7-baa5-40be-8b86-03dda817f388",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:49:21.880Z",
"end_time": "2017-11-03T15:49:21.880Z",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/13010837",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"492121808557",
"085239188552"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Cream of Mushroom Soup 10.5 oz - Market Pantry&#153;",
"SAB1-321-010-09-01"
],
"confirmationRequired": false,
"successMessageParams": [
"085239188552"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"492121808557",
"085239188552"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "bcf8410b-a776-4e67-9714-d343979ce928",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:49:32.503Z",
"end_time": "2017-11-03T15:49:37.385Z",
"metadata": {
"upc": "613008720858",
"dpci": "203-00-0183",
"tcin": "13388793",
"upcList": [
"613008720858"
],
"subTasks": [
"61ace4c0-1966-4810-a529-3573971a451e",
"b565ff55-4b78-4691-9089-436f903425da"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105837",
"itemType": "FOOD",
"sortGroup": "3230:C11",
"packLocation": {
"order": 2,
"shelf": "TRIANGLE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "C11",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"db1c874c-729c-4981-86e5-f61a5fcd14f4"
],
"autoSkipTaskId": "db1c874c-729c-4981-86e5-f61a5fcd14f4",
"reservedItemId": "881c44dc-3789-4f0d-bddf-b025d079f975",
"transferOrderId": "100000003419467",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000032021",
"destinationContainerBarcode": "384420700000000062"
},
"children": [
{
"id": "61ace4c0-1966-4810-a529-3573971a451e",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:49:32.503Z",
"end_time": "2017-11-03T15:49:32.503Z",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000032021",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-321-015-06-02"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "321"
},
{
"name": "Bay",
"value": "015"
},
{
"name": "Level",
"value": "06"
},
{
"name": "Bin",
"value": "02"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-321-015-06-02"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000032021"
}
},
{
"id": "b565ff55-4b78-4691-9089-436f903425da",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:49:37.385Z",
"end_time": "2017-11-03T15:49:37.385Z",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/13388793",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"613008720858"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Arizona Arnold Palmer Lite Half Iced Tea & Half Lemonade 128 oz",
"SAB1-321-015-06-02"
],
"confirmationRequired": false,
"successMessageParams": [
"613008720858"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"613008720858"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "d2f0c300-cbab-4040-9dfb-50fd4ed07b0a",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:49:46.254Z",
"end_time": "2017-11-03T15:49:48.396Z",
"metadata": {
"upc": "893869000720",
"dpci": "071-08-2163",
"tcin": "50304558",
"upcList": [
"893869000720",
"848996000426"
],
"subTasks": [
"77a650c0-3225-47b1-b535-060d853da7b3",
"c15ee0a7-741f-4a35-8ffc-adb3e6990b7c"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105838",
"itemType": "FOOD",
"sortGroup": "3230:B13",
"packLocation": {
"order": 1,
"shelf": "TRIANGLE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B13",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"d9584c75-1f8f-43bf-b62f-c7490ba44eb0"
],
"autoSkipTaskId": "d9584c75-1f8f-43bf-b62f-c7490ba44eb0",
"reservedItemId": "6aad71e6-6104-4b0e-b3c5-908e52769342",
"transferOrderId": "100000003417483",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000053317",
"destinationContainerBarcode": "384420700000000062"
},
"children": [
{
"id": "77a650c0-3225-47b1-b535-060d853da7b3",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:49:46.254Z",
"end_time": "2017-11-03T15:49:46.254Z",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000053317",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-321-020-03-02"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "321"
},
{
"name": "Bay",
"value": "020"
},
{
"name": "Level",
"value": "03"
},
{
"name": "Bin",
"value": "02"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-321-020-03-02"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000053317"
}
},
{
"id": "c15ee0a7-741f-4a35-8ffc-adb3e6990b7c",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:49:48.395Z",
"end_time": "2017-11-03T15:49:48.395Z",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/50304558",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"893869000720",
"848996000426"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Sahale Snacks&#174; Pomegranate Flavored Pistachios - 4oz",
"SAB1-321-020-03-02"
],
"confirmationRequired": false,
"successMessageParams": [
"893869000720"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"893869000720",
"848996000426"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "3ff67d30-c30a-429d-9c41-7e1fe38cbf77",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:50:51.333Z",
"end_time": "2017-11-03T15:51:01.484Z",
"metadata": {
"upc": "038000116643",
"dpci": "071-20-0187",
"tcin": "12992349",
"upcList": [
"038000350559",
"038000377891",
"038000265204",
"038000116643",
"490712001875",
"038000466144",
"038000466168"
],
"subTasks": [
"a62458f7-9bd6-497b-b6da-75d9114fdb72",
"e6823a36-0e4d-4655-b16b-3b8b1fa46a4f"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105842",
"itemType": "FOOD",
"sortGroup": "3230:B15",
"packLocation": {
"order": 1,
"shelf": "CIRCLE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B15",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"4f31c00f-ea9b-4cf0-a3c9-0b9639da7667"
],
"autoSkipTaskId": "4f31c00f-ea9b-4cf0-a3c9-0b9639da7667",
"reservedItemId": "3757d3d3-a2cc-43ab-aae0-1351ec708f64",
"transferOrderId": "100000003420772",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000028752",
"destinationContainerBarcode": "384420700000000062"
},
"children": [
{
"id": "a62458f7-9bd6-497b-b6da-75d9114fdb72",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:50:51.333Z",
"end_time": "2017-11-03T15:50:51.333Z",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000028752",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-222-011-07-03"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "222"
},
{
"name": "Bay",
"value": "011"
},
{
"name": "Level",
"value": "07"
},
{
"name": "Bin",
"value": "03"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-222-011-07-03"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000028752"
}
},
{
"id": "e6823a36-0e4d-4655-b16b-3b8b1fa46a4f",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:51:01.484Z",
"end_time": "2017-11-03T15:51:01.484Z",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/12992349",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"038000350559",
"038000377891",
"038000265204",
"038000116643",
"490712001875",
"038000466144",
"038000466168"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Kellogg's Rice Krispies Treats Original Marshmallow Squares - 16ct",
"SAB1-222-011-07-03"
],
"confirmationRequired": false,
"successMessageParams": [
"038000116643"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"038000350559",
"038000377891",
"038000265204",
"038000116643",
"490712001875",
"038000466144",
"038000466168"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "74f61230-fd66-4062-92e6-ff0a1f787366",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:51:24.985Z",
"end_time": "2017-11-03T15:51:29.881Z",
"metadata": {
"upc": "014113912549",
"dpci": "071-08-0081",
"tcin": "14388320",
"upcList": [
"490710800814",
"014113912549"
],
"subTasks": [
"d968335a-aa2d-497f-b7d0-203116bef7de",
"9250e72b-c7cb-4aee-9cd5-7fbb3d42de41"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105838",
"itemType": "FOOD",
"sortGroup": "3230:B13",
"packLocation": {
"order": 1,
"shelf": "TRIANGLE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B13",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"f8b02bb7-2e05-4689-906a-bf61d892a43a"
],
"autoSkipTaskId": "f8b02bb7-2e05-4689-906a-bf61d892a43a",
"reservedItemId": "7f68cfc5-2ab1-4922-8e77-c3c53b56ac40",
"transferOrderId": "100000003423292",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000028072",
"destinationContainerBarcode": "384420700000000062"
},
"children": [
{
"id": "d968335a-aa2d-497f-b7d0-203116bef7de",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:51:24.985Z",
"end_time": "2017-11-03T15:51:24.985Z",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000028072",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-221-004-02-03"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "221"
},
{
"name": "Bay",
"value": "004"
},
{
"name": "Level",
"value": "02"
},
{
"name": "Bin",
"value": "03"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-221-004-02-03"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000028072"
}
},
{
"id": "9250e72b-c7cb-4aee-9cd5-7fbb3d42de41",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:51:29.880Z",
"end_time": "2017-11-03T15:51:29.880Z",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/14388320",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"490710800814",
"014113912549"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Wonderful Roasted & Salted No Shells Pistachios - 12oz",
"SAB1-221-004-02-03"
],
"confirmationRequired": false,
"successMessageParams": [
"014113912549"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"490710800814",
"014113912549"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "2bdb5e75-807d-4ecd-9f69-0b3f68ad647b",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:51:34.899Z",
"end_time": "2017-11-03T15:51:36.900Z",
"metadata": {
"upc": "014113912549",
"dpci": "071-08-0081",
"tcin": "14388320",
"upcList": [
"490710800814",
"014113912549"
],
"subTasks": [
"6e7df8fc-023f-49c9-8351-d9b38de23aaf",
"2256059f-038f-43c3-8fc0-bb0cf3ccf9dd"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105838",
"itemType": "FOOD",
"sortGroup": "3230:B13",
"packLocation": {
"order": 1,
"shelf": "TRIANGLE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B13",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"1cdaa177-2d82-43a8-85f6-61afd420bfc3"
],
"autoSkipTaskId": "1cdaa177-2d82-43a8-85f6-61afd420bfc3",
"reservedItemId": "02fe213f-4c0b-46ff-895b-1826d30812a2",
"transferOrderId": "100000003423292",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000028072",
"destinationContainerBarcode": "384420700000000062"
},
"children": [
{
"id": "6e7df8fc-023f-49c9-8351-d9b38de23aaf",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:51:34.899Z",
"end_time": "2017-11-03T15:51:34.899Z",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000028072",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-221-004-02-03"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "221"
},
{
"name": "Bay",
"value": "004"
},
{
"name": "Level",
"value": "02"
},
{
"name": "Bin",
"value": "03"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-221-004-02-03"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000028072"
}
},
{
"id": "2256059f-038f-43c3-8fc0-bb0cf3ccf9dd",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:51:36.899Z",
"end_time": "2017-11-03T15:51:36.899Z",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/14388320",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"490710800814",
"014113912549"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Wonderful Roasted & Salted No Shells Pistachios - 12oz",
"SAB1-221-004-02-03"
],
"confirmationRequired": false,
"successMessageParams": [
"014113912549"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"490710800814",
"014113912549"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "dfcf3da8-b441-4d28-8609-9e3c1e5cb3a4",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:51:47.116Z",
"end_time": "2017-11-03T15:51:51.431Z",
"metadata": {
"upc": "085239806524",
"dpci": "071-08-0652",
"tcin": "15061595",
"upcList": [
"085239806524",
"490710806526",
"085239086520"
],
"subTasks": [
"f4fb4226-92a0-41e1-bd70-1990f05e6db6",
"ddbec932-3874-457b-a9bb-f1126d2f3f09"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105838",
"itemType": "FOOD",
"sortGroup": "3230:B13",
"packLocation": {
"order": 1,
"shelf": "TRIANGLE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B13",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"7d0b2f2e-9d54-4311-9c62-e5497d365730"
],
"autoSkipTaskId": "7d0b2f2e-9d54-4311-9c62-e5497d365730",
"reservedItemId": "a54f92b4-6561-46ad-83c7-72f05bb52325",
"transferOrderId": "100000003423131",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000028294",
"destinationContainerBarcode": "384420700000000062"
},
"children": [
{
"id": "f4fb4226-92a0-41e1-bd70-1990f05e6db6",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:51:47.116Z",
"end_time": "2017-11-03T15:51:47.116Z",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000028294",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-221-012-06-01"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "221"
},
{
"name": "Bay",
"value": "012"
},
{
"name": "Level",
"value": "06"
},
{
"name": "Bin",
"value": "01"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-221-012-06-01"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000028294"
}
},
{
"id": "ddbec932-3874-457b-a9bb-f1126d2f3f09",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:51:51.430Z",
"end_time": "2017-11-03T15:51:51.430Z",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/15061595",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"085239806524",
"490710806526",
"085239086520"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Lightly Salted Roasted Almonds - 11oz - Archer Farms&#153;",
"SAB1-221-012-06-01"
],
"confirmationRequired": false,
"successMessageParams": [
"085239806524"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"085239806524",
"490710806526",
"085239086520"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "e0ac97a4-1f37-471d-8f8e-e7fb43af502f",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:52:05.864Z",
"end_time": "2017-11-03T15:52:09.611Z",
"metadata": {
"upc": "013562000456",
"dpci": "212-14-0125",
"tcin": "12936057",
"upcList": [
"013562000456"
],
"subTasks": [
"80934f35-6416-4bc7-8c1e-89bd2a8790e0",
"81c2159a-5568-4c5a-b41b-61d3405260ce"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105839",
"itemType": "FOOD",
"sortGroup": "3230:B4",
"packLocation": {
"order": 2,
"shelf": "SQUARE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B4",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"40ce4604-c43e-45b7-a16a-7e6e562127c4"
],
"autoSkipTaskId": "40ce4604-c43e-45b7-a16a-7e6e562127c4",
"reservedItemId": "8f7e9117-d9e4-400f-bbaf-ed81de5436e2",
"transferOrderId": "100000003420329",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000028272",
"destinationContainerBarcode": "384420700000000062"
},
"children": [
{
"id": "80934f35-6416-4bc7-8c1e-89bd2a8790e0",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:52:05.864Z",
"end_time": "2017-11-03T15:52:05.864Z",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000028272",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-221-011-07-02"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "221"
},
{
"name": "Bay",
"value": "011"
},
{
"name": "Level",
"value": "07"
},
{
"name": "Bin",
"value": "02"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-221-011-07-02"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000028272"
}
},
{
"id": "81c2159a-5568-4c5a-b41b-61d3405260ce",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:52:09.610Z",
"end_time": "2017-11-03T15:52:09.610Z",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/12936057",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"013562000456"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Annie's&#174; Macaroni & Cheese 6oz",
"SAB1-221-011-07-02"
],
"confirmationRequired": false,
"successMessageParams": [
"013562000456"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"013562000456"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "80dc8ac2-eb83-4e54-ae84-f62b06d9e52b",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:52:29.478Z",
"end_time": "2017-11-03T15:52:34.666Z",
"metadata": {
"upc": "085239203200",
"dpci": "071-18-0250",
"tcin": "14576140",
"upcList": [
"490711802503",
"085239203200"
],
"subTasks": [
"2c63105c-e1e1-4828-b9f4-820c45e7f1c2",
"d70e8571-e2a5-4082-8570-79155d82c336"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105842",
"itemType": "FOOD",
"sortGroup": "3230:B15",
"packLocation": {
"order": 1,
"shelf": "CIRCLE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B15",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"d4b374e3-134b-42c4-b164-2f2913d0c8ee"
],
"autoSkipTaskId": "d4b374e3-134b-42c4-b164-2f2913d0c8ee",
"reservedItemId": "f4bb7cb4-48d8-41a9-bf67-aadb065ce07a",
"transferOrderId": "100000003420440",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000027960",
"destinationContainerBarcode": "384420700000000062"
},
"children": [
{
"id": "2c63105c-e1e1-4828-b9f4-820c45e7f1c2",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:52:29.478Z",
"end_time": "2017-11-03T15:52:29.478Z",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000027960",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-220-017-08-03"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "220"
},
{
"name": "Bay",
"value": "017"
},
{
"name": "Level",
"value": "08"
},
{
"name": "Bin",
"value": "03"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-220-017-08-03"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000027960"
}
},
{
"id": "d70e8571-e2a5-4082-8570-79155d82c336",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:52:34.665Z",
"end_time": "2017-11-03T15:52:34.665Z",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/14576140",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"490711802503",
"085239203200"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Raspberry Lemonade Twisted Fruit Ropes 8ct - Simply Balanced&#153;",
"SAB1-220-017-08-03"
],
"confirmationRequired": false,
"successMessageParams": [
"085239203200"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"490711802503",
"085239203200"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "ddfd4f36-a01e-486c-868b-83b4736b9bbb",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:52:38.276Z",
"end_time": "2017-11-03T15:52:42.816Z",
"metadata": {
"upc": "085239203200",
"dpci": "071-18-0250",
"tcin": "14576140",
"upcList": [
"490711802503",
"085239203200"
],
"subTasks": [
"311878b3-d2d8-4635-bc55-3afa20515a73",
"9cbd7295-8c55-420e-8228-4141c2b44acb"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105842",
"itemType": "FOOD",
"sortGroup": "3230:B15",
"packLocation": {
"order": 1,
"shelf": "CIRCLE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B15",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"9c056a7d-a962-4067-a89b-2bbb01c8468f"
],
"autoSkipTaskId": "9c056a7d-a962-4067-a89b-2bbb01c8468f",
"reservedItemId": "79d9d454-929b-4c15-a6ab-69cccf8b0985",
"transferOrderId": "100000003420440",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000027956",
"destinationContainerBarcode": "384420700000000062"
},
"children": [
{
"id": "311878b3-d2d8-4635-bc55-3afa20515a73",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:52:38.276Z",
"end_time": "2017-11-03T15:52:38.276Z",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000027956",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-220-017-07-02"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "220"
},
{
"name": "Bay",
"value": "017"
},
{
"name": "Level",
"value": "07"
},
{
"name": "Bin",
"value": "02"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-220-017-07-02"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000027956"
}
},
{
"id": "9cbd7295-8c55-420e-8228-4141c2b44acb",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:52:42.815Z",
"end_time": "2017-11-03T15:52:42.815Z",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/14576140",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"490711802503",
"085239203200"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Raspberry Lemonade Twisted Fruit Ropes 8ct - Simply Balanced&#153;",
"SAB1-220-017-07-02"
],
"confirmationRequired": false,
"successMessageParams": [
"085239203200"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"490711802503",
"085239203200"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "f4b61c52-cfa3-440a-ba0b-b0a447081b75",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:52:47.575Z",
"end_time": "2017-11-03T15:52:52.865Z",
"metadata": {
"upc": "085239084335",
"dpci": "071-08-1433",
"tcin": "13130348",
"upcList": [
"490710814330",
"085239084335"
],
"subTasks": [
"0ce03577-5a0a-4e30-92c6-18c5bebfbcf2",
"a90fc824-e711-4def-a96d-c48f152d6a97"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105838",
"itemType": "FOOD",
"sortGroup": "3230:B13",
"packLocation": {
"order": 1,
"shelf": "TRIANGLE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B13",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"34a947d1-6ea9-466a-b57e-fdb977d88950"
],
"autoSkipTaskId": "34a947d1-6ea9-466a-b57e-fdb977d88950",
"reservedItemId": "d6361414-6c25-42a5-bae5-c8334b36e56b",
"transferOrderId": "100000003419258",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000027942",
"destinationContainerBarcode": "384420700000000062"
},
"children": [
{
"id": "0ce03577-5a0a-4e30-92c6-18c5bebfbcf2",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:52:47.575Z",
"end_time": "2017-11-03T15:52:47.575Z",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000027942",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-220-017-02-03"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "220"
},
{
"name": "Bay",
"value": "017"
},
{
"name": "Level",
"value": "02"
},
{
"name": "Bin",
"value": "03"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-220-017-02-03"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000027942"
}
},
{
"id": "a90fc824-e711-4def-a96d-c48f152d6a97",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:52:52.865Z",
"end_time": "2017-11-03T15:52:52.865Z",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/13130348",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"490710814330",
"085239084335"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Unsalted Raw Almonds - 32oz - Archer Farms&#153;",
"SAB1-220-017-02-03"
],
"confirmationRequired": false,
"successMessageParams": [
"085239084335"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"490710814330",
"085239084335"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "ed8dab2b-ccba-4837-af12-4c0c46d062c0",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:53:04.889Z",
"end_time": "2017-11-03T15:53:09.347Z",
"metadata": {
"upc": "037600107433",
"dpci": "212-18-0581",
"tcin": "13220942",
"upcList": [
"037600491204",
"492121805815",
"037600107433",
"376001074334"
],
"subTasks": [
"f339b36d-8a24-40c0-b2b1-d605e48f3c4b",
"3f4accb2-ee33-47a4-ba9c-cf10746b0b13"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105839",
"itemType": "FOOD",
"sortGroup": "3230:B4",
"packLocation": {
"order": 2,
"shelf": "SQUARE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B4",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"a978ddde-f6e9-469b-93a5-11f3d5667c1e"
],
"autoSkipTaskId": "a978ddde-f6e9-469b-93a5-11f3d5667c1e",
"reservedItemId": "c320e74d-8eb8-41e2-9819-e33c62b7e4e3",
"transferOrderId": "100000003416857",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000027806",
"destinationContainerBarcode": "384420700000000062"
},
"children": [
{
"id": "f339b36d-8a24-40c0-b2b1-d605e48f3c4b",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:53:04.889Z",
"end_time": "2017-11-03T15:53:04.889Z",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000027806",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-220-011-10-02"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "220"
},
{
"name": "Bay",
"value": "011"
},
{
"name": "Level",
"value": "10"
},
{
"name": "Bin",
"value": "02"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-220-011-10-02"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000027806"
}
},
{
"id": "3f4accb2-ee33-47a4-ba9c-cf10746b0b13",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:53:09.347Z",
"end_time": "2017-11-03T15:53:09.347Z",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/13220942",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"037600491204",
"492121805815",
"037600107433",
"376001074334"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Hormel 99% Fat Free Turkey with Beans Chili 15 oz",
"SAB1-220-011-10-02"
],
"confirmationRequired": false,
"successMessageParams": [
"037600107433"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"037600491204",
"492121805815",
"037600107433",
"376001074334"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "b133fc31-1f97-4d8f-82b1-6b906d2ae149",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:53:14.200Z",
"end_time": "2017-11-03T15:53:25.907Z",
"metadata": {
"upc": "037600107433",
"dpci": "212-18-0581",
"tcin": "13220942",
"upcList": [
"037600491204",
"492121805815",
"037600107433",
"376001074334"
],
"subTasks": [
"b3363974-c14f-4188-b2d3-0b98caa9d20c",
"da7291ac-a139-49cf-8d39-bc6eb80efe6f"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105839",
"itemType": "FOOD",
"sortGroup": "3230:B4",
"packLocation": {
"order": 2,
"shelf": "SQUARE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B4",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"2ea20cb3-c138-43fc-9738-b1303acf636e"
],
"autoSkipTaskId": "2ea20cb3-c138-43fc-9738-b1303acf636e",
"reservedItemId": "4b0a930c-fdeb-47dd-a4b1-b3a438eba430",
"transferOrderId": "100000003416857",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000027806",
"destinationContainerBarcode": "384420700000000062"
},
"children": [
{
"id": "b3363974-c14f-4188-b2d3-0b98caa9d20c",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:53:14.200Z",
"end_time": "2017-11-03T15:53:14.200Z",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000027806",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-220-011-10-02"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "220"
},
{
"name": "Bay",
"value": "011"
},
{
"name": "Level",
"value": "10"
},
{
"name": "Bin",
"value": "02"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-220-011-10-02"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000027806"
}
},
{
"id": "da7291ac-a139-49cf-8d39-bc6eb80efe6f",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:53:25.906Z",
"end_time": "2017-11-03T15:53:25.906Z",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/13220942",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"037600491204",
"492121805815",
"037600107433",
"376001074334"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Hormel 99% Fat Free Turkey with Beans Chili 15 oz",
"SAB1-220-011-10-02"
],
"confirmationRequired": false,
"successMessageParams": [
"037600107433"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"037600491204",
"492121805815",
"037600107433",
"376001074334"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "9c9128eb-23be-4f3c-9250-062f55c00ef6",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:53:29.608Z",
"end_time": "2017-11-03T15:53:31.661Z",
"metadata": {
"upc": "037600107433",
"dpci": "212-18-0581",
"tcin": "13220942",
"upcList": [
"037600491204",
"492121805815",
"037600107433",
"376001074334"
],
"subTasks": [
"5cbccb60-15a6-4799-9773-496f5e14e791",
"b4029dec-a6a5-4e58-95aa-1fe2b5dedf26"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105839",
"itemType": "FOOD",
"sortGroup": "3230:B4",
"packLocation": {
"order": 2,
"shelf": "SQUARE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B4",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"3440451c-45ce-407f-8ed7-93487bfef97c"
],
"autoSkipTaskId": "3440451c-45ce-407f-8ed7-93487bfef97c",
"reservedItemId": "daed7d22-dc22-4688-acc2-83a728762161",
"transferOrderId": "100000003416857",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000027806",
"destinationContainerBarcode": "384420700000000062"
},
"children": [
{
"id": "5cbccb60-15a6-4799-9773-496f5e14e791",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:53:29.608Z",
"end_time": "2017-11-03T15:53:29.608Z",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000027806",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-220-011-10-02"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "220"
},
{
"name": "Bay",
"value": "011"
},
{
"name": "Level",
"value": "10"
},
{
"name": "Bin",
"value": "02"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-220-011-10-02"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000027806"
}
},
{
"id": "b4029dec-a6a5-4e58-95aa-1fe2b5dedf26",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:53:31.661Z",
"end_time": "2017-11-03T15:53:31.661Z",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/13220942",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"037600491204",
"492121805815",
"037600107433",
"376001074334"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Hormel 99% Fat Free Turkey with Beans Chili 15 oz",
"SAB1-220-011-10-02"
],
"confirmationRequired": false,
"successMessageParams": [
"037600107433"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"037600491204",
"492121805815",
"037600107433",
"376001074334"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "6fde48da-e3b1-4de1-bf90-b141c889b1f0",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:53:45.265Z",
"end_time": "2017-11-03T15:53:50.621Z",
"metadata": {
"upc": "051000245083",
"dpci": "212-18-1319",
"tcin": "52112566",
"upcList": [
"051000245083"
],
"subTasks": [
"5a3b70ff-bd41-4cfa-8748-d8c287b76861",
"db3c0205-4943-42ef-81ed-b3ea1f2d6be7"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105839",
"itemType": "FOOD",
"sortGroup": "3230:B4",
"packLocation": {
"order": 2,
"shelf": "SQUARE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B4",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"59b5478e-3637-4906-99ef-b9d400b771e2"
],
"autoSkipTaskId": "59b5478e-3637-4906-99ef-b9d400b771e2",
"reservedItemId": "5bbecb93-ccdd-4dbc-b965-08c90e02d77e",
"transferOrderId": "100000003417047",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000027748",
"destinationContainerBarcode": "384420700000000062"
},
"children": [
{
"id": "5a3b70ff-bd41-4cfa-8748-d8c287b76861",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:53:45.265Z",
"end_time": "2017-11-03T15:53:45.265Z",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000027748",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-220-009-08-03"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "220"
},
{
"name": "Bay",
"value": "009"
},
{
"name": "Level",
"value": "08"
},
{
"name": "Bin",
"value": "03"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-220-009-08-03"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000027748"
}
},
{
"id": "db3c0205-4943-42ef-81ed-b3ea1f2d6be7",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:53:50.620Z",
"end_time": "2017-11-03T15:53:50.620Z",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/52112566",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"051000245083"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Campbell's&#174; Well Yes!&#153; Soup Butternut Squash - 16.3oz",
"SAB1-220-009-08-03"
],
"confirmationRequired": false,
"successMessageParams": [
"051000245083"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"051000245083"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "851a64ee-9cb2-40c5-9bf0-c317947fd017",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:53:53.821Z",
"end_time": "2017-11-03T15:53:55.626Z",
"metadata": {
"upc": "051000245083",
"dpci": "212-18-1319",
"tcin": "52112566",
"upcList": [
"051000245083"
],
"subTasks": [
"cba2dc12-f8f3-41bb-9d0e-219a53d5a6b4",
"ddd930e6-1b0f-4b78-810a-68fca18de1a7"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105839",
"itemType": "FOOD",
"sortGroup": "3230:B4",
"packLocation": {
"order": 2,
"shelf": "SQUARE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B4",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"bdb6e001-0747-4ec5-b731-cb194171ebc7"
],
"autoSkipTaskId": "bdb6e001-0747-4ec5-b731-cb194171ebc7",
"reservedItemId": "768e8f57-3e4c-4e72-bec0-1a27cfa8c489",
"transferOrderId": "100000003417047",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000027748",
"destinationContainerBarcode": "384420700000000062"
},
"children": [
{
"id": "cba2dc12-f8f3-41bb-9d0e-219a53d5a6b4",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:53:53.821Z",
"end_time": "2017-11-03T15:53:53.821Z",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000027748",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-220-009-08-03"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "220"
},
{
"name": "Bay",
"value": "009"
},
{
"name": "Level",
"value": "08"
},
{
"name": "Bin",
"value": "03"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-220-009-08-03"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000027748"
}
},
{
"id": "ddd930e6-1b0f-4b78-810a-68fca18de1a7",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:53:55.625Z",
"end_time": "2017-11-03T15:53:55.625Z",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/52112566",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"051000245083"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Campbell's&#174; Well Yes!&#153; Soup Butternut Squash - 16.3oz",
"SAB1-220-009-08-03"
],
"confirmationRequired": false,
"successMessageParams": [
"051000245083"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"051000245083"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "4043f04b-ebe6-49b4-a685-93388ca9d2e6",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:54:00.210Z",
"end_time": "2017-11-03T15:54:02.126Z",
"metadata": {
"upc": "051000245083",
"dpci": "212-18-1319",
"tcin": "52112566",
"upcList": [
"051000245083"
],
"subTasks": [
"d6be1324-60e5-4524-90ec-99b80034a0c0",
"fcc0bcbe-541a-4477-8fb6-5d931da08e94"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105839",
"itemType": "FOOD",
"sortGroup": "3230:B4",
"packLocation": {
"order": 2,
"shelf": "SQUARE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B4",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"64074ac0-c83d-44ce-a39c-28f444181841"
],
"autoSkipTaskId": "64074ac0-c83d-44ce-a39c-28f444181841",
"reservedItemId": "80a2a93a-2e01-4590-868b-31241a75c173",
"transferOrderId": "100000003417047",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000027743",
"destinationContainerBarcode": "384420700000000062"
},
"children": [
{
"id": "d6be1324-60e5-4524-90ec-99b80034a0c0",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:54:00.210Z",
"end_time": "2017-11-03T15:54:00.210Z",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000027743",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-220-009-07-01"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "220"
},
{
"name": "Bay",
"value": "009"
},
{
"name": "Level",
"value": "07"
},
{
"name": "Bin",
"value": "01"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-220-009-07-01"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000027743"
}
},
{
"id": "fcc0bcbe-541a-4477-8fb6-5d931da08e94",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:54:02.125Z",
"end_time": "2017-11-03T15:54:02.125Z",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/52112566",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"051000245083"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Campbell's&#174; Well Yes!&#153; Soup Butternut Squash - 16.3oz",
"SAB1-220-009-07-01"
],
"confirmationRequired": false,
"successMessageParams": [
"051000245083"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"051000245083"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "323952ca-f5e9-4097-9891-ca3b593fc29d",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:54:25.286Z",
"end_time": "2017-11-03T15:54:28.142Z",
"metadata": {
"upc": "041570059173",
"dpci": "071-08-1543",
"tcin": "12920863",
"upcList": [
"041570059173",
"490710815436"
],
"subTasks": [
"7b90bcec-a859-4664-b0a3-135241906d15",
"1e4b1432-f17c-4c3d-b5e3-0a9e96009c2e"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105838",
"itemType": "FOOD",
"sortGroup": "3230:B13",
"packLocation": {
"order": 1,
"shelf": "TRIANGLE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B13",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"84545b9b-efca-448d-bf45-5024e8da65e4"
],
"autoSkipTaskId": "84545b9b-efca-448d-bf45-5024e8da65e4",
"reservedItemId": "4ad52307-b6d4-4a69-b3e8-4cd698409d56",
"transferOrderId": "100000003417147",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000027546",
"destinationContainerBarcode": "384420700000000062"
},
"children": [
{
"id": "7b90bcec-a859-4664-b0a3-135241906d15",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:54:25.286Z",
"end_time": "2017-11-03T15:54:25.286Z",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000027546",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-220-002-02-03"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "220"
},
{
"name": "Bay",
"value": "002"
},
{
"name": "Level",
"value": "02"
},
{
"name": "Bin",
"value": "03"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-220-002-02-03"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000027546"
}
},
{
"id": "1e4b1432-f17c-4c3d-b5e3-0a9e96009c2e",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:54:28.141Z",
"end_time": "2017-11-03T15:54:28.141Z",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/12920863",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"041570059173",
"490710815436"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Blue Diamond Almonds Whole Natural - 12oz",
"SAB1-220-002-02-03"
],
"confirmationRequired": false,
"successMessageParams": [
"041570059173"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"041570059173",
"490710815436"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "49fec7db-5dc9-467d-94fd-861e140b0998",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:54:58.645Z",
"end_time": "2017-11-03T15:55:01.961Z",
"metadata": {
"upc": "085239641088",
"dpci": "071-08-0641",
"tcin": "13277670",
"upcList": [
"085239641088",
"085239086414",
"490710806410"
],
"subTasks": [
"b7a95dc6-28b8-4c41-8d72-10789239532a",
"6b2f2380-a59b-4952-af86-81e2aaf6362b"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105838",
"itemType": "FOOD",
"sortGroup": "3230:B13",
"packLocation": {
"order": 1,
"shelf": "TRIANGLE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B13",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"d18fdf9b-cd5e-4a5e-9c05-b7abbc79df16"
],
"autoSkipTaskId": "d18fdf9b-cd5e-4a5e-9c05-b7abbc79df16",
"reservedItemId": "ab579251-b620-4766-82b1-686d6264c8c7",
"transferOrderId": "100000003419146",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000027211",
"destinationContainerBarcode": "384420700000000062"
},
"children": [
{
"id": "b7a95dc6-28b8-4c41-8d72-10789239532a",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:54:58.645Z",
"end_time": "2017-11-03T15:54:58.645Z",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000027211",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-219-007-07-01"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "219"
},
{
"name": "Bay",
"value": "007"
},
{
"name": "Level",
"value": "07"
},
{
"name": "Bin",
"value": "01"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-219-007-07-01"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000027211"
}
},
{
"id": "6b2f2380-a59b-4952-af86-81e2aaf6362b",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:55:01.961Z",
"end_time": "2017-11-03T15:55:01.961Z",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/13277670",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"085239641088",
"085239086414",
"490710806410"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Dry Roasted Lightly Salted Peanuts - 16oz - Market Pantry&#153;",
"SAB1-219-007-07-01"
],
"confirmationRequired": false,
"successMessageParams": [
"085239641088"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"085239641088",
"085239086414",
"490710806410"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "2d18f79a-1d21-43a7-b746-ea1453b3761e",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:55:36.510Z",
"end_time": "2017-11-03T15:55:39.605Z",
"metadata": {
"upc": "085239007167",
"dpci": "071-06-1308",
"tcin": "15024986",
"upcList": [
"085239613085",
"085239007167",
"490710613087"
],
"subTasks": [
"27c46307-95d9-4b05-b45c-28a8672b88a9",
"0b8d712a-bf29-4635-a58d-5181c5f0a813"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105841",
"itemType": "FOOD",
"sortGroup": "3230:B14",
"packLocation": {
"order": 2,
"shelf": "CIRCLE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B14",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"9caff4aa-9f4b-4bd0-99d3-82a808f233f5"
],
"autoSkipTaskId": "9caff4aa-9f4b-4bd0-99d3-82a808f233f5",
"reservedItemId": "26becb19-17ed-479a-ae57-3d0c44e38064",
"transferOrderId": "100000003409314",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000026969",
"destinationContainerBarcode": "384420700000000062"
},
"children": [
{
"id": "27c46307-95d9-4b05-b45c-28a8672b88a9",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:55:36.510Z",
"end_time": "2017-11-03T15:55:36.510Z",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000026969",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-218-016-04-03"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "218"
},
{
"name": "Bay",
"value": "016"
},
{
"name": "Level",
"value": "04"
},
{
"name": "Bin",
"value": "03"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-218-016-04-03"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000026969"
}
},
{
"id": "0b8d712a-bf29-4635-a58d-5181c5f0a813",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:55:39.605Z",
"end_time": "2017-11-03T15:55:39.605Z",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/15024986",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"085239613085",
"085239007167",
"490710613087"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Crinkle-Cut Sweet Potato Chips - 8oz - Archer Farms&#153;",
"SAB1-218-016-04-03"
],
"confirmationRequired": false,
"successMessageParams": [
"085239007167"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"085239613085",
"085239007167",
"490710613087"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "29ece673-ab09-4b53-b9a6-b2d4d5abca03",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:55:46.228Z",
"end_time": "2017-11-03T15:55:48.889Z",
"metadata": {
"upc": "085239007167",
"dpci": "071-06-1308",
"tcin": "15024986",
"upcList": [
"085239613085",
"085239007167",
"490710613087"
],
"subTasks": [
"90d10125-7a03-44a8-8e35-9bc2af67bf6e",
"49a2a436-c3d1-4ecb-97a9-7b9c2fea0c25"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105840",
"itemType": "FOOD",
"sortGroup": "3230:B14",
"packLocation": {
"order": 1,
"shelf": "SQUARE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B14",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"e99d8e78-5d42-4aa3-8af6-cd1e5a052cd9"
],
"autoSkipTaskId": "e99d8e78-5d42-4aa3-8af6-cd1e5a052cd9",
"reservedItemId": "6b19607e-72b1-4ae0-8d6a-1eddcd8b55c0",
"transferOrderId": "100000003420117",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000026969",
"destinationContainerBarcode": "384420700000000062"
},
"children": [
{
"id": "90d10125-7a03-44a8-8e35-9bc2af67bf6e",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:55:46.227Z",
"end_time": "2017-11-03T15:55:46.227Z",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000026969",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-218-016-04-03"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "218"
},
{
"name": "Bay",
"value": "016"
},
{
"name": "Level",
"value": "04"
},
{
"name": "Bin",
"value": "03"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-218-016-04-03"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000026969"
}
},
{
"id": "49a2a436-c3d1-4ecb-97a9-7b9c2fea0c25",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:55:48.889Z",
"end_time": "2017-11-03T15:55:48.889Z",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/15024986",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"085239613085",
"085239007167",
"490710613087"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Crinkle-Cut Sweet Potato Chips - 8oz - Archer Farms&#153;",
"SAB1-218-016-04-03"
],
"confirmationRequired": false,
"successMessageParams": [
"085239007167"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"085239613085",
"085239007167",
"490710613087"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "b463d455-104c-4c1f-a536-81613169e793",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:55:55.262Z",
"end_time": "2017-11-03T15:56:00.057Z",
"metadata": {
"upc": "657622111753",
"dpci": "203-16-0123",
"tcin": "13176604",
"upcList": [
"657622111753",
"657622919076"
],
"subTasks": [
"d7803dd0-1943-4f6d-9143-7277d495c2fc",
"c0305128-aee9-43f9-908a-00a6a2068809"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105837",
"itemType": "FOOD",
"sortGroup": "3230:C11",
"packLocation": {
"order": 2,
"shelf": "TRIANGLE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "C11",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"c29719bc-c570-4aed-992b-2369851d1346"
],
"autoSkipTaskId": "c29719bc-c570-4aed-992b-2369851d1346",
"reservedItemId": "bbaa5510-c766-4858-9ca9-e12e99432128",
"transferOrderId": "100000003419552",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000026925",
"destinationContainerBarcode": "384420700000000062"
},
"children": [
{
"id": "d7803dd0-1943-4f6d-9143-7277d495c2fc",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:55:55.261Z",
"end_time": "2017-11-03T15:55:55.261Z",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000026925",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-218-014-08-01"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "218"
},
{
"name": "Bay",
"value": "014"
},
{
"name": "Level",
"value": "08"
},
{
"name": "Bin",
"value": "01"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-218-014-08-01"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000026925"
}
},
{
"id": "c0305128-aee9-43f9-908a-00a6a2068809",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:56:00.056Z",
"end_time": "2017-11-03T15:56:00.056Z",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/13176604",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"657622111753",
"657622919076"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Honest Kids Super Fruit Punch Organic Juice Drinks 8 ct",
"SAB1-218-014-08-01"
],
"confirmationRequired": false,
"successMessageParams": [
"657622111753"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"657622111753",
"657622919076"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "803a5641-fabe-4dbb-bfec-95166326de02",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:56:14.110Z",
"end_time": "2017-11-03T15:56:16.149Z",
"metadata": {
"upc": "085239385906",
"dpci": "212-38-0590",
"tcin": "13383392",
"upcList": [
"085239385906"
],
"subTasks": [
"1aa6c0b7-bf7c-4f68-beb9-4be99b695337",
"b52e1dd2-f068-4eb9-bebc-9d6ff7054f24"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105839",
"itemType": "FOOD",
"sortGroup": "3230:B4",
"packLocation": {
"order": 2,
"shelf": "SQUARE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B4",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"2a81a3e0-3c05-414f-bb5e-336f7e57172c"
],
"autoSkipTaskId": "2a81a3e0-3c05-414f-bb5e-336f7e57172c",
"reservedItemId": "0b6c57da-876b-4e82-960c-384136997357",
"transferOrderId": "100000003419243",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000026666",
"destinationContainerBarcode": "384420700000000062"
},
"children": [
{
"id": "1aa6c0b7-bf7c-4f68-beb9-4be99b695337",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:56:14.110Z",
"end_time": "2017-11-03T15:56:14.110Z",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000026666",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-218-005-01-02"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "218"
},
{
"name": "Bay",
"value": "005"
},
{
"name": "Level",
"value": "01"
},
{
"name": "Bin",
"value": "02"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-218-005-01-02"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000026666"
}
},
{
"id": "b52e1dd2-f068-4eb9-bebc-9d6ff7054f24",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:56:16.148Z",
"end_time": "2017-11-03T15:56:16.148Z",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/13383392",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"085239385906"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Rigatoni Pasta - 16oz - Market Pantry&#153;",
"SAB1-218-005-01-02"
],
"confirmationRequired": false,
"successMessageParams": [
"085239385906"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"085239385906"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "f740a935-304e-45ec-bcb2-9f20bb3acbf2",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:56:35.767Z",
"end_time": "2017-11-03T15:56:39.597Z",
"metadata": {
"upc": "041143092798",
"dpci": "261-07-0016",
"tcin": "12935459",
"upcList": [
"041143092798",
"041143092897",
"041143092767",
"041143092668"
],
"subTasks": [
"d2b5cc5e-8a80-43f3-88de-ea2fca8be63b",
"94de6edb-763f-4022-b84a-d5d8c4ecdd91"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105838",
"itemType": "FOOD",
"sortGroup": "3230:B13",
"packLocation": {
"order": 1,
"shelf": "TRIANGLE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B13",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"bba8aaaa-6279-410b-8951-c9f906a96d00"
],
"autoSkipTaskId": "bba8aaaa-6279-410b-8951-c9f906a96d00",
"reservedItemId": "5f4cd84f-651a-4ba4-8d6d-d01611e6e02c",
"transferOrderId": "100000003418312",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000026084",
"destinationContainerBarcode": "384420700000000062"
},
"children": [
{
"id": "d2b5cc5e-8a80-43f3-88de-ea2fca8be63b",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:56:35.766Z",
"end_time": "2017-11-03T15:56:35.766Z",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000026084",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-217-002-07-01"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "217"
},
{
"name": "Bay",
"value": "002"
},
{
"name": "Level",
"value": "07"
},
{
"name": "Bin",
"value": "01"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-217-002-07-01"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000026084"
}
},
{
"id": "94de6edb-763f-4022-b84a-d5d8c4ecdd91",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:56:39.596Z",
"end_time": "2017-11-03T15:56:39.596Z",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/12935459",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"041143092798",
"041143092897",
"041143092767",
"041143092668"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Sun-Maid Vanilla Yogurt Raisins Halloween Mini-Snacks 10 ct",
"SAB1-217-002-07-01"
],
"confirmationRequired": false,
"successMessageParams": [
"041143092798"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"041143092798",
"041143092897",
"041143092767",
"041143092668"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "a7594cd7-c008-4390-ba17-cd3f004b548e",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:56:45.095Z",
"end_time": "2017-11-03T15:56:47.261Z",
"metadata": {
"upc": "041143092798",
"dpci": "261-07-0016",
"tcin": "12935459",
"upcList": [
"041143092798",
"041143092897",
"041143092767",
"041143092668"
],
"subTasks": [
"61304db2-207c-421f-bc7a-d21c00b9daed",
"cc0a0923-de43-4260-aaa1-f48fecadcd02"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105838",
"itemType": "FOOD",
"sortGroup": "3230:B13",
"packLocation": {
"order": 1,
"shelf": "TRIANGLE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B13",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"56d5ff9b-a8dd-4593-b640-dfa8d614814b"
],
"autoSkipTaskId": "56d5ff9b-a8dd-4593-b640-dfa8d614814b",
"reservedItemId": "2d2d9bd4-de16-4db7-9616-cb50d722a8e5",
"transferOrderId": "100000003418312",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000026086",
"destinationContainerBarcode": "384420700000000062"
},
"children": [
{
"id": "61304db2-207c-421f-bc7a-d21c00b9daed",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:56:45.095Z",
"end_time": "2017-11-03T15:56:45.095Z",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000026086",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-217-002-07-03"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "217"
},
{
"name": "Bay",
"value": "002"
},
{
"name": "Level",
"value": "07"
},
{
"name": "Bin",
"value": "03"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-217-002-07-03"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000026086"
}
},
{
"id": "cc0a0923-de43-4260-aaa1-f48fecadcd02",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:56:47.260Z",
"end_time": "2017-11-03T15:56:47.260Z",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/12935459",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"041143092798",
"041143092897",
"041143092767",
"041143092668"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Sun-Maid Vanilla Yogurt Raisins Halloween Mini-Snacks 10 ct",
"SAB1-217-002-07-03"
],
"confirmationRequired": false,
"successMessageParams": [
"041143092798"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"041143092798",
"041143092897",
"041143092767",
"041143092668"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "87b08d76-4bfa-4f1b-81f3-e4aed6215602",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:56:50.536Z",
"end_time": "2017-11-03T15:56:52.514Z",
"metadata": {
"upc": "041143092798",
"dpci": "261-07-0016",
"tcin": "12935459",
"upcList": [
"041143092798",
"041143092897",
"041143092767",
"041143092668"
],
"subTasks": [
"b0fa18bf-0f60-4a9b-b6d5-1eea204d04db",
"987872c9-1ffe-4e10-95e9-1cf90b7bbb8b"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105838",
"itemType": "FOOD",
"sortGroup": "3230:B13",
"packLocation": {
"order": 1,
"shelf": "TRIANGLE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B13",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"d702e31b-f5e4-4c91-8a9c-ea6035793863"
],
"autoSkipTaskId": "d702e31b-f5e4-4c91-8a9c-ea6035793863",
"reservedItemId": "f8716260-9d92-4303-8b9b-288c9b728465",
"transferOrderId": "100000003418312",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000026086",
"destinationContainerBarcode": "384420700000000062"
},
"children": [
{
"id": "b0fa18bf-0f60-4a9b-b6d5-1eea204d04db",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:56:50.536Z",
"end_time": "2017-11-03T15:56:50.536Z",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000026086",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-217-002-07-03"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "217"
},
{
"name": "Bay",
"value": "002"
},
{
"name": "Level",
"value": "07"
},
{
"name": "Bin",
"value": "03"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-217-002-07-03"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000026086"
}
},
{
"id": "987872c9-1ffe-4e10-95e9-1cf90b7bbb8b",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:56:52.514Z",
"end_time": "2017-11-03T15:56:52.514Z",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/12935459",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"041143092798",
"041143092897",
"041143092767",
"041143092668"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Sun-Maid Vanilla Yogurt Raisins Halloween Mini-Snacks 10 ct",
"SAB1-217-002-07-03"
],
"confirmationRequired": false,
"successMessageParams": [
"041143092798"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"041143092798",
"041143092897",
"041143092767",
"041143092668"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "31de131e-b6ea-4305-8c06-a77aa6240bb3",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:56:55.688Z",
"end_time": "2017-11-03T15:56:57.021Z",
"metadata": {
"upc": "041143092798",
"dpci": "261-07-0016",
"tcin": "12935459",
"upcList": [
"041143092798",
"041143092897",
"041143092767",
"041143092668"
],
"subTasks": [
"008fe36d-c64c-4d43-b8b5-0bdeff27d537",
"9bded3a1-0dab-40aa-9018-d46baee0bc8c"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105838",
"itemType": "FOOD",
"sortGroup": "3230:B13",
"packLocation": {
"order": 1,
"shelf": "TRIANGLE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B13",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"8f380c69-56ca-4b21-9238-918a472bdf5b"
],
"autoSkipTaskId": "8f380c69-56ca-4b21-9238-918a472bdf5b",
"reservedItemId": "281b3c6a-20b3-4f5a-bbb7-ab0f68662357",
"transferOrderId": "100000003418312",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000026086",
"destinationContainerBarcode": "384420700000000062"
},
"children": [
{
"id": "008fe36d-c64c-4d43-b8b5-0bdeff27d537",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:56:55.687Z",
"end_time": "2017-11-03T15:56:55.687Z",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000026086",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-217-002-07-03"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "217"
},
{
"name": "Bay",
"value": "002"
},
{
"name": "Level",
"value": "07"
},
{
"name": "Bin",
"value": "03"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-217-002-07-03"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000026086"
}
},
{
"id": "9bded3a1-0dab-40aa-9018-d46baee0bc8c",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:56:57.019Z",
"end_time": "2017-11-03T15:56:57.019Z",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/12935459",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"041143092798",
"041143092897",
"041143092767",
"041143092668"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Sun-Maid Vanilla Yogurt Raisins Halloween Mini-Snacks 10 ct",
"SAB1-217-002-07-03"
],
"confirmationRequired": false,
"successMessageParams": [
"041143092798"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"041143092798",
"041143092897",
"041143092767",
"041143092668"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "066197c5-5095-45a4-bf9d-e361099ba020",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:57:08.508Z",
"end_time": "2017-11-03T15:57:12.546Z",
"metadata": {
"upc": "041196419337",
"dpci": "212-18-0718",
"tcin": "12955080",
"upcList": [
"041196479331",
"041196419337"
],
"subTasks": [
"c20596bf-798c-41e5-9a7f-3cf6f1195fe1",
"8cfaa41a-e089-4e3c-8e45-ab848219e379"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105839",
"itemType": "FOOD",
"sortGroup": "3230:B4",
"packLocation": {
"order": 2,
"shelf": "SQUARE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B4",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"164b3bb7-2aca-484a-bac7-1940d93a583d"
],
"autoSkipTaskId": "164b3bb7-2aca-484a-bac7-1940d93a583d",
"reservedItemId": "f02fbe31-19f1-41c4-aac3-fc2b5e9d6e90",
"transferOrderId": "100000003415254",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000026221",
"destinationContainerBarcode": "384420700000000062"
},
"children": [
{
"id": "c20596bf-798c-41e5-9a7f-3cf6f1195fe1",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:57:08.508Z",
"end_time": "2017-11-03T15:57:08.508Z",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000026221",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-217-007-04-02"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "217"
},
{
"name": "Bay",
"value": "007"
},
{
"name": "Level",
"value": "04"
},
{
"name": "Bin",
"value": "02"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-217-007-04-02"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000026221"
}
},
{
"id": "8cfaa41a-e089-4e3c-8e45-ab848219e379",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:57:12.546Z",
"end_time": "2017-11-03T15:57:12.546Z",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/12955080",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"041196479331",
"041196419337"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Progresso&#174; Light Chicken & Dumpling Soup 18.5 oz",
"SAB1-217-007-04-02"
],
"confirmationRequired": false,
"successMessageParams": [
"041196419337"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"041196479331",
"041196419337"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "5bfd6111-39cd-4298-be86-6ca463e48e8f",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:57:16.030Z",
"end_time": "2017-11-03T15:57:19.855Z",
"metadata": {
"upc": "085239194089",
"dpci": "071-08-1940",
"tcin": "14525456",
"upcList": [
"085239194089",
"085239819401",
"490710819403"
],
"subTasks": [
"32f0f6bd-769d-45d7-8477-d40ad672000f",
"c89d57af-7b65-49d4-af35-145986cfeb04"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105838",
"itemType": "FOOD",
"sortGroup": "3230:B13",
"packLocation": {
"order": 1,
"shelf": "TRIANGLE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B13",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"69a830f5-1e03-4029-8d83-0f8789ff776a"
],
"autoSkipTaskId": "69a830f5-1e03-4029-8d83-0f8789ff776a",
"reservedItemId": "d62b7ab5-5d09-42ae-860c-70a0ab723546",
"transferOrderId": "100000003415948",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000026227",
"destinationContainerBarcode": "384420700000000062"
},
"children": [
{
"id": "32f0f6bd-769d-45d7-8477-d40ad672000f",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:57:16.030Z",
"end_time": "2017-11-03T15:57:16.030Z",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000026227",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-217-007-06-02"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "217"
},
{
"name": "Bay",
"value": "007"
},
{
"name": "Level",
"value": "06"
},
{
"name": "Bin",
"value": "02"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-217-007-06-02"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000026227"
}
},
{
"id": "c89d57af-7b65-49d4-af35-145986cfeb04",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:57:19.854Z",
"end_time": "2017-11-03T15:57:19.854Z",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/14525456",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"085239194089",
"085239819401",
"490710819403"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Sea Salt Roasted Pistachios 7oz - Archer Farms&#153;",
"SAB1-217-007-06-02"
],
"confirmationRequired": false,
"successMessageParams": [
"085239194089"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"085239194089",
"085239819401",
"490710819403"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "374327a5-fd3c-426c-935e-97d02b15894e",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:57:22.582Z",
"end_time": "2017-11-03T15:57:25.854Z",
"metadata": {
"upc": "085239194089",
"dpci": "071-08-1940",
"tcin": "14525456",
"upcList": [
"085239194089",
"085239819401",
"490710819403"
],
"subTasks": [
"90d1da18-6bab-41f7-a256-6423849a1999",
"90cdfeb6-5d35-4811-94d3-676773b8c169"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105838",
"itemType": "FOOD",
"sortGroup": "3230:B13",
"packLocation": {
"order": 1,
"shelf": "TRIANGLE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B13",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"351a6b3a-34bc-4cc3-9a3c-7c548d394bff"
],
"autoSkipTaskId": "351a6b3a-34bc-4cc3-9a3c-7c548d394bff",
"reservedItemId": "6fc94ac7-8071-406c-a20e-ad7d3d40cf50",
"transferOrderId": "100000003417082",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000026227",
"destinationContainerBarcode": "384420700000000062"
},
"children": [
{
"id": "90d1da18-6bab-41f7-a256-6423849a1999",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:57:22.582Z",
"end_time": "2017-11-03T15:57:22.582Z",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000026227",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-217-007-06-02"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "217"
},
{
"name": "Bay",
"value": "007"
},
{
"name": "Level",
"value": "06"
},
{
"name": "Bin",
"value": "02"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-217-007-06-02"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000026227"
}
},
{
"id": "90cdfeb6-5d35-4811-94d3-676773b8c169",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:57:25.853Z",
"end_time": "2017-11-03T15:57:25.853Z",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/14525456",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"085239194089",
"085239819401",
"490710819403"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Sea Salt Roasted Pistachios 7oz - Archer Farms&#153;",
"SAB1-217-007-06-02"
],
"confirmationRequired": false,
"successMessageParams": [
"085239194089"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"085239194089",
"085239819401",
"490710819403"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "96eacd18-282b-4ac2-9b8d-47b0f8e8fe4e",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:57:52.341Z",
"end_time": "2017-11-03T15:57:58.311Z",
"metadata": {
"upc": "030000311820",
"dpci": "071-20-0539",
"tcin": "13315265",
"upcList": [
"030000271797",
"030000055755",
"030000311820",
"030000313107",
"030000050101",
"030000055243",
"030000316337",
"030000313411",
"030000313053",
"490712005392",
"030000450802",
"030000452356",
"030000321775"
],
"subTasks": [
"df243602-f25e-40bb-9eb7-5ce2f989fd63",
"8f3654d0-48e1-40b4-8fe3-205a9999afa6"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105842",
"itemType": "FOOD",
"sortGroup": "3230:B15",
"packLocation": {
"order": 1,
"shelf": "CIRCLE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B15",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"efa4f94d-755e-4daf-9627-6854d5cbebc2"
],
"autoSkipTaskId": "efa4f94d-755e-4daf-9627-6854d5cbebc2",
"reservedItemId": "71694822-f3f1-4033-bb35-eaf700a204d6",
"transferOrderId": "100000003416638",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000025896",
"destinationContainerBarcode": "384420700000000062"
},
"children": [
{
"id": "df243602-f25e-40bb-9eb7-5ce2f989fd63",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:57:52.341Z",
"end_time": "2017-11-03T15:57:52.341Z",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000025896",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-216-014-02-02"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "216"
},
{
"name": "Bay",
"value": "014"
},
{
"name": "Level",
"value": "02"
},
{
"name": "Bin",
"value": "02"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-216-014-02-02"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000025896"
}
},
{
"id": "8f3654d0-48e1-40b4-8fe3-205a9999afa6",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:57:58.311Z",
"end_time": "2017-11-03T15:57:58.311Z",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/13315265",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"030000271797",
"030000055755",
"030000311820",
"030000313107",
"030000050101",
"030000055243",
"030000316337",
"030000313411",
"030000313053",
"490712005392",
"030000450802",
"030000452356",
"030000321775"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Quaker&#174; Chewy Chocolate Chip Granola Bars - 8ct",
"SAB1-216-014-02-02"
],
"confirmationRequired": false,
"successMessageParams": [
"030000311820"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"030000271797",
"030000055755",
"030000311820",
"030000313107",
"030000050101",
"030000055243",
"030000316337",
"030000313411",
"030000313053",
"490712005392",
"030000450802",
"030000452356",
"030000321775"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "768f9e9a-4535-440b-94b8-26333333f5bc",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:58:01.630Z",
"end_time": "2017-11-03T15:58:04.181Z",
"metadata": {
"upc": "030000311820",
"dpci": "071-20-0539",
"tcin": "13315265",
"upcList": [
"030000271797",
"030000055755",
"030000311820",
"030000313107",
"030000050101",
"030000055243",
"030000316337",
"030000313411",
"030000313053",
"490712005392",
"030000450802",
"030000452356",
"030000321775"
],
"subTasks": [
"dd23eaee-6eb7-42e4-9487-4b33b48af13d",
"a2c39800-e328-471c-914d-99883d980c4e"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105842",
"itemType": "FOOD",
"sortGroup": "3230:B15",
"packLocation": {
"order": 1,
"shelf": "CIRCLE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B15",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"32dcd9c3-9971-480b-8d25-1a36c22090cf"
],
"autoSkipTaskId": "32dcd9c3-9971-480b-8d25-1a36c22090cf",
"reservedItemId": "3a73a100-5ec9-4baa-8e4b-f68dbf57621d",
"transferOrderId": "100000003416638",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000025896",
"destinationContainerBarcode": "384420700000000062"
},
"children": [
{
"id": "dd23eaee-6eb7-42e4-9487-4b33b48af13d",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:58:01.630Z",
"end_time": "2017-11-03T15:58:01.630Z",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000025896",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-216-014-02-02"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "216"
},
{
"name": "Bay",
"value": "014"
},
{
"name": "Level",
"value": "02"
},
{
"name": "Bin",
"value": "02"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-216-014-02-02"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000025896"
}
},
{
"id": "a2c39800-e328-471c-914d-99883d980c4e",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:58:04.180Z",
"end_time": "2017-11-03T15:58:04.180Z",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/13315265",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"030000271797",
"030000055755",
"030000311820",
"030000313107",
"030000050101",
"030000055243",
"030000316337",
"030000313411",
"030000313053",
"490712005392",
"030000450802",
"030000452356",
"030000321775"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Quaker&#174; Chewy Chocolate Chip Granola Bars - 8ct",
"SAB1-216-014-02-02"
],
"confirmationRequired": false,
"successMessageParams": [
"030000311820"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"030000271797",
"030000055755",
"030000311820",
"030000313107",
"030000050101",
"030000055243",
"030000316337",
"030000313411",
"030000313053",
"490712005392",
"030000450802",
"030000452356",
"030000321775"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "d51be34a-7b0c-49e5-844e-3acadcfc1c0b",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:58:07.889Z",
"end_time": "2017-11-03T15:58:10.866Z",
"metadata": {
"upc": "030000311820",
"dpci": "071-20-0539",
"tcin": "13315265",
"upcList": [
"030000271797",
"030000055755",
"030000311820",
"030000313107",
"030000050101",
"030000055243",
"030000316337",
"030000313411",
"030000313053",
"490712005392",
"030000450802",
"030000452356",
"030000321775"
],
"subTasks": [
"d224935c-0096-4660-a336-14162fc8f46e",
"195cded2-08bc-4acf-b24c-9c10d1a02f86"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105842",
"itemType": "FOOD",
"sortGroup": "3230:B15",
"packLocation": {
"order": 1,
"shelf": "CIRCLE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B15",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"1b4aba49-366c-49f9-992c-b08b712ea79f"
],
"autoSkipTaskId": "1b4aba49-366c-49f9-992c-b08b712ea79f",
"reservedItemId": "aebb7d5c-0474-4547-8ee1-97cc64158196",
"transferOrderId": "100000003416638",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000025896",
"destinationContainerBarcode": "384420700000000062"
},
"children": [
{
"id": "d224935c-0096-4660-a336-14162fc8f46e",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:58:07.888Z",
"end_time": "2017-11-03T15:58:07.888Z",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000025896",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-216-014-02-02"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "216"
},
{
"name": "Bay",
"value": "014"
},
{
"name": "Level",
"value": "02"
},
{
"name": "Bin",
"value": "02"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-216-014-02-02"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000025896"
}
},
{
"id": "195cded2-08bc-4acf-b24c-9c10d1a02f86",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:58:10.866Z",
"end_time": "2017-11-03T15:58:10.866Z",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/13315265",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"030000271797",
"030000055755",
"030000311820",
"030000313107",
"030000050101",
"030000055243",
"030000316337",
"030000313411",
"030000313053",
"490712005392",
"030000450802",
"030000452356",
"030000321775"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Quaker&#174; Chewy Chocolate Chip Granola Bars - 8ct",
"SAB1-216-014-02-02"
],
"confirmationRequired": false,
"successMessageParams": [
"030000311820"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"030000271797",
"030000055755",
"030000311820",
"030000313107",
"030000050101",
"030000055243",
"030000316337",
"030000313411",
"030000313053",
"490712005392",
"030000450802",
"030000452356",
"030000321775"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "fe349291-de77-434f-b83b-be746cb0f3eb",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:58:25.230Z",
"end_time": "2017-11-03T15:58:28.688Z",
"metadata": {
"upc": "041196423778",
"dpci": "212-18-1026",
"tcin": "13783776",
"upcList": [
"041196423778"
],
"subTasks": [
"464a1de1-5190-4630-b85e-8a2e65c17216",
"5f605eb3-8eae-4f70-a20c-fae2fe8bffed"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105839",
"itemType": "FOOD",
"sortGroup": "3230:B4",
"packLocation": {
"order": 2,
"shelf": "SQUARE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B4",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"8c1950ff-ea23-4190-acc0-d72d23a89c66"
],
"autoSkipTaskId": "8c1950ff-ea23-4190-acc0-d72d23a89c66",
"reservedItemId": "ad58e443-2ea2-4ea5-bad2-4f9c8e1c5821",
"transferOrderId": "100000003415307",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000025670",
"destinationContainerBarcode": "384420700000000062"
},
"children": [
{
"id": "464a1de1-5190-4630-b85e-8a2e65c17216",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:58:25.229Z",
"end_time": "2017-11-03T15:58:25.229Z",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000025670",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-216-006-04-02"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "216"
},
{
"name": "Bay",
"value": "006"
},
{
"name": "Level",
"value": "04"
},
{
"name": "Bin",
"value": "02"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-216-006-04-02"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000025670"
}
},
{
"id": "5f605eb3-8eae-4f70-a20c-fae2fe8bffed",
"type": "SCAN",
"location_id": "3844",
"status": "COMPLETE",
"completed_by": "Z002SWB",
"start_time": "2017-11-03T15:58:28.687Z",
"end_time": "2017-11-03T15:58:28.687Z",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/13783776",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"041196423778"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Progresso&#174; Traditional Chicken & Orzo with Lemon 18.5 oz",
"SAB1-216-006-04-02"
],
"confirmationRequired": false,
"successMessageParams": [
"041196423778"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"041196423778"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "01014521-b4d6-489c-9d26-5096e65af60e",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "AVAILABLE",
"metadata": {
"upc": "041196423778",
"dpci": "212-18-1026",
"tcin": "13783776",
"upcList": [
"041196423778"
],
"subTasks": [
"5ba034a8-751d-468b-8f8d-1aa9c9dad53f",
"dfe05058-5ba5-4d87-8f52-43415f7fbc83"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105839",
"itemType": "FOOD",
"sortGroup": "3230:B4",
"packLocation": {
"order": 2,
"shelf": "SQUARE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B4",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"d500cafa-c7fe-4a26-986b-03589f473c42"
],
"autoSkipTaskId": "d500cafa-c7fe-4a26-986b-03589f473c42",
"reservedItemId": "8b6604ed-902a-4456-8b21-23b6c89a5877",
"transferOrderId": "100000003415211",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000025674"
},
"children": [
{
"id": "5ba034a8-751d-468b-8f8d-1aa9c9dad53f",
"type": "SCAN",
"location_id": "3844",
"status": "AVAILABLE",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000025674",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-216-006-05-03"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "216"
},
{
"name": "Bay",
"value": "006"
},
{
"name": "Level",
"value": "05"
},
{
"name": "Bin",
"value": "03"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-216-006-05-03"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000025674"
}
},
{
"id": "dfe05058-5ba5-4d87-8f52-43415f7fbc83",
"type": "SCAN",
"location_id": "3844",
"status": "AVAILABLE",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/13783776",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"041196423778"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Progresso&#174; Traditional Chicken & Orzo with Lemon 18.5 oz",
"SAB1-216-006-05-03"
],
"confirmationRequired": false,
"successMessageParams": [
"041196423778"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"041196423778"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "fe156903-74dd-42f7-8601-2f5dda35839f",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "AVAILABLE",
"metadata": {
"upc": "722252660770",
"dpci": "071-20-0558",
"tcin": "13508818",
"upcList": [
"490712005583",
"722252660770"
],
"subTasks": [
"ba28a59a-69d7-453e-8550-94c0549173fa",
"14e4ed3b-1a98-404e-ba4f-6daec2621299"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105842",
"itemType": "FOOD",
"sortGroup": "3230:B15",
"packLocation": {
"order": 1,
"shelf": "CIRCLE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B15",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"6484593d-a8f8-4cff-afc9-28c68c56d7c3"
],
"autoSkipTaskId": "6484593d-a8f8-4cff-afc9-28c68c56d7c3",
"reservedItemId": "7cd0ee08-b1d2-4fa5-9733-d477f92a3922",
"transferOrderId": "100000003416699",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000025552"
},
"children": [
{
"id": "ba28a59a-69d7-453e-8550-94c0549173fa",
"type": "SCAN",
"location_id": "3844",
"status": "AVAILABLE",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000025552",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-216-002-03-03"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "216"
},
{
"name": "Bay",
"value": "002"
},
{
"name": "Level",
"value": "03"
},
{
"name": "Bin",
"value": "03"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-216-002-03-03"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000025552"
}
},
{
"id": "14e4ed3b-1a98-404e-ba4f-6daec2621299",
"type": "SCAN",
"location_id": "3844",
"status": "AVAILABLE",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/13508818",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"490712005583",
"722252660770"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Clif Bar&#174; Cool Mint Chocolate Energy Bars - 6ct",
"SAB1-216-002-03-03"
],
"confirmationRequired": false,
"successMessageParams": [
"722252660770"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"490712005583",
"722252660770"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "94f313c1-7c9a-4667-94e3-621d2636559e",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "AVAILABLE",
"metadata": {
"upc": "051000011770",
"dpci": "212-18-0107",
"tcin": "14840622",
"upcList": [
"051000011770"
],
"subTasks": [
"a76095fd-069d-400b-a513-7294c2caa884",
"228be51c-e986-4525-91b2-b9a5f53b5f08"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105839",
"itemType": "FOOD",
"sortGroup": "3230:B4",
"packLocation": {
"order": 2,
"shelf": "SQUARE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B4",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"7deb2a4f-d4b8-44be-86fc-9f9ff1d7062d"
],
"autoSkipTaskId": "7deb2a4f-d4b8-44be-86fc-9f9ff1d7062d",
"reservedItemId": "6e5bb69d-fd3b-4be9-a6ad-278f45f7476a",
"transferOrderId": "100000003415215",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000025562"
},
"children": [
{
"id": "a76095fd-069d-400b-a513-7294c2caa884",
"type": "SCAN",
"location_id": "3844",
"status": "AVAILABLE",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000025562",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-216-002-07-01"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "216"
},
{
"name": "Bay",
"value": "002"
},
{
"name": "Level",
"value": "07"
},
{
"name": "Bin",
"value": "01"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-216-002-07-01"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000025562"
}
},
{
"id": "228be51c-e986-4525-91b2-b9a5f53b5f08",
"type": "SCAN",
"location_id": "3844",
"status": "AVAILABLE",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/14840622",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"051000011770"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Campbell's&#174; Condensed French Onion Soup 10.5 oz",
"SAB1-216-002-07-01"
],
"confirmationRequired": false,
"successMessageParams": [
"051000011770"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"051000011770"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "744e6457-a196-46fe-9f50-a4a8847900ab",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "AVAILABLE",
"metadata": {
"upc": "722252660060",
"dpci": "071-20-0547",
"tcin": "13508837",
"upcList": [
"722252660060",
"722252165251",
"722252165572",
"722252165367",
"490712005477"
],
"subTasks": [
"a95d24b9-61f1-45a5-835e-eda6ed530dfc",
"38a5e532-85d6-4d3f-a8fc-d330bc3c43d5"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105842",
"itemType": "FOOD",
"sortGroup": "3230:B15",
"packLocation": {
"order": 1,
"shelf": "CIRCLE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B15",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"1b48a0e7-406c-46b0-b68f-306248857967"
],
"autoSkipTaskId": "1b48a0e7-406c-46b0-b68f-306248857967",
"reservedItemId": "94644afa-1383-4429-b798-ce1d9ae8f18b",
"transferOrderId": "100000003418133",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000022232"
},
"children": [
{
"id": "a95d24b9-61f1-45a5-835e-eda6ed530dfc",
"type": "SCAN",
"location_id": "3844",
"status": "AVAILABLE",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000022232",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-116-013-05-03"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "116"
},
{
"name": "Bay",
"value": "013"
},
{
"name": "Level",
"value": "05"
},
{
"name": "Bin",
"value": "03"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-116-013-05-03"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000022232"
}
},
{
"id": "38a5e532-85d6-4d3f-a8fc-d330bc3c43d5",
"type": "SCAN",
"location_id": "3844",
"status": "AVAILABLE",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/13508837",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"722252660060",
"722252165251",
"722252165572",
"722252165367",
"490712005477"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Clif Bar&#174; Chocolate Brownie Nutrition Bars - 6ct",
"SAB1-116-013-05-03"
],
"confirmationRequired": false,
"successMessageParams": [
"722252660060"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"722252660060",
"722252165251",
"722252165572",
"722252165367",
"490712005477"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "4326e235-f6bf-446f-862c-20ad4d10ea72",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "AVAILABLE",
"metadata": {
"upc": "722252660091",
"dpci": "071-20-0555",
"tcin": "13508823",
"upcList": [
"722252660091",
"722252165275",
"722252166111",
"722252161604",
"490712005552"
],
"subTasks": [
"4bce5be3-1923-43c9-9b78-57df0a8f80a9",
"049c1582-c802-4af1-8e58-c4760ef96223"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105842",
"itemType": "FOOD",
"sortGroup": "3230:B15",
"packLocation": {
"order": 1,
"shelf": "CIRCLE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B15",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"a6a08fab-b7c4-47b0-9f22-1faba0553a43"
],
"autoSkipTaskId": "a6a08fab-b7c4-47b0-9f22-1faba0553a43",
"reservedItemId": "5e76dcda-07e6-449a-833e-a1a2e33f21dc",
"transferOrderId": "100000003422997",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000022147"
},
"children": [
{
"id": "4bce5be3-1923-43c9-9b78-57df0a8f80a9",
"type": "SCAN",
"location_id": "3844",
"status": "AVAILABLE",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000022147",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-116-010-06-02"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "116"
},
{
"name": "Bay",
"value": "010"
},
{
"name": "Level",
"value": "06"
},
{
"name": "Bin",
"value": "02"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-116-010-06-02"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000022147"
}
},
{
"id": "049c1582-c802-4af1-8e58-c4760ef96223",
"type": "SCAN",
"location_id": "3844",
"status": "AVAILABLE",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/13508823",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"722252660091",
"722252165275",
"722252166111",
"722252161604",
"490712005552"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Clif Bar&#174; Chocolate Chip Peanut Crunch Nutrition Bars- 6ct",
"SAB1-116-010-06-02"
],
"confirmationRequired": false,
"successMessageParams": [
"722252660091"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"722252660091",
"722252165275",
"722252166111",
"722252161604",
"490712005552"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "b0067818-b3d2-4da6-903f-aa4839a20648",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "AVAILABLE",
"metadata": {
"upc": "041570003831",
"dpci": "071-08-0340",
"tcin": "12920864",
"upcList": [
"041570003831",
"490710803402"
],
"subTasks": [
"ce89a9be-c97d-443c-8274-9fac27e94ac6",
"50d61e5b-620c-444c-8368-9c3638cbacc5"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105838",
"itemType": "FOOD",
"sortGroup": "3230:B13",
"packLocation": {
"order": 1,
"shelf": "TRIANGLE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B13",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"1c31fddf-e106-4049-8429-0ac06fe32563"
],
"autoSkipTaskId": "1c31fddf-e106-4049-8429-0ac06fe32563",
"reservedItemId": "c63dbec9-9eaf-4f79-a606-ac9bef792fe4",
"transferOrderId": "100000003415835",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000022028"
},
"children": [
{
"id": "ce89a9be-c97d-443c-8274-9fac27e94ac6",
"type": "SCAN",
"location_id": "3844",
"status": "AVAILABLE",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000022028",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-116-006-05-02"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "116"
},
{
"name": "Bay",
"value": "006"
},
{
"name": "Level",
"value": "05"
},
{
"name": "Bin",
"value": "02"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-116-006-05-02"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000022028"
}
},
{
"id": "50d61e5b-620c-444c-8368-9c3638cbacc5",
"type": "SCAN",
"location_id": "3844",
"status": "AVAILABLE",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/12920864",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"041570003831",
"490710803402"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Blue Diamond Almonds Whole Natural - 6oz",
"SAB1-116-006-05-02"
],
"confirmationRequired": false,
"successMessageParams": [
"041570003831"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"041570003831",
"490710803402"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "a1982895-fc9b-4f90-af40-bdb96f8d1519",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "AVAILABLE",
"metadata": {
"upc": "030000312711",
"dpci": "071-20-0252",
"tcin": "13315062",
"upcList": [
"030000315484",
"030000312711",
"030000321829",
"490712002520",
"030000094402"
],
"subTasks": [
"574b1051-de8f-42ce-b15e-1dc07b6b8eff",
"cdfe2b01-6c72-482d-96df-e410f2d27120"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105842",
"itemType": "FOOD",
"sortGroup": "3230:B15",
"packLocation": {
"order": 1,
"shelf": "CIRCLE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B15",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"97729e00-ded7-4a7a-9c67-385705a6ed72"
],
"autoSkipTaskId": "97729e00-ded7-4a7a-9c67-385705a6ed72",
"reservedItemId": "e680d7b5-7612-4c92-8461-da3272e3fe6e",
"transferOrderId": "100000003422252",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000022589"
},
"children": [
{
"id": "574b1051-de8f-42ce-b15e-1dc07b6b8eff",
"type": "SCAN",
"location_id": "3844",
"status": "AVAILABLE",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000022589",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-117-007-08-03"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "117"
},
{
"name": "Bay",
"value": "007"
},
{
"name": "Level",
"value": "08"
},
{
"name": "Bin",
"value": "03"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-117-007-08-03"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000022589"
}
},
{
"id": "cdfe2b01-6c72-482d-96df-e410f2d27120",
"type": "SCAN",
"location_id": "3844",
"status": "AVAILABLE",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/13315062",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"030000315484",
"030000312711",
"030000321829",
"490712002520",
"030000094402"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Quaker Chewy Dipps Chocolate Covered Peanut Butter Granola Bars - 8ct",
"SAB1-117-007-08-03"
],
"confirmationRequired": false,
"successMessageParams": [
"030000312711"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"030000315484",
"030000312711",
"030000321829",
"490712002520",
"030000094402"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "0f325282-74d9-44e2-a00e-48f1088c2f93",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "AVAILABLE",
"metadata": {
"upc": "602652184024",
"dpci": "071-20-0586",
"tcin": "15027059",
"upcList": [
"490712005866",
"602652184024"
],
"subTasks": [
"f20afc79-b235-491f-975c-82ef574544ff",
"90e1564c-6dad-43a2-b784-eb5a038591c8"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105842",
"itemType": "FOOD",
"sortGroup": "3230:B15",
"packLocation": {
"order": 1,
"shelf": "CIRCLE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B15",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"938b65d8-05b1-4e63-8b7d-73d057789925"
],
"autoSkipTaskId": "938b65d8-05b1-4e63-8b7d-73d057789925",
"reservedItemId": "1d6ceafc-7c20-49d4-bfd4-07deba773300",
"transferOrderId": "100000003422797",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000022578"
},
"children": [
{
"id": "f20afc79-b235-491f-975c-82ef574544ff",
"type": "SCAN",
"location_id": "3844",
"status": "AVAILABLE",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000022578",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-117-007-05-01"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "117"
},
{
"name": "Bay",
"value": "007"
},
{
"name": "Level",
"value": "05"
},
{
"name": "Bin",
"value": "01"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-117-007-05-01"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000022578"
}
},
{
"id": "90e1564c-6dad-43a2-b784-eb5a038591c8",
"type": "SCAN",
"location_id": "3844",
"status": "AVAILABLE",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/15027059",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"490712005866",
"602652184024"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Kind&#174; Dark Chocolate Chunk Gluten Free Granola Bars - 5ct",
"SAB1-117-007-05-01"
],
"confirmationRequired": false,
"successMessageParams": [
"602652184024"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"490712005866",
"602652184024"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "ff32179f-ab4c-4946-8a60-7ebe744de6f4",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "AVAILABLE",
"metadata": {
"upc": "722252192035",
"dpci": "071-20-1359",
"tcin": "51006736",
"upcList": [
"722252192035"
],
"subTasks": [
"8f63b6d3-eea8-447e-a9fa-5820c48f48b5",
"3f500a15-000c-48e5-a661-bfa69d333128"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105842",
"itemType": "FOOD",
"sortGroup": "3230:B15",
"packLocation": {
"order": 1,
"shelf": "CIRCLE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B15",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"8d025b3e-1333-4185-937a-219646e84271"
],
"autoSkipTaskId": "8d025b3e-1333-4185-937a-219646e84271",
"reservedItemId": "6974d648-45fb-47da-a9d7-28877581c6a1",
"transferOrderId": "100000003418606",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000023365"
},
"children": [
{
"id": "8f63b6d3-eea8-447e-a9fa-5820c48f48b5",
"type": "SCAN",
"location_id": "3844",
"status": "AVAILABLE",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000023365",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-118-017-10-01"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "118"
},
{
"name": "Bay",
"value": "017"
},
{
"name": "Level",
"value": "10"
},
{
"name": "Bin",
"value": "01"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-118-017-10-01"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000023365"
}
},
{
"id": "3f500a15-000c-48e5-a661-bfa69d333128",
"type": "SCAN",
"location_id": "3844",
"status": "AVAILABLE",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/51006736",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"722252192035"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Clif Kid Zbar Organic Chocolate Brownie - 7.62oz 6ct",
"SAB1-118-017-10-01"
],
"confirmationRequired": false,
"successMessageParams": [
"722252192035"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"722252192035"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "ffdc19b4-3369-4abd-b701-7824e161fc1c",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "AVAILABLE",
"metadata": {
"upc": "085239832400",
"dpci": "071-08-0324",
"tcin": "13130349",
"upcList": [
"085239832400",
"085239013786",
"085239083246",
"490710803242"
],
"subTasks": [
"bb6d8836-87ca-40d9-ad42-03aba7c19f1f",
"785b4cd8-db94-4da7-95c5-97e37beb4b73"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105838",
"itemType": "FOOD",
"sortGroup": "3230:B13",
"packLocation": {
"order": 1,
"shelf": "TRIANGLE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B13",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"9e8fc29e-cfa0-4eeb-a8ee-2a4e7674aafd"
],
"autoSkipTaskId": "9e8fc29e-cfa0-4eeb-a8ee-2a4e7674aafd",
"reservedItemId": "2e5afe4a-51e1-4196-90bd-31cb6988a871",
"transferOrderId": "100000003420561",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000023154"
},
"children": [
{
"id": "bb6d8836-87ca-40d9-ad42-03aba7c19f1f",
"type": "SCAN",
"location_id": "3844",
"status": "AVAILABLE",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000023154",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-118-009-10-02"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "118"
},
{
"name": "Bay",
"value": "009"
},
{
"name": "Level",
"value": "10"
},
{
"name": "Bin",
"value": "02"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-118-009-10-02"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000023154"
}
},
{
"id": "785b4cd8-db94-4da7-95c5-97e37beb4b73",
"type": "SCAN",
"location_id": "3844",
"status": "AVAILABLE",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/13130349",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"085239832400",
"085239013786",
"085239083246",
"490710803242"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Sea Salt Deluxe Roasted Mixed Nuts - 30oz - Archer Farms&#153;",
"SAB1-118-009-10-02"
],
"confirmationRequired": false,
"successMessageParams": [
"085239832400"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"085239832400",
"085239013786",
"085239083246",
"490710803242"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "35b35ce7-7c1a-4d2d-9f00-71238612f9ac",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "AVAILABLE",
"metadata": {
"upc": "722252233301",
"dpci": "071-20-0813",
"tcin": "13508839",
"upcList": [
"722252233301",
"722252208521",
"490712008133",
"722252206138",
"722252206039",
"722252205827",
"722252250032"
],
"subTasks": [
"ef814a6b-193e-44e9-94ce-35b7faf45def",
"4045ac23-08c3-42ed-aee0-628b7daf3686"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105842",
"itemType": "FOOD",
"sortGroup": "3230:B15",
"packLocation": {
"order": 1,
"shelf": "CIRCLE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B15",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"c229e31e-e2e5-41c5-b343-d38516fdf51f"
],
"autoSkipTaskId": "c229e31e-e2e5-41c5-b343-d38516fdf51f",
"reservedItemId": "ed9a89f7-aa7f-4a5c-b00f-b3c95c9b9d7b",
"transferOrderId": "100000003418611",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000023632"
},
"children": [
{
"id": "ef814a6b-193e-44e9-94ce-35b7faf45def",
"type": "SCAN",
"location_id": "3844",
"status": "AVAILABLE",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000023632",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-119-010-02-03"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "119"
},
{
"name": "Bay",
"value": "010"
},
{
"name": "Level",
"value": "02"
},
{
"name": "Bin",
"value": "03"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-119-010-02-03"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000023632"
}
},
{
"id": "4045ac23-08c3-42ed-aee0-628b7daf3686",
"type": "SCAN",
"location_id": "3844",
"status": "AVAILABLE",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/13508839",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"722252233301",
"722252208521",
"490712008133",
"722252206138",
"722252206039",
"722252205827",
"722252250032"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Luna Bar Lemon Zest Nutrition Bar - 6ct",
"SAB1-119-010-02-03"
],
"confirmationRequired": false,
"successMessageParams": [
"722252233301"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"722252233301",
"722252208521",
"490712008133",
"722252206138",
"722252206039",
"722252205827",
"722252250032"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "dbd6a9d4-fd19-4623-83f3-6a25cf77247d",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "AVAILABLE",
"metadata": {
"upc": "818780011938",
"dpci": "071-06-0132",
"tcin": "13007983",
"upcList": [
"818780011938",
"892773000604",
"490710601329"
],
"subTasks": [
"c36b3bb1-a978-4f40-a87d-9a9a8e1b1d74",
"00f1c39a-2ebf-41f2-bb48-ee97ec0ed017"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105840",
"itemType": "FOOD",
"sortGroup": "3230:B14",
"packLocation": {
"order": 1,
"shelf": "SQUARE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B14",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"a62778b4-083d-473d-89e5-e0919a24eab4"
],
"autoSkipTaskId": "a62778b4-083d-473d-89e5-e0919a24eab4",
"reservedItemId": "8b7d08e7-edc4-4681-b9d2-67fa2d7972ec",
"transferOrderId": "100000003419884",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000023665"
},
"children": [
{
"id": "c36b3bb1-a978-4f40-a87d-9a9a8e1b1d74",
"type": "SCAN",
"location_id": "3844",
"status": "AVAILABLE",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000023665",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-119-011-04-02"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "119"
},
{
"name": "Bay",
"value": "011"
},
{
"name": "Level",
"value": "04"
},
{
"name": "Bin",
"value": "02"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-119-011-04-02"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000023665"
}
},
{
"id": "00f1c39a-2ebf-41f2-bb48-ee97ec0ed017",
"type": "SCAN",
"location_id": "3844",
"status": "AVAILABLE",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/13007983",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"818780011938",
"892773000604",
"490710601329"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Angie's Boomchickapop Sweet & Salty Kettle Corn - 7oz",
"SAB1-119-011-04-02"
],
"confirmationRequired": false,
"successMessageParams": [
"818780011938"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"818780011938",
"892773000604",
"490710601329"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "572c30ca-ca31-4e30-a014-3455dd9f7d0d",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "AVAILABLE",
"metadata": {
"upc": "722252660770",
"dpci": "071-20-0558",
"tcin": "13508818",
"upcList": [
"490712005583",
"722252660770"
],
"subTasks": [
"68e85b3b-57b8-48fd-80c0-a23853447ad8",
"2a8939be-6d5d-4ae9-905d-53cac4dc754b"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105842",
"itemType": "FOOD",
"sortGroup": "3230:B15",
"packLocation": {
"order": 1,
"shelf": "CIRCLE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B15",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"24f97d73-5522-407c-89ad-bf97ece29e84"
],
"autoSkipTaskId": "24f97d73-5522-407c-89ad-bf97ece29e84",
"reservedItemId": "4082d537-9155-4811-88de-33146284b4eb",
"transferOrderId": "100000003416699",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000023730"
},
"children": [
{
"id": "68e85b3b-57b8-48fd-80c0-a23853447ad8",
"type": "SCAN",
"location_id": "3844",
"status": "AVAILABLE",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000023730",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-119-013-08-03"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "119"
},
{
"name": "Bay",
"value": "013"
},
{
"name": "Level",
"value": "08"
},
{
"name": "Bin",
"value": "03"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-119-013-08-03"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000023730"
}
},
{
"id": "2a8939be-6d5d-4ae9-905d-53cac4dc754b",
"type": "SCAN",
"location_id": "3844",
"status": "AVAILABLE",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/13508818",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"490712005583",
"722252660770"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Clif Bar&#174; Cool Mint Chocolate Energy Bars - 6ct",
"SAB1-119-013-08-03"
],
"confirmationRequired": false,
"successMessageParams": [
"722252660770"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"490712005583",
"722252660770"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "39a0975a-6f52-45b6-a558-b1ddf794362b",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "AVAILABLE",
"metadata": {
"upc": "042272005826",
"dpci": "212-18-0964",
"tcin": "13333435",
"upcList": [
"042272005826"
],
"subTasks": [
"4df6f1e1-93b3-4805-9739-4bfa3b155f82",
"438bf5ae-ba7a-46e3-b1df-3d27ac9b76b4"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105839",
"itemType": "FOOD",
"sortGroup": "3230:B4",
"packLocation": {
"order": 2,
"shelf": "SQUARE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B4",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"b16fed4a-aedc-42d5-a195-3c1dfd63ffab"
],
"autoSkipTaskId": "b16fed4a-aedc-42d5-a195-3c1dfd63ffab",
"reservedItemId": "2b5e49bb-3a14-4b08-8314-5116e5847627",
"transferOrderId": "100000003417259",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000024142"
},
"children": [
{
"id": "4df6f1e1-93b3-4805-9739-4bfa3b155f82",
"type": "SCAN",
"location_id": "3844",
"status": "AVAILABLE",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000024142",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-120-011-04-01"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "120"
},
{
"name": "Bay",
"value": "011"
},
{
"name": "Level",
"value": "04"
},
{
"name": "Bin",
"value": "01"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-120-011-04-01"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000024142"
}
},
{
"id": "438bf5ae-ba7a-46e3-b1df-3d27ac9b76b4",
"type": "SCAN",
"location_id": "3844",
"status": "AVAILABLE",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/13333435",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"042272005826"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Amy's&#174; Organic Light in Sodium Lentil Vegetable Soup 14.5 oz",
"SAB1-120-011-04-01"
],
"confirmationRequired": false,
"successMessageParams": [
"042272005826"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"042272005826"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "b501e406-24b2-4feb-8a11-7c153c0b8112",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "AVAILABLE",
"metadata": {
"upc": "085239081815",
"dpci": "071-08-0181",
"tcin": "17463284",
"upcList": [
"085239081815"
],
"subTasks": [
"329a982d-9f21-471d-b4db-56378bfba0a2",
"4fe5ece2-d8be-4dae-8a1c-1832b52c1dca"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105838",
"itemType": "FOOD",
"sortGroup": "3230:B13",
"packLocation": {
"order": 1,
"shelf": "TRIANGLE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B13",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"692d1475-2ad4-4d1b-ba6a-879377e52160"
],
"autoSkipTaskId": "692d1475-2ad4-4d1b-ba6a-879377e52160",
"reservedItemId": "5d258fc8-238b-4bf7-93de-22629ad31a5d",
"transferOrderId": "100000003420080",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000024091"
},
"children": [
{
"id": "329a982d-9f21-471d-b4db-56378bfba0a2",
"type": "SCAN",
"location_id": "3844",
"status": "AVAILABLE",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000024091",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-120-009-04-03"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "120"
},
{
"name": "Bay",
"value": "009"
},
{
"name": "Level",
"value": "04"
},
{
"name": "Bin",
"value": "03"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-120-009-04-03"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000024091"
}
},
{
"id": "4fe5ece2-d8be-4dae-8a1c-1832b52c1dca",
"type": "SCAN",
"location_id": "3844",
"status": "AVAILABLE",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/17463284",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"085239081815"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Roasted Cashews Lightly Salted 9.5oz - Archer Farms&#153;",
"SAB1-120-009-04-03"
],
"confirmationRequired": false,
"successMessageParams": [
"085239081815"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"085239081815"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "2231fd43-7af1-4234-b1e4-f57d7b6b01c2",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "AVAILABLE",
"metadata": {
"upc": "042272005826",
"dpci": "212-18-0964",
"tcin": "13333435",
"upcList": [
"042272005826"
],
"subTasks": [
"de3ee1c9-4b32-4353-a75b-ce26532a2ca8",
"70c64cc0-81cf-4ec4-9eb4-a4e7fff73f2a"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105839",
"itemType": "FOOD",
"sortGroup": "3230:B4",
"packLocation": {
"order": 2,
"shelf": "SQUARE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B4",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"4bc41171-53e4-40a5-8fe7-ca4c6b107c2c"
],
"autoSkipTaskId": "4bc41171-53e4-40a5-8fe7-ca4c6b107c2c",
"reservedItemId": "11781b81-ac1b-46af-b8a0-4e485943fe24",
"transferOrderId": "100000003417259",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000024033"
},
"children": [
{
"id": "de3ee1c9-4b32-4353-a75b-ce26532a2ca8",
"type": "SCAN",
"location_id": "3844",
"status": "AVAILABLE",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000024033",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-120-007-03-01"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "120"
},
{
"name": "Bay",
"value": "007"
},
{
"name": "Level",
"value": "03"
},
{
"name": "Bin",
"value": "01"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-120-007-03-01"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000024033"
}
},
{
"id": "70c64cc0-81cf-4ec4-9eb4-a4e7fff73f2a",
"type": "SCAN",
"location_id": "3844",
"status": "AVAILABLE",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/13333435",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"042272005826"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Amy's&#174; Organic Light in Sodium Lentil Vegetable Soup 14.5 oz",
"SAB1-120-007-03-01"
],
"confirmationRequired": false,
"successMessageParams": [
"042272005826"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"042272005826"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "18b09aab-989c-41e1-8323-84b44130d398",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "AVAILABLE",
"metadata": {
"upc": "042272005826",
"dpci": "212-18-0964",
"tcin": "13333435",
"upcList": [
"042272005826"
],
"subTasks": [
"94169b19-4a83-432f-a1cd-3502e4dd02e6",
"fb499fe2-63c1-4ffe-8b30-6639f851e11c"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105839",
"itemType": "FOOD",
"sortGroup": "3230:B4",
"packLocation": {
"order": 2,
"shelf": "SQUARE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B4",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"45e0cd17-dade-457d-b574-f5c811f4b79a"
],
"autoSkipTaskId": "45e0cd17-dade-457d-b574-f5c811f4b79a",
"reservedItemId": "70046c40-dec5-4d9f-959b-70b4afa39ad3",
"transferOrderId": "100000003417259",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000024033"
},
"children": [
{
"id": "94169b19-4a83-432f-a1cd-3502e4dd02e6",
"type": "SCAN",
"location_id": "3844",
"status": "AVAILABLE",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000024033",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-120-007-03-01"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "120"
},
{
"name": "Bay",
"value": "007"
},
{
"name": "Level",
"value": "03"
},
{
"name": "Bin",
"value": "01"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-120-007-03-01"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000024033"
}
},
{
"id": "fb499fe2-63c1-4ffe-8b30-6639f851e11c",
"type": "SCAN",
"location_id": "3844",
"status": "AVAILABLE",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/13333435",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"042272005826"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Amy's&#174; Organic Light in Sodium Lentil Vegetable Soup 14.5 oz",
"SAB1-120-007-03-01"
],
"confirmationRequired": false,
"successMessageParams": [
"042272005826"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"042272005826"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "b1988f51-3e4e-45d4-9a14-61554adfdb7b",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "AVAILABLE",
"metadata": {
"upc": "042272005826",
"dpci": "212-18-0964",
"tcin": "13333435",
"upcList": [
"042272005826"
],
"subTasks": [
"37b5ec90-8983-43ca-a53c-88b510b84fcc",
"cbcdc55f-dfde-4c9c-868e-fd2d88e5d2e3"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105839",
"itemType": "FOOD",
"sortGroup": "3230:B4",
"packLocation": {
"order": 2,
"shelf": "SQUARE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B4",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"35f7b591-bd7a-4e6e-b0a3-edd437e58230"
],
"autoSkipTaskId": "35f7b591-bd7a-4e6e-b0a3-edd437e58230",
"reservedItemId": "037faf25-e0de-4aa7-9005-02f0958bfe92",
"transferOrderId": "100000003417259",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000024033"
},
"children": [
{
"id": "37b5ec90-8983-43ca-a53c-88b510b84fcc",
"type": "SCAN",
"location_id": "3844",
"status": "AVAILABLE",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000024033",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-120-007-03-01"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "120"
},
{
"name": "Bay",
"value": "007"
},
{
"name": "Level",
"value": "03"
},
{
"name": "Bin",
"value": "01"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-120-007-03-01"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000024033"
}
},
{
"id": "cbcdc55f-dfde-4c9c-868e-fd2d88e5d2e3",
"type": "SCAN",
"location_id": "3844",
"status": "AVAILABLE",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/13333435",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"042272005826"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Amy's&#174; Organic Light in Sodium Lentil Vegetable Soup 14.5 oz",
"SAB1-120-007-03-01"
],
"confirmationRequired": false,
"successMessageParams": [
"042272005826"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"042272005826"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "26c40529-6575-48fa-81d5-790cb695f308",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "AVAILABLE",
"metadata": {
"upc": "892773000864",
"dpci": "071-06-0108",
"tcin": "14384805",
"upcList": [
"892773008648",
"892773000864"
],
"subTasks": [
"ebffecce-63d3-4696-b7a1-a75bdf0edd57",
"9a3d5de9-f6d1-4e6b-8b5e-20fd77034f1e"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105841",
"itemType": "FOOD",
"sortGroup": "3230:B14",
"packLocation": {
"order": 2,
"shelf": "CIRCLE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B14",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"98968913-585a-4426-9830-6dcae1970b7b"
],
"autoSkipTaskId": "98968913-585a-4426-9830-6dcae1970b7b",
"reservedItemId": "54d9ccc5-6ac2-4f44-93d5-4c274ceb6dd3",
"transferOrderId": "100000003423221",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000024511"
},
"children": [
{
"id": "ebffecce-63d3-4696-b7a1-a75bdf0edd57",
"type": "SCAN",
"location_id": "3844",
"status": "AVAILABLE",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000024511",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-121-007-03-03"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "121"
},
{
"name": "Bay",
"value": "007"
},
{
"name": "Level",
"value": "03"
},
{
"name": "Bin",
"value": "03"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-121-007-03-03"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000024511"
}
},
{
"id": "9a3d5de9-f6d1-4e6b-8b5e-20fd77034f1e",
"type": "SCAN",
"location_id": "3844",
"status": "AVAILABLE",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/14384805",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"892773008648",
"892773000864"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Angie's Boomchickapop Sea Salt Popcorn - 4.8oz",
"SAB1-121-007-03-03"
],
"confirmationRequired": false,
"successMessageParams": [
"892773000864"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"892773008648",
"892773000864"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "1778f29b-98c9-4a69-9e14-4c07a30c6cbc",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "AVAILABLE",
"metadata": {
"upc": "085239173404",
"dpci": "212-40-0173",
"tcin": "12995115",
"upcList": [
"085239173404",
"085239401736"
],
"subTasks": [
"2011bfed-f6fc-4cfe-bf4d-c4ba24ee2702",
"32c69866-aafe-46dd-a8f3-dc7cf5d0bcd3"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105839",
"itemType": "FOOD",
"sortGroup": "3230:B4",
"packLocation": {
"order": 2,
"shelf": "SQUARE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B4",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"372c0f0c-0ca4-440f-a910-1e9c3d88d0f4"
],
"autoSkipTaskId": "372c0f0c-0ca4-440f-a910-1e9c3d88d0f4",
"reservedItemId": "f82b7735-84af-45d1-9dc4-ed563cb252ed",
"transferOrderId": "100000003419961",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000024571"
},
"children": [
{
"id": "2011bfed-f6fc-4cfe-bf4d-c4ba24ee2702",
"type": "SCAN",
"location_id": "3844",
"status": "AVAILABLE",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000024571",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-121-009-06-01"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "121"
},
{
"name": "Bay",
"value": "009"
},
{
"name": "Level",
"value": "06"
},
{
"name": "Bin",
"value": "01"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-121-009-06-01"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000024571"
}
},
{
"id": "32c69866-aafe-46dd-a8f3-dc7cf5d0bcd3",
"type": "SCAN",
"location_id": "3844",
"status": "AVAILABLE",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/12995115",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"085239173404",
"085239401736"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"All Natural Basil & Garlic Tomato Pasta Sauce 26oz - Market Pantry&#153;",
"SAB1-121-009-06-01"
],
"confirmationRequired": false,
"successMessageParams": [
"085239173404"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"085239173404",
"085239401736"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "7b3f3c67-7cc4-4fda-bcd8-b3dd888add95",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "AVAILABLE",
"metadata": {
"upc": "016000439801",
"dpci": "071-20-0351",
"tcin": "13062764",
"upcList": [
"016000439801",
"490712003510"
],
"subTasks": [
"ca49d674-4e8f-4995-a949-69bbe2f3c248",
"8c9fdd38-db69-41b2-af74-3bfb8015317d"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105842",
"itemType": "FOOD",
"sortGroup": "3230:B15",
"packLocation": {
"order": 1,
"shelf": "CIRCLE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B15",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"5badafa8-6279-443e-9071-e7c75dab40d7"
],
"autoSkipTaskId": "5badafa8-6279-443e-9071-e7c75dab40d7",
"reservedItemId": "78233d06-60f3-4ed3-bd91-bd5f0f6b75ff",
"transferOrderId": "100000003418750",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000024711"
},
"children": [
{
"id": "ca49d674-4e8f-4995-a949-69bbe2f3c248",
"type": "SCAN",
"location_id": "3844",
"status": "AVAILABLE",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000024711",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-121-014-09-01"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "121"
},
{
"name": "Bay",
"value": "014"
},
{
"name": "Level",
"value": "09"
},
{
"name": "Bin",
"value": "01"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-121-014-09-01"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000024711"
}
},
{
"id": "8c9fdd38-db69-41b2-af74-3bfb8015317d",
"type": "SCAN",
"location_id": "3844",
"status": "AVAILABLE",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/13062764",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"016000439801",
"490712003510"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Nature Valley Chewy Trail Mix - Fruit & Nut Bars - 6ct",
"SAB1-121-014-09-01"
],
"confirmationRequired": false,
"successMessageParams": [
"016000439801"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"016000439801",
"490712003510"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "785b75bb-63b5-4723-aeff-7b7b54c7371d",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "AVAILABLE",
"metadata": {
"upc": "722252660763",
"dpci": "071-20-0545",
"tcin": "13508389",
"upcList": [
"722252160164",
"722252165282",
"722252165473",
"722252660763",
"722252166135",
"490712005453"
],
"subTasks": [
"0895f0a3-e914-46e0-a768-a3a5f026a46d",
"0e4859fb-0f32-4223-b1cc-3d4fcb58f3e4"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105842",
"itemType": "FOOD",
"sortGroup": "3230:B15",
"packLocation": {
"order": 1,
"shelf": "CIRCLE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B15",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"fd6a6142-cf61-4b75-8066-91f4985a7d45"
],
"autoSkipTaskId": "fd6a6142-cf61-4b75-8066-91f4985a7d45",
"reservedItemId": "3e096a58-c001-4ead-b464-a44558f37695",
"transferOrderId": "100000003415072",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000024690"
},
"children": [
{
"id": "0895f0a3-e914-46e0-a768-a3a5f026a46d",
"type": "SCAN",
"location_id": "3844",
"status": "AVAILABLE",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000024690",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-121-014-02-01"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "121"
},
{
"name": "Bay",
"value": "014"
},
{
"name": "Level",
"value": "02"
},
{
"name": "Bin",
"value": "01"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-121-014-02-01"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000024690"
}
},
{
"id": "0e4859fb-0f32-4223-b1cc-3d4fcb58f3e4",
"type": "SCAN",
"location_id": "3844",
"status": "AVAILABLE",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/13508389",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"722252160164",
"722252165282",
"722252165473",
"722252660763",
"722252166135",
"490712005453"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Clif Bar&#174; White Chocolate Macadamia Nut Energy Bar - 6ct",
"SAB1-121-014-02-01"
],
"confirmationRequired": false,
"successMessageParams": [
"722252660763"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"722252160164",
"722252165282",
"722252165473",
"722252660763",
"722252166135",
"490712005453"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "b104d866-f91b-44b1-9a4f-f5f862bca739",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "AVAILABLE",
"metadata": {
"upc": "722252660763",
"dpci": "071-20-0545",
"tcin": "13508389",
"upcList": [
"722252160164",
"722252165282",
"722252165473",
"722252660763",
"722252166135",
"490712005453"
],
"subTasks": [
"d9080f3e-4e33-4325-b29e-0a3fa1d19772",
"bbce5d74-453e-474e-ac29-ddb0f5606606"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105842",
"itemType": "FOOD",
"sortGroup": "3230:B15",
"packLocation": {
"order": 1,
"shelf": "CIRCLE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B15",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"ae5fc195-be79-4c19-b869-11d53ecc3d65"
],
"autoSkipTaskId": "ae5fc195-be79-4c19-b869-11d53ecc3d65",
"reservedItemId": "85b72ea8-000e-4765-aea8-0d0de7c3fc5d",
"transferOrderId": "100000003420144",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000024690"
},
"children": [
{
"id": "d9080f3e-4e33-4325-b29e-0a3fa1d19772",
"type": "SCAN",
"location_id": "3844",
"status": "AVAILABLE",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000024690",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-121-014-02-01"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "121"
},
{
"name": "Bay",
"value": "014"
},
{
"name": "Level",
"value": "02"
},
{
"name": "Bin",
"value": "01"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-121-014-02-01"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000024690"
}
},
{
"id": "bbce5d74-453e-474e-ac29-ddb0f5606606",
"type": "SCAN",
"location_id": "3844",
"status": "AVAILABLE",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/13508389",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"722252160164",
"722252165282",
"722252165473",
"722252660763",
"722252166135",
"490712005453"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Clif Bar&#174; White Chocolate Macadamia Nut Energy Bar - 6ct",
"SAB1-121-014-02-01"
],
"confirmationRequired": false,
"successMessageParams": [
"722252660763"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"722252160164",
"722252165282",
"722252165473",
"722252660763",
"722252166135",
"490712005453"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "4ae93111-0aaf-42af-9aff-dd6f88ee7d5a",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "AVAILABLE",
"metadata": {
"upc": "753656711133",
"dpci": "071-20-0864",
"tcin": "15763915",
"upcList": [
"753656711133",
"490712008645"
],
"subTasks": [
"bbf6cddf-6ee3-437b-a1c7-686e01ca68b8",
"38cad2e3-a179-4452-a6f2-29230b440b72"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105842",
"itemType": "FOOD",
"sortGroup": "3230:B15",
"packLocation": {
"order": 1,
"shelf": "CIRCLE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B15",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"265bad1f-c138-49ee-b44b-aaa67ba8bb1b"
],
"autoSkipTaskId": "265bad1f-c138-49ee-b44b-aaa67ba8bb1b",
"reservedItemId": "d84ca924-79b3-4a90-bca7-31f21c4db114",
"transferOrderId": "100000003422617",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000024764"
},
"children": [
{
"id": "bbf6cddf-6ee3-437b-a1c7-686e01ca68b8",
"type": "SCAN",
"location_id": "3844",
"status": "AVAILABLE",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000024764",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-121-016-09-01"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "121"
},
{
"name": "Bay",
"value": "016"
},
{
"name": "Level",
"value": "09"
},
{
"name": "Bin",
"value": "01"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-121-016-09-01"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000024764"
}
},
{
"id": "38cad2e3-a179-4452-a6f2-29230b440b72",
"type": "SCAN",
"location_id": "3844",
"status": "AVAILABLE",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/15763915",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"753656711133",
"490712008645"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Thinkthin&#174; Lean Protein Salted Caramel Bars - 5ct",
"SAB1-121-016-09-01"
],
"confirmationRequired": false,
"successMessageParams": [
"753656711133"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"753656711133",
"490712008645"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "b607b3a3-cf24-453b-9a3a-042dee52142c",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "AVAILABLE",
"metadata": {
"upc": "722252660077",
"dpci": "071-20-0585",
"tcin": "13508821",
"upcList": [
"490712005859",
"722252165268",
"722252660077"
],
"subTasks": [
"8ed5e64b-c349-45c7-aa8d-14a056d03cb0",
"6dec6325-0783-4c04-acef-8c6cd06655ae"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105842",
"itemType": "FOOD",
"sortGroup": "3230:B15",
"packLocation": {
"order": 1,
"shelf": "CIRCLE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B15",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"7c011715-033d-4d13-aa54-cdc87be6ad59"
],
"autoSkipTaskId": "7c011715-033d-4d13-aa54-cdc87be6ad59",
"reservedItemId": "d1c226a7-6006-4348-a424-c9233d1b6f76",
"transferOrderId": "100000003420085",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000025107"
},
"children": [
{
"id": "8ed5e64b-c349-45c7-aa8d-14a056d03cb0",
"type": "SCAN",
"location_id": "3844",
"status": "AVAILABLE",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000025107",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-122-011-07-03"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "122"
},
{
"name": "Bay",
"value": "011"
},
{
"name": "Level",
"value": "07"
},
{
"name": "Bin",
"value": "03"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-122-011-07-03"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000025107"
}
},
{
"id": "6dec6325-0783-4c04-acef-8c6cd06655ae",
"type": "SCAN",
"location_id": "3844",
"status": "AVAILABLE",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/13508821",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"490712005859",
"722252165268",
"722252660077"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Clif Bar&#174; Blueberry Crisp Energy Bar - 6ct",
"SAB1-122-011-07-03"
],
"confirmationRequired": false,
"successMessageParams": [
"722252660077"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"490712005859",
"722252165268",
"722252660077"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "b1215140-774a-4723-a36d-cd7ff5c56cc5",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "AVAILABLE",
"metadata": {
"upc": "613008720858",
"dpci": "203-00-0183",
"tcin": "13388793",
"upcList": [
"613008720858"
],
"subTasks": [
"84f91085-1a0d-4311-af7e-6dd61c65ccf6",
"f6cf80ee-83dc-41f0-8333-4ccf82218e12"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105837",
"itemType": "FOOD",
"sortGroup": "3230:C11",
"packLocation": {
"order": 2,
"shelf": "TRIANGLE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "C11",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"47dd3803-20e7-464a-99a2-151ba84a34fc"
],
"autoSkipTaskId": "47dd3803-20e7-464a-99a2-151ba84a34fc",
"reservedItemId": "1a579caf-680a-41cb-a32a-8a66926c67fe",
"transferOrderId": "100000003419467",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000032860"
},
"children": [
{
"id": "84f91085-1a0d-4311-af7e-6dd61c65ccf6",
"type": "SCAN",
"location_id": "3844",
"status": "AVAILABLE",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000032860",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAC1-123-006-08-01"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAC1"
},
{
"name": "Aisle",
"value": "123"
},
{
"name": "Bay",
"value": "006"
},
{
"name": "Level",
"value": "08"
},
{
"name": "Bin",
"value": "01"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAC1-123-006-08-01"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000032860"
}
},
{
"id": "f6cf80ee-83dc-41f0-8333-4ccf82218e12",
"type": "SCAN",
"location_id": "3844",
"status": "AVAILABLE",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/13388793",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"613008720858"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Arizona Arnold Palmer Lite Half Iced Tea & Half Lemonade 128 oz",
"SAC1-123-006-08-01"
],
"confirmationRequired": false,
"successMessageParams": [
"613008720858"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"613008720858"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "64e12063-df78-4d5b-84e9-e16ab4225991",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "AVAILABLE",
"metadata": {
"upc": "850251004001",
"dpci": "071-06-0195",
"tcin": "16654901",
"upcList": [
"850251004001",
"490710601954"
],
"subTasks": [
"fad7dc3e-c80f-41f3-b598-85319539c5c1",
"05d99c21-2121-4426-928f-cb64cd9f7bf7"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105841",
"itemType": "FOOD",
"sortGroup": "3230:B14",
"packLocation": {
"order": 2,
"shelf": "CIRCLE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B14",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"0e6ea9b1-4e22-4ba5-8dab-aba7230f6064"
],
"autoSkipTaskId": "0e6ea9b1-4e22-4ba5-8dab-aba7230f6064",
"reservedItemId": "eb6ea6bc-e46c-4891-bf74-6d93922d5a1c",
"transferOrderId": "100000003422654",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000025387"
},
"children": [
{
"id": "fad7dc3e-c80f-41f3-b598-85319539c5c1",
"type": "SCAN",
"location_id": "3844",
"status": "AVAILABLE",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000025387",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-123-007-07-01"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "123"
},
{
"name": "Bay",
"value": "007"
},
{
"name": "Level",
"value": "07"
},
{
"name": "Bin",
"value": "01"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-123-007-07-01"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000025387"
}
},
{
"id": "05d99c21-2121-4426-928f-cb64cd9f7bf7",
"type": "SCAN",
"location_id": "3844",
"status": "AVAILABLE",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/16654901",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"850251004001",
"490710601954"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Skinnypop&#174; Original Popcorn - 4.4oz",
"SAB1-123-007-07-01"
],
"confirmationRequired": false,
"successMessageParams": [
"850251004001"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"850251004001",
"490710601954"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "10d1af9c-dedd-401a-b55b-7d8ca64b5b39",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "AVAILABLE",
"metadata": {
"upc": "850251004001",
"dpci": "071-06-0195",
"tcin": "16654901",
"upcList": [
"850251004001",
"490710601954"
],
"subTasks": [
"3651fdb9-10ac-42bf-a265-b4d712594b98",
"6c049472-db8a-47dc-99dc-2035d5a3ce0b"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105840",
"itemType": "FOOD",
"sortGroup": "3230:B14",
"packLocation": {
"order": 1,
"shelf": "SQUARE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B14",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"96b9a66d-7dfa-452d-8c32-efd88c597d24"
],
"autoSkipTaskId": "96b9a66d-7dfa-452d-8c32-efd88c597d24",
"reservedItemId": "508ae3ac-34b2-44b6-97a1-f38c8725ac39",
"transferOrderId": "100000003422654",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000025387"
},
"children": [
{
"id": "3651fdb9-10ac-42bf-a265-b4d712594b98",
"type": "SCAN",
"location_id": "3844",
"status": "AVAILABLE",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000025387",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAB1-123-007-07-01"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAB1"
},
{
"name": "Aisle",
"value": "123"
},
{
"name": "Bay",
"value": "007"
},
{
"name": "Level",
"value": "07"
},
{
"name": "Bin",
"value": "01"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAB1-123-007-07-01"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000025387"
}
},
{
"id": "6c049472-db8a-47dc-99dc-2035d5a3ce0b",
"type": "SCAN",
"location_id": "3844",
"status": "AVAILABLE",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/16654901",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"850251004001",
"490710601954"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Skinnypop&#174; Original Popcorn - 4.4oz",
"SAB1-123-007-07-01"
],
"confirmationRequired": false,
"successMessageParams": [
"850251004001"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"850251004001",
"490710601954"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "1b1d2061-16b0-4a24-8b09-610ae5c353ae",
"type": "AGGREGATE",
"location_id": "3844",
"aggregate_task_type": "TRANSFER_INVENTORY",
"status": "AVAILABLE",
"metadata": {
"upc": "850251004001",
"dpci": "071-06-0195",
"tcin": "16654901",
"upcList": [
"850251004001",
"490710601954"
],
"subTasks": [
"a5ac331b-5dfa-49ac-a02a-41aef2440426",
"fc2c94bf-f51e-4d20-afb4-000432e04c89"
],
"packLabel": {
"store": "3230",
"barcode": "384470100000105841",
"itemType": "FOOD",
"sortGroup": "3230:B14",
"packLocation": {
"order": 2,
"shelf": "CIRCLE"
},
"packVesselType": "LRG"
},
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.TransferInventoryProcessor",
"sortGroup": "B14",
"newItemStatus": "PROCESSING",
"alternateTasks": [
"b3329660-4435-492c-aa05-02e70f5cbdda"
],
"autoSkipTaskId": "b3329660-4435-492c-aa05-02e70f5cbdda",
"reservedItemId": "bcf4d9a9-6dc5-435c-ac33-1d297f05b8b1",
"transferOrderId": "100000003422654",
"confirmationRequired": false,
"destinationLocationId": "3230",
"rootAggregateTaskType": "PICK",
"sourceContainerBarcode": "384410100000032865"
},
"children": [
{
"id": "a5ac331b-5dfa-49ac-a02a-41aef2440426",
"type": "SCAN",
"location_id": "3844",
"status": "AVAILABLE",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.scanBin",
"acceptedValue": "384410100000032865",
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.scanBinSuccess",
"descriptionParams": [
"SAC1-123-008-02-02"
],
"additionalAttributes": [
{
"name": "Area",
"value": "SAC1"
},
{
"name": "Aisle",
"value": "123"
},
{
"name": "Bay",
"value": "008"
},
{
"name": "Level",
"value": "02"
},
{
"name": "Bin",
"value": "02"
}
],
"confirmationRequired": false,
"successMessageParams": [
"SAC1-123-008-02-02"
],
"rootAggregateTaskType": "PICK",
"validatesBarcodeValue": "384410100000032865"
}
},
{
"id": "fc2c94bf-f51e-4d20-afb4-000432e04c89",
"type": "SCAN",
"location_id": "3844",
"status": "AVAILABLE",
"metadata": {
"image": "http://target.scene7.com/is/image/Target/16654901",
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.pickItemScan",
"acceptedValue": [
"850251004001",
"490710601954"
],
"acceptanceType": "SERVER_VALIDATION",
"successMessage": "pick.pickItemScanSuccess",
"descriptionParams": [
"Skinnypop&#174; Original Popcorn - 4.4oz",
"SAC1-123-008-02-02"
],
"confirmationRequired": false,
"successMessageParams": [
"850251004001"
],
"mapRootToParentSource": "assignedCartId",
"rootAggregateTaskType": "PICK",
"validatesBarcodeIsOneOf": [
"850251004001",
"490710601954"
],
"mapRootToParentDestination": "destinationContainerBarcode"
}
}
]
},
{
"id": "4da2c5ad-bf97-4895-9d41-0151bff4b5b8",
"type": "SCAN",
"location_id": "3844",
"status": "AVAILABLE",
"metadata": {
"processor": "com.tgt.warehouse.taskmanagement.processing.processors.generic.ScanTaskProcessor",
"description": "pick.complete",
"acceptedValue": "^[\\d]{4}306[\\d]{11}",
"acceptanceType": "REGEX",
"successMessage": "pick.completeSuccess",
"descriptionParams": [
"3230"
],
"confirmationRequired": false,
"successMessageParams": [],
"validatesBarcodeType": "PACK_STAGING",
"rootAggregateTaskType": "PICK"
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment