| Field Name | Data Type | Description | Nested Fields |
|---|---|---|---|
| _id | string | Unique identifier for each document within collection | 0 |
| shipment_id | string | Unique identifier for shipment | 0 |
| po_id | string | Unique identifier for po | 0 |
| shipment_date | datetime | Timestamp for when shipment date was created/updated | 0 |
| expected_delivery | datetime | Field for expected delivery | 0 |
| actual_delivery | datetime | Field for actual delivery | 0 |
| status | string | Current status of shipment | 0 |
| items | array_of_objects | Field for items | 5 |
| items.item_id | string | Unique identifier for item | 0 |
| items.variant_id | string | Unique identifier for variant | 0 |
| items.product_id | string | Unique identifier for product | 0 |
| items.sku | string | Field for sku | 0 |
| items.quantity | integer | Quantity of specific item which shipped. | 0 |
| shipping_cost | float | Field for shipping cost | 0 |
| destination_address | object | Address information for destination | 5 |
| destination_address.street | string | Field for street | 0 |
| destination_address.city | string | Field for city | 0 |
| destination_address.state | string | Field for state | 0 |
| destination_address.zip_code | integer | Field for zip code | 0 |
| destination_address.country | string | Field for country | 0 |
| is_active | boolean | Field for is active | 0 |
| created_at | datetime | Timestamp when the record was created | 0 |
| updated_at | datetime | Timestamp when the record was updated | 0 |
| destination_location | object | Object containing destination location details | 2 |
| destination_location.location_id | string | Unique identifier for location | 0 |
| destination_location.name | string | Name of location where specific item will be shipped. | 0 |
| carrier | object | Object containing carrier details | 3 |
| carrier.carrier_id | string | Unique identifier for carrier | 0 |
| carrier.carrier_name | string | Name of carrier | 0 |
| carrier.tracking_number | string | Field for tracking number | 0 |
Example
Example