### Orchestration Status for Off-Dock Locations If the container is moved to an off-dock location, a new location will appear in the ‘locations’ array with ‘locationtype_cd’ = ‘M’ (Intermediate). The origin facility will report a GATE OUT status and will be marked as completed (‘locationstatus_cd’ = ‘CMP’) and the off-dock location will report a GATE IN status and will become active (‘locationstatus_cd’ = ‘ACT). ``` { ... "unitstatusinfo": { "status_cd": "O" "status_desc": "GATE IN", "unituse_cd": "I", "unituse_desc": "IMPORT" }, "locations": [ { "port_cd": "PORTA", "port_nm": "Port of A", "facility_cd": "FCLTA", "facility_nm": "Facility A", "locationtype_cd": "O", "guarantee_through_date": "2022-10-25", "reservation_preferences": null, "seq_nbr": "1", "locationstatus_cd": "CMP", "locationinfo": { ... "departureinfo": { "carriertype_cd": "MC", "carriertype_desc": "Motor Carrier", ... }, ... } }, { "port_cd": "PORTA", "port_nm": "Port of A", "facility_cd": "OFFDCKA", "facility_nm": "Off-Dock Facility A", "locationtype_cd": "M", "guarantee_through_date": null, "reservation_preferences: null, "seq_nbr": "2", "locationstatus_cd": "ACT", "locationinfo": { "arrivalinfo": { ... }, "departureinfo": { ... }, ... } } ], "holdinfo": [ { "type": "FEE", "status": "RELEASED", "status_dttm": "2022-10-20T17:17:34.294476", "details": [ { "hold_dttm": "2022-10-20T15:15:51.287916", "holdreason_cd": "DWELL", "holdreason_desc": "DWELL", "release_dttm": "2022-10-20T17:17:34.294476", "reportedby": "ABCL" } ] } ], "fee_receipts": [ { "fee_cd": "DWT", "fee_desc": "Extended Dwell Time Fee Through 2022-10-20", "fee_amt": "70.00", "fee_paid_dttm": "2022-10-20T17:17:34.294476" }, { "fee_cd": "4I", "fee_desc": "Demurrage Through 2022-10-20", "fee_amt": "285.00", "fee_paid_dttm": "2022-10-20T17:17:34.294476" } ], "lfdinfo": { "good_through_date": "2022-10-20", "last_free_day": "2022-10-17" }, "activity": [ { "seq_nbr": 1, "event_cd": "CNMAN", "event_desc": "Container Manifested", "event_dttm": null, "facility_cd": null, "facility_nm": null, }, { "seq_nbr": 2, "event_cd": "DISCH", "event_desc": "Discharged", "event_dttm": "2022-10-11T15:13:11", "facility_cd": "FCLTA", "facility_nm": "Facility A", }, { "seq_nbr": 3, "event_cd": "LFDAY", "event_desc": "Last Free Day", "event_dttm": "2022-10-17T23:59:00", "facility_cd": "FCLTA", "facility_nm": "Facility A" }, { "seq_nbr": 4, "event_cd": "PLAVI", "event_desc": "Ready for pick up", "event_dttm": "2022-10-11T15:16:07", "facility_cd": "FCLTA", "facility_nm": "Facility A" }, { "seq_nbr": 5, "event_cd": "APNMT", "event_desc": "Pregate", "event_dttm": "2022-10-21T07:00:00", "facility_cd": "FCLTA", "facility_nm": "Facility A" }, { "seq_nbr": 6, "event_cd": "DPTRM", "event_desc": "Departed Terminal", "event_dttm": "2022-10-21T07:30:00", "facility_cd": "FCLTA", "facility_nm": "Facility A" }, { "seq_nbr": 9, "event_cd": "ARCUS", "event_desc": "Arrived at customer", "event_dttm": null, "facility_cd": null, "facility_nm": null, }, { "seq_nbr": 10, "event_cd": "EMTOT", "event_desc": "Empty released by customer", "event_dttm": null, "facility_cd": null, "facility_nm": null, }, { "seq_nbr": 11, "event_cd": "EMTRC", "event_desc": "Empty Received", "event_dttm": null, "facility_cd": null, "facility_nm": null, "unitevent_uid": "" } ] } ```