Logistics Module
Comprehensive logistics and shipping management module for businesses requiring order fulfillment, delivery tracking, and inventory coordination.
Recommended For
Shipping Methods
Carrier Types
Fulfillment Features
The Logistics module enables AI systems to understand and manage complex shipping, fulfillment, and delivery operations. It provides comprehensive tools for order tracking, inventory management, and multi-carrier shipping coordination.
Multiple Shipping Methods
Support for standard, express, same-day, and specialized delivery options
Carrier Integration
Integration with major shipping carriers and local delivery services
Inventory Management
Track stock levels, manage warehouses, and coordinate fulfillment
Order Tracking
Real-time tracking with notifications and delivery estimates
Returns Management
Streamlined returns process with reverse logistics support
Global Delivery Zones
Define delivery areas with specific pricing and timeframes
Online stores requiring shipping and fulfillment
Order delivery and tracking essential for customer satisfaction
Multi-vendor platforms with complex logistics needs
Coordinate shipping from multiple vendors to customers
Food delivery services and takeout management
Food delivery tracking and coordination with delivery drivers
Retail stores with online presence and delivery
Omnichannel fulfillment and local delivery capabilities
Regular shipping with standard delivery times
Faster delivery with premium pricing
Next-day delivery for urgent orders
Same-day delivery for local areas
Customer pickup from store or designated location
Drone delivery for small packages
Digital delivery for downloadable products
United Parcel Service - global shipping network
FedEx - express delivery and logistics services
DHL - international express and logistics
United States Postal Service - domestic delivery
Local courier services for regional delivery
Company-owned delivery vehicles and drivers
Third-party logistics providers and fulfillment centers
hasInventoryManagementTrack stock levels across multiple locations and warehouses
hasOrderTrackingReal-time order status and shipment tracking capabilities
hasMultiWarehouseCoordinate fulfillment across multiple warehouse locations
hasDropshippingDirect supplier-to-customer shipping without inventory
hasReturnsManagementStreamlined returns process with reverse logistics
hasPackagingCustom packaging options and branded shipping materials
hasInsuranceShipping insurance for valuable or fragile items
hasSignatureRequiredSignature confirmation for high-value deliveries
hasRealTimeTrackingLive tracking updates throughout the delivery process
hasNotificationsAutomated notifications for status changes and delivery updates
hasEstimatedDeliveryAccurate delivery time estimates based on carrier data
hasProofOfDeliveryDigital proof of delivery with photos and signatures
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "Logistics Module",
"description": "Module for logistics, shipping, and order fulfillment management",
"aimlVersion": "2.0.1",
"schemaVersion": "2.0.1",
"type": "object",
"properties": {
"version": {
"type": "string",
"const": "2.0.1",
"description": "Module version"
},
"enabled": {
"type": "boolean",
"description": "Whether logistics module is enabled"
},
"shippingMethods": {
"type": "array",
"items": {
"type": "string",
"enum": ["standard", "express", "overnight", "same_day", "pickup", "drone", "digital"]
},
"description": "Available shipping and delivery methods"
},
"carriers": {
"type": "array",
"items": {
"type": "string",
"enum": ["ups", "fedex", "dhl", "usps", "local_courier", "own_fleet", "third_party"]
},
"description": "Shipping carriers and delivery services"
},
"fulfillmentCapabilities": {
"type": "object",
"properties": {
"hasInventoryManagement": { "type": "boolean" },
"hasOrderTracking": { "type": "boolean" },
"hasMultiWarehouse": { "type": "boolean" },
"hasDropshipping": { "type": "boolean" },
"hasReturnsManagement": { "type": "boolean" },
"hasPackaging": { "type": "boolean" },
"hasInsurance": { "type": "boolean" },
"hasSignatureRequired": { "type": "boolean" }
},
"description": "Order fulfillment and logistics capabilities"
},
"deliveryZones": {
"type": "array",
"items": {
"type": "object",
"properties": {
"zone": { "type": "string" },
"countries": { "type": "array", "items": { "type": "string" } },
"deliveryTime": { "type": "string" },
"cost": { "type": "number" }
}
},
"description": "Delivery zones and pricing"
},
"trackingIntegration": {
"type": "object",
"properties": {
"hasRealTimeTracking": { "type": "boolean" },
"hasNotifications": { "type": "boolean" },
"hasEstimatedDelivery": { "type": "boolean" },
"hasProofOfDelivery": { "type": "boolean" }
}
}
},
"required": ["version", "enabled"],
"additionalProperties": true
}{
"modules": {
"logistics": {
"version": "2.0.1",
"enabled": true,
"shippingMethods": ["standard", "express", "same_day", "pickup"],
"carriers": ["ups", "fedex", "local_courier", "own_fleet"],
"fulfillmentCapabilities": {
"hasInventoryManagement": true,
"hasOrderTracking": true,
"hasMultiWarehouse": false,
"hasDropshipping": true,
"hasReturnsManagement": true,
"hasPackaging": true,
"hasInsurance": true,
"hasSignatureRequired": false
},
"deliveryZones": [
{
"zone": "local",
"countries": ["US"],
"deliveryTime": "1-2 days",
"cost": 5.99
},
{
"zone": "international",
"countries": ["CA", "MX"],
"deliveryTime": "5-7 days",
"cost": 19.99
}
],
"trackingIntegration": {
"hasRealTimeTracking": true,
"hasNotifications": true,
"hasEstimatedDelivery": true,
"hasProofOfDelivery": true
}
}
}
}https://schemas.meta-aiml.org/v2.0.1/templates/module/logistics.jsonIncluded in entity schemas via the modules object