diff --git a/.data/sco/compose.yaml b/.data/sco/compose.yaml new file mode 100644 index 00000000..e5f594f5 --- /dev/null +++ b/.data/sco/compose.yaml @@ -0,0 +1,33 @@ +services: + mongodb: + build: + context: ./mongodb + dockerfile: Dockerfile + container_name: axiom_sco_mongodb + shm_size: 128mb + restart: unless-stopped + ports: + - "27017:27017" + environment: + MONGO_INITDB_DATABASE: ecommerce + MONGO_INITDB_ROOT_USERNAME: root + MONGO_INITDB_ROOT_PASSWORD: ${MONGO_PASSWORD} + volumes: + - mongodb-data:/data/db + postgres: + image: postgres:latest + container_name: axiom_sco_postgres + shm_size: 128mb + restart: unless-stopped + ports: + - "5432:5432" + environment: + PGPORT: 5432 + POSTGRES_USER: postgres + POSTGRES_PASSWORD: ${POSTGRES_PASSWORD} + volumes: + - postgres-data:/var/lib/postgresql/data + - ./postgres/entrypoint/:/docker-entrypoint-initdb.d/ +volumes: + mongodb-data: + postgres-data: diff --git a/.data/sco/generate.py b/.data/sco/generate.py new file mode 100644 index 00000000..20adaaea --- /dev/null +++ b/.data/sco/generate.py @@ -0,0 +1,220 @@ +import csv +import json +import random +import os +from datetime import datetime, timedelta +from faker import Faker + +fake = Faker() + +# Helper function for MongoDB date formatting +def format_date_for_mongodb(date_obj): + """ + Format a datetime object as MongoDB Extended JSON format + MongoDB requires RFC3339 format with 'Z' at the end for UTC timezone + """ + # Format to millisecond precision and add 'Z' for UTC timezone + date_str = date_obj.strftime('%Y-%m-%dT%H:%M:%S.%f')[:-3] + 'Z' + return {"$date": date_str} + +# Create output directories +POSTGRES_DIR = "postgres/entrypoint" +MONGODB_DIR = "mongodb" +os.makedirs(POSTGRES_DIR, exist_ok=True) +os.makedirs(MONGODB_DIR, exist_ok=True) + +# Common data +SHOE_MODELS = [ + {"model_id": f"SHOE-{i:03d}", "name": fake.word().capitalize() + " Runner", "category": random.choice(["Running", "Casual", "Hiking"])} + for i in range(1, 21) +] + +MATERIALS = ["Rubber", "Leather", "Foam", "Mesh", "Glue", "Cotton", "Plastic"] +PAYMENT_METHODS = ["Credit Card", "PayPal", "Apple Pay", "Google Pay"] +SHIPPING_METHODS = ["Standard", "Express", "Overnight"] +ORDER_STATUS = ["Pending", "Processing", "Shipped", "Delivered", "Cancelled"] + +# PostgreSQL data generation functions +def generate_postgres_data(): + # Generate suppliers + with open(f"{POSTGRES_DIR}/suppliers.csv", "w", newline="") as f: + writer = csv.writer(f) + writer.writerow(["name", "contact_email", "country"]) + for _ in range(40): + writer.writerow([ + fake.company(), + fake.company_email(), + "US" + ]) + + # Generate raw materials + with open(f"{POSTGRES_DIR}/raw_materials.csv", "w", newline="") as f: + writer = csv.writer(f) + writer.writerow(["name", "unit", "cost_per_unit"]) + for mat in MATERIALS: + writer.writerow([ + mat, + "kg", + round(random.uniform(1.0, 20.0), 2) + ]) + + # Generate supplier materials + with open(f"{POSTGRES_DIR}/supplier_materials.csv", "w", newline="") as f: + writer = csv.writer(f) + writer.writerow(["supplier_id", "material_id", "lead_time_days"]) + for _ in range(80): + writer.writerow([ + random.randint(1, 10), + random.randint(1, len(MATERIALS)), + random.randint(3, 30) + ]) + + # Generate factories + with open(f"{POSTGRES_DIR}/factories.csv", "w", newline="") as f: + writer = csv.writer(f) + writer.writerow(["name", "location", "capacity"]) + for _ in range(5): + writer.writerow([ + fake.company(), + fake.city(), + random.randint(5000, 20000) + ]) + + # Generate shoes + with open(f"{POSTGRES_DIR}/shoes.csv", "w", newline="") as f: + writer = csv.writer(f) + writer.writerow(["model_name", "category", "release_date"]) + for model in SHOE_MODELS: + writer.writerow([ + model["name"], + model["category"], + fake.date_between(start_date="-2y", end_date="today").isoformat() + ]) + + # Generate bill of materials + with open(f"{POSTGRES_DIR}/bill_of_materials.csv", "w", newline="") as f: + writer = csv.writer(f) + writer.writerow(["shoe_id", "material_id", "quantity_required"]) + for shoe_id in range(1, 21): + used_materials = random.sample(range(1, len(MATERIALS)+1), k=3) + for mat_id in used_materials: + writer.writerow([ + shoe_id, + mat_id, + round(random.uniform(0.1, 2.0), 2) + ]) + + # Generate production orders + with open(f"{POSTGRES_DIR}/production_orders.csv", "w", newline="") as f: + writer = csv.writer(f) + writer.writerow(["shoe_id", "factory_id", "quantity", "start_date", "expected_completion"]) + for _ in range(150): + shoe_id = random.randint(1, 20) + factory_id = random.randint(1, 5) + start_date = fake.date_between(start_date="-1y", end_date="today") + duration = random.randint(10, 60) + writer.writerow([ + shoe_id, + factory_id, + random.randint(100, 5000), + start_date.isoformat(), + (start_date + timedelta(days=duration)).isoformat() + ]) + + # Generate warehouses + with open(f"{POSTGRES_DIR}/warehouses.csv", "w", newline="") as f: + writer = csv.writer(f) + writer.writerow(["name", "location"]) + for _ in range(5): + writer.writerow([ + fake.company(), + fake.city() + ]) + + # Generate shipments + with open(f"{POSTGRES_DIR}/shipments.csv", "w", newline="") as f: + writer = csv.writer(f) + writer.writerow(["order_id", "warehouse_id", "shipped_date", "arrival_date", "quantity"]) + for _ in range(100): + order_id = random.randint(1, 50) + warehouse_id = random.randint(1, 5) + ship_date = fake.date_between(start_date="-1y", end_date="today") + arrival_date = ship_date + timedelta(days=random.randint(1, 15)) + writer.writerow([ + order_id, + warehouse_id, + ship_date.isoformat(), + arrival_date.isoformat(), + random.randint(50, 2000) + ]) + +# MongoDB data generation functions +def generate_customer_order(): + customer = { + "customer_id": fake.uuid4(), + "name": fake.name(), + "email": fake.email(), + "phone": fake.phone_number(), + "address": { + "street": fake.street_address(), + "city": fake.city(), + "state": fake.state(), + "zip": fake.zipcode(), + "country": "US" + } + } + + order_date = fake.date_time_between(start_date="-1w", end_date="now") + items = [] + total_price = 0 + + for _ in range(random.randint(1, 3)): + product = random.choice(SHOE_MODELS) + quantity = random.randint(1, 2) + unit_price = round(random.uniform(60.0, 180.0), 2) + items.append({ + "model_id": product["model_id"], + "name": product["name"], + "category": product["category"], + "quantity": quantity, + "unit_price": unit_price, + "subtotal": round(unit_price * quantity, 2) + }) + total_price += unit_price * quantity + + order = { + "order_id": fake.uuid4(), + "customer": customer, + "order_date": format_date_for_mongodb(order_date), + "status": random.choice(ORDER_STATUS), + "items": items, + "total_price": round(total_price, 2), + "payment_method": random.choice(PAYMENT_METHODS), + "shipping_method": random.choice(SHIPPING_METHODS), + "shipping_cost": round(random.uniform(5.0, 20.0), 2), + "expected_delivery": format_date_for_mongodb(order_date + timedelta(days=random.randint(2, 10))), + "last_updated": format_date_for_mongodb(datetime.now()) + } + + return order + +def generate_mongodb_data(): + # Generate customer orders + orders = [] + for _ in range(1200): + orders.append(generate_customer_order()) + + # Write to JSON file + with open(f"{MONGODB_DIR}/customer_orders.json", "w") as f: + json.dump(orders, f, indent=2) + +if __name__ == "__main__": + print("Generating PostgreSQL data...") + generate_postgres_data() + print(f"PostgreSQL data generation complete. Files saved in {POSTGRES_DIR}/") + + print("Generating MongoDB data...") + generate_mongodb_data() + print(f"MongoDB data generation complete. Files saved in {MONGODB_DIR}/") + + print("All data generation complete!") \ No newline at end of file diff --git a/.data/sco/mongodb/Dockerfile b/.data/sco/mongodb/Dockerfile new file mode 100644 index 00000000..54735169 --- /dev/null +++ b/.data/sco/mongodb/Dockerfile @@ -0,0 +1,16 @@ +FROM mongo:latest + +# Set environment variables with default values +ENV DATABASE_URI="mongodb://localhost:27017/ecommerce" +ENV USERNAME="" +ENV PASSWORD="" + +# Copy JSON data files +COPY customer_orders.json /customer_orders.json + +# Copy and set permissions for the entrypoint script +COPY entrypoint.sh /docker-entrypoint-initdb.d/entrypoint.sh +RUN chmod +x /docker-entrypoint-initdb.d/entrypoint.sh + +# Default command (will be passed to the MongoDB entrypoint) +CMD ["mongod", "--wiredTigerCacheSizeGB", "0.25"] \ No newline at end of file diff --git a/.data/sco/mongodb/customer_orders.json b/.data/sco/mongodb/customer_orders.json new file mode 100644 index 00000000..3fd1bfff --- /dev/null +++ b/.data/sco/mongodb/customer_orders.json @@ -0,0 +1,57506 @@ +[ + { + "order_id": "c7fcfd64-4fe7-4281-bad1-d5b54ea8deb2", + "customer": { + "customer_id": "087e0861-2e12-4028-9bdf-201922e2f4d6", + "name": "Robert Zhang", + "email": "kevin54@example.com", + "phone": "+1-865-612-9465x009", + "address": { + "street": "7948 Webster Creek", + "city": "North Michael", + "state": "Montana", + "zip": "21449", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T22:15:27.196Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 1, + "unit_price": 179.3, + "subtotal": 179.3 + }, + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 2, + "unit_price": 68.87, + "subtotal": 137.74 + }, + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 179.9, + "subtotal": 179.9 + } + ], + "total_price": 496.94, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 16.62, + "expected_delivery": { + "$date": "2025-05-15T22:15:27.196Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.181Z" + } + }, + { + "order_id": "51c274e7-d297-4aca-97f9-c4345448a089", + "customer": { + "customer_id": "1a0d9e58-2f6b-41de-924a-93e8effd2efd", + "name": "Kathy Mora", + "email": "natasha34@example.net", + "phone": "607.721.3797x71348", + "address": { + "street": "53019 Jacqueline Cliffs Apt. 103", + "city": "North Davidburgh", + "state": "Massachusetts", + "zip": "36980", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T17:13:24.781Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 133.86, + "subtotal": 133.86 + }, + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 116.98, + "subtotal": 233.96 + }, + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 102.87, + "subtotal": 102.87 + } + ], + "total_price": 470.69, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 14.03, + "expected_delivery": { + "$date": "2025-05-14T17:13:24.781Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.181Z" + } + }, + { + "order_id": "b4cd4729-895c-4881-bf64-838bcec54396", + "customer": { + "customer_id": "6c26b503-49a8-4965-887b-88117bf93912", + "name": "Tara Aguilar", + "email": "trevorhanson@example.com", + "phone": "(530)254-1391x956", + "address": { + "street": "6838 Jenny Courts Suite 620", + "city": "West Caitlinside", + "state": "Rhode Island", + "zip": "99790", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T04:33:13.124Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 85.5, + "subtotal": 171.0 + }, + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 147.29, + "subtotal": 294.58 + } + ], + "total_price": 465.58, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 11.18, + "expected_delivery": { + "$date": "2025-05-08T04:33:13.124Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.182Z" + } + }, + { + "order_id": "ed0b5bf2-241e-4a36-9fd5-86d5323542ad", + "customer": { + "customer_id": "c457fa71-0148-44a9-a54e-0f96249bd74d", + "name": "Rachel Jones", + "email": "gregorybarry@example.com", + "phone": "626.851.1529x3372", + "address": { + "street": "33458 Olivia Ports Suite 156", + "city": "Melissaburgh", + "state": "Utah", + "zip": "02557", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T06:05:43.039Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 1, + "unit_price": 151.53, + "subtotal": 151.53 + }, + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 2, + "unit_price": 158.28, + "subtotal": 316.56 + } + ], + "total_price": 468.09, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 19.91, + "expected_delivery": { + "$date": "2025-05-10T06:05:43.039Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.182Z" + } + }, + { + "order_id": "51f0c2c0-f49f-40c1-9154-e94435e45d41", + "customer": { + "customer_id": "0a66a353-51ad-482e-81bc-0c0d4f70d7dd", + "name": "Stephen Medina", + "email": "ugriffith@example.org", + "phone": "3842674482", + "address": { + "street": "027 Washington Lane", + "city": "South Stanley", + "state": "Florida", + "zip": "62683", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T18:40:44.098Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 75.5, + "subtotal": 151.0 + } + ], + "total_price": 151.0, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 16.7, + "expected_delivery": { + "$date": "2025-05-12T18:40:44.098Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.182Z" + } + }, + { + "order_id": "380052b0-c975-4d5c-95b1-33449477319f", + "customer": { + "customer_id": "07ad8aaf-00df-479e-be06-63405c9cd032", + "name": "Brandon Howard", + "email": "richard51@example.org", + "phone": "274.370.0573x439", + "address": { + "street": "4067 Lopez Hill", + "city": "Johnsonstad", + "state": "Iowa", + "zip": "75598", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T05:56:22.286Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 120.42, + "subtotal": 120.42 + }, + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 158.93, + "subtotal": 317.86 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 103.62, + "subtotal": 207.24 + } + ], + "total_price": 645.52, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 13.78, + "expected_delivery": { + "$date": "2025-05-08T05:56:22.286Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.182Z" + } + }, + { + "order_id": "aa15abd6-e65c-4759-ba8d-244224ebd317", + "customer": { + "customer_id": "72e26f49-59d3-46c7-9d23-c09689c5e665", + "name": "Jason Davidson", + "email": "hornshaun@example.org", + "phone": "+1-840-832-2163x30404", + "address": { + "street": "4410 Julie Coves Apt. 416", + "city": "Morristown", + "state": "Arizona", + "zip": "77540", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T05:40:19.175Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 62.5, + "subtotal": 62.5 + }, + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 77.32, + "subtotal": 77.32 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 141.97, + "subtotal": 283.94 + } + ], + "total_price": 423.76, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 16.82, + "expected_delivery": { + "$date": "2025-05-13T05:40:19.175Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.183Z" + } + }, + { + "order_id": "d13d645f-0fd9-4d72-add0-c50dcba51fdb", + "customer": { + "customer_id": "096871cb-c55f-4241-9f3b-11d73e675e7c", + "name": "Lisa Woods", + "email": "tpadilla@example.net", + "phone": "559.816.5535", + "address": { + "street": "28190 Robinson Drives Suite 750", + "city": "Lake Marc", + "state": "New Jersey", + "zip": "04550", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T15:26:39.181Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 76.32, + "subtotal": 152.64 + }, + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 85.05, + "subtotal": 170.1 + } + ], + "total_price": 322.74, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 15.83, + "expected_delivery": { + "$date": "2025-05-22T15:26:39.181Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.183Z" + } + }, + { + "order_id": "0137b5c3-8638-4d1b-92fe-62cb55ae0a08", + "customer": { + "customer_id": "c62f29ef-626d-4b02-a8db-c1a22516ab7c", + "name": "Melissa Powers", + "email": "nancyjohns@example.com", + "phone": "726-509-3944x944", + "address": { + "street": "698 Thomas Landing", + "city": "Port Mary", + "state": "Michigan", + "zip": "93974", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T00:14:57.741Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 150.95, + "subtotal": 150.95 + } + ], + "total_price": 150.95, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 5.95, + "expected_delivery": { + "$date": "2025-05-15T00:14:57.741Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.183Z" + } + }, + { + "order_id": "f8b4507f-3ea5-414e-8d42-08f427065e1d", + "customer": { + "customer_id": "eacf6afa-f0a0-442b-92f7-da9548844b19", + "name": "Margaret Archer", + "email": "zjones@example.net", + "phone": "+1-229-283-5641x68308", + "address": { + "street": "364 Lori Lakes Apt. 377", + "city": "New Elizabethbury", + "state": "Maryland", + "zip": "90537", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T09:02:05.893Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 135.07, + "subtotal": 135.07 + } + ], + "total_price": 135.07, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 8.9, + "expected_delivery": { + "$date": "2025-05-16T09:02:05.893Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.183Z" + } + }, + { + "order_id": "5d4376a6-4fb9-40c2-84a9-d39adb7581ed", + "customer": { + "customer_id": "1599e168-ea43-4ba5-9efe-1caac073920c", + "name": "Kristine Porter", + "email": "joshua48@example.com", + "phone": "504.897.8743", + "address": { + "street": "64574 Sharon Estates Apt. 189", + "city": "East Jonathan", + "state": "Utah", + "zip": "25368", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T20:39:51.917Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 137.75, + "subtotal": 137.75 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 106.04, + "subtotal": 212.08 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 116.81, + "subtotal": 116.81 + } + ], + "total_price": 466.64, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 12.43, + "expected_delivery": { + "$date": "2025-05-16T20:39:51.917Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.183Z" + } + }, + { + "order_id": "ffd88eaf-5fc3-4533-9e6d-49740d1dc262", + "customer": { + "customer_id": "123aa6ab-c24c-4bfe-87f7-111d17660e03", + "name": "Matthew Perry", + "email": "rmoody@example.com", + "phone": "319-398-2540x9067", + "address": { + "street": "457 Horton Circles Suite 028", + "city": "New Cherylside", + "state": "Minnesota", + "zip": "25114", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T20:05:35.397Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 84.29, + "subtotal": 168.58 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 97.54, + "subtotal": 195.08 + } + ], + "total_price": 363.66, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 17.49, + "expected_delivery": { + "$date": "2025-05-14T20:05:35.397Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.184Z" + } + }, + { + "order_id": "044d2fd4-d3c0-4405-aa13-ee6b7dbdb56e", + "customer": { + "customer_id": "7d20ebcc-f599-4360-8a23-3b484d33f14d", + "name": "David Johnson", + "email": "john83@example.com", + "phone": "(533)694-2154", + "address": { + "street": "08345 Peterson Turnpike", + "city": "Lake Scottton", + "state": "Alabama", + "zip": "33376", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T12:36:07.150Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 67.91, + "subtotal": 135.82 + }, + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 178.6, + "subtotal": 357.2 + } + ], + "total_price": 493.02, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 19.41, + "expected_delivery": { + "$date": "2025-05-12T12:36:07.150Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.184Z" + } + }, + { + "order_id": "2bcd5193-6d58-402a-9c0b-853a2f7584c9", + "customer": { + "customer_id": "09f5f9d0-3d4d-47ee-aaea-2f0a596f2e39", + "name": "Anthony Moore", + "email": "craig15@example.net", + "phone": "001-385-257-2785x806", + "address": { + "street": "3426 Thomas Spring", + "city": "Marcusbury", + "state": "Vermont", + "zip": "25419", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T01:18:44.252Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 161.86, + "subtotal": 323.72 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 107.57, + "subtotal": 215.14 + } + ], + "total_price": 538.86, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 5.89, + "expected_delivery": { + "$date": "2025-05-16T01:18:44.252Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.184Z" + } + }, + { + "order_id": "68de5223-0f9e-482c-9b61-5f561435b97d", + "customer": { + "customer_id": "dd0c5aa4-54e2-41ab-b3be-4ec288f3fabb", + "name": "Madison Griffin", + "email": "cbryant@example.com", + "phone": "6826785940", + "address": { + "street": "125 Jon Prairie", + "city": "Brandonmouth", + "state": "Indiana", + "zip": "34144", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T13:06:15.505Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 123.67, + "subtotal": 123.67 + } + ], + "total_price": 123.67, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 6.27, + "expected_delivery": { + "$date": "2025-05-14T13:06:15.505Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.184Z" + } + }, + { + "order_id": "1eb2c046-748a-4da2-8e0c-8d52896b1e84", + "customer": { + "customer_id": "1659684a-b494-440c-b4d7-ca41d44397a2", + "name": "Laurie James", + "email": "montoyasue@example.com", + "phone": "001-843-839-8494", + "address": { + "street": "667 James Falls", + "city": "Sarahmouth", + "state": "Maine", + "zip": "29927", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T07:48:25.156Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 115.83, + "subtotal": 115.83 + }, + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 68.8, + "subtotal": 68.8 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 100.32, + "subtotal": 100.32 + } + ], + "total_price": 284.95, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 18.99, + "expected_delivery": { + "$date": "2025-05-08T07:48:25.156Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.185Z" + } + }, + { + "order_id": "042c18dd-a7d8-4d89-90f3-95f559c394f4", + "customer": { + "customer_id": "18451d79-3005-468f-ad01-bbac1c0f599a", + "name": "Jay Marks", + "email": "ggomez@example.com", + "phone": "001-246-466-0878x23327", + "address": { + "street": "078 Hensley Hollow Suite 298", + "city": "Lake Erinborough", + "state": "Connecticut", + "zip": "73732", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T20:20:34.901Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 106.24, + "subtotal": 212.48 + }, + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 1, + "unit_price": 127.33, + "subtotal": 127.33 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 142.84, + "subtotal": 142.84 + } + ], + "total_price": 482.65, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 17.98, + "expected_delivery": { + "$date": "2025-05-12T20:20:34.901Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.185Z" + } + }, + { + "order_id": "edb30b35-0f40-4547-a202-2ac4a2372f60", + "customer": { + "customer_id": "4b42feb1-ef24-49c2-8a72-e3d0c2b354d7", + "name": "Samantha Tate", + "email": "ryanbenson@example.org", + "phone": "(919)757-0765", + "address": { + "street": "045 Dean Villages", + "city": "East Tylermouth", + "state": "Maryland", + "zip": "71908", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T08:11:32.345Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 133.12, + "subtotal": 266.24 + }, + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 1, + "unit_price": 154.81, + "subtotal": 154.81 + }, + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 94.34, + "subtotal": 188.68 + } + ], + "total_price": 609.73, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 15.37, + "expected_delivery": { + "$date": "2025-05-12T08:11:32.345Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.185Z" + } + }, + { + "order_id": "7ee5a838-5cf8-42f2-a51f-4d2b99bc4bed", + "customer": { + "customer_id": "13162ea1-4ec0-4be7-a3ae-391a37a96a45", + "name": "Michael Oneill", + "email": "hernandezmadeline@example.net", + "phone": "(264)447-4286x80435", + "address": { + "street": "20423 Johnson Lake Apt. 437", + "city": "West Josephmouth", + "state": "West Virginia", + "zip": "55944", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T20:39:27.917Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 1, + "unit_price": 119.67, + "subtotal": 119.67 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 109.6, + "subtotal": 219.2 + } + ], + "total_price": 338.87, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 12.42, + "expected_delivery": { + "$date": "2025-05-14T20:39:27.917Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.185Z" + } + }, + { + "order_id": "5b959a6c-2d7e-4cb0-927b-089a8b757693", + "customer": { + "customer_id": "39868061-2acb-486d-a0ad-8207757db770", + "name": "Kristi Brown", + "email": "ujohnson@example.com", + "phone": "(624)452-5871", + "address": { + "street": "409 Andrew Via", + "city": "West Emilyton", + "state": "New York", + "zip": "53487", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T22:43:55.540Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 1, + "unit_price": 103.62, + "subtotal": 103.62 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 69.35, + "subtotal": 138.7 + } + ], + "total_price": 242.32, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 13.06, + "expected_delivery": { + "$date": "2025-05-12T22:43:55.540Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.186Z" + } + }, + { + "order_id": "eacfeb3a-e6e4-451b-a840-b358f7dd45ca", + "customer": { + "customer_id": "bff5a203-b89a-4b94-879e-c354803ac7fe", + "name": "Abigail Novak", + "email": "cburnett@example.org", + "phone": "3795152207", + "address": { + "street": "3859 Dominique Mill Apt. 916", + "city": "Kingport", + "state": "Maryland", + "zip": "92007", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T11:23:34.069Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 69.11, + "subtotal": 138.22 + } + ], + "total_price": 138.22, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 17.69, + "expected_delivery": { + "$date": "2025-05-13T11:23:34.069Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.186Z" + } + }, + { + "order_id": "488b59c0-f0d7-41e9-8cce-7f4072997ed6", + "customer": { + "customer_id": "64de335f-152f-4a69-a356-5a359f781770", + "name": "David Schroeder", + "email": "amorris@example.org", + "phone": "815-876-4421x22776", + "address": { + "street": "9656 Stacy Path", + "city": "South Timothytown", + "state": "Idaho", + "zip": "48486", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T17:39:01.733Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 103.67, + "subtotal": 207.34 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 158.7, + "subtotal": 158.7 + } + ], + "total_price": 366.04, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 19.37, + "expected_delivery": { + "$date": "2025-05-15T17:39:01.733Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.186Z" + } + }, + { + "order_id": "de49f11a-53ea-4c38-ad6a-ca7a834b86a9", + "customer": { + "customer_id": "4dce2c98-f943-414c-a031-12feab0c4670", + "name": "Mike Odonnell", + "email": "wilsonmark@example.org", + "phone": "001-991-423-6553x584", + "address": { + "street": "911 Vargas Glen", + "city": "Port Nathanhaven", + "state": "Alaska", + "zip": "31818", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T16:07:22.007Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 106.98, + "subtotal": 106.98 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 159.76, + "subtotal": 159.76 + } + ], + "total_price": 266.74, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 16.48, + "expected_delivery": { + "$date": "2025-05-18T16:07:22.007Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.186Z" + } + }, + { + "order_id": "6b4d7ce1-412b-4354-808b-6e6b6e00d870", + "customer": { + "customer_id": "d33145c4-e0d2-40b4-9039-edaa02f232c9", + "name": "Casey Mathews", + "email": "mschmitt@example.org", + "phone": "001-361-529-3576", + "address": { + "street": "972 Lopez Corners Apt. 191", + "city": "Dustinbury", + "state": "North Dakota", + "zip": "96360", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T03:45:25.741Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 1, + "unit_price": 72.94, + "subtotal": 72.94 + }, + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 177.15, + "subtotal": 177.15 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 120.25, + "subtotal": 240.5 + } + ], + "total_price": 490.59, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 6.96, + "expected_delivery": { + "$date": "2025-05-08T03:45:25.741Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.187Z" + } + }, + { + "order_id": "b56a0348-b201-463b-90f4-c6670699f059", + "customer": { + "customer_id": "b9dd472b-2a42-491a-80bb-ef5d406de441", + "name": "Cindy Cole", + "email": "johnsonyvonne@example.net", + "phone": "+1-230-610-7803x04735", + "address": { + "street": "6516 Brian Manors Apt. 750", + "city": "Brewerfurt", + "state": "Wisconsin", + "zip": "64537", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T09:42:03.264Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 103.56, + "subtotal": 103.56 + } + ], + "total_price": 103.56, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 5.53, + "expected_delivery": { + "$date": "2025-05-15T09:42:03.264Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.187Z" + } + }, + { + "order_id": "3aca9340-2d96-4330-a3f9-5be8b6cb556b", + "customer": { + "customer_id": "3b544519-555c-4c9d-8554-ec724cf0109f", + "name": "Elaine Green", + "email": "ztran@example.net", + "phone": "(640)545-1697x198", + "address": { + "street": "9491 Clay Camp Suite 878", + "city": "South Kimberly", + "state": "Arizona", + "zip": "46603", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T23:45:47.126Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 65.77, + "subtotal": 65.77 + }, + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 71.83, + "subtotal": 143.66 + } + ], + "total_price": 209.43, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 16.76, + "expected_delivery": { + "$date": "2025-05-17T23:45:47.126Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.187Z" + } + }, + { + "order_id": "5e776f45-848d-4077-a701-f6f6e299747c", + "customer": { + "customer_id": "54377937-ed80-4287-b961-4737b893275f", + "name": "Kristin Garcia", + "email": "fperry@example.com", + "phone": "683.213.8953x963", + "address": { + "street": "930 Brian Wall", + "city": "Lake Heidihaven", + "state": "Colorado", + "zip": "37523", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T12:59:14.863Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 2, + "unit_price": 80.01, + "subtotal": 160.02 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 125.68, + "subtotal": 251.36 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 159.82, + "subtotal": 319.64 + } + ], + "total_price": 731.02, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 9.58, + "expected_delivery": { + "$date": "2025-05-15T12:59:14.863Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.187Z" + } + }, + { + "order_id": "d1fd81bb-5f54-4861-bc4d-672b99501053", + "customer": { + "customer_id": "eac2e093-5823-49c3-81aa-59a5bb7bb301", + "name": "Lisa Bradley", + "email": "michaelhall@example.com", + "phone": "222.321.1461", + "address": { + "street": "18957 Perry Motorway", + "city": "Lake Crystal", + "state": "New York", + "zip": "70869", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T18:57:08.947Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 133.3, + "subtotal": 266.6 + }, + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 60.42, + "subtotal": 60.42 + } + ], + "total_price": 327.02, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 8.69, + "expected_delivery": { + "$date": "2025-05-22T18:57:08.947Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.187Z" + } + }, + { + "order_id": "2764ef4b-01ec-4468-82c1-0da291562371", + "customer": { + "customer_id": "b73547da-bd64-4b92-bf08-142e6b785297", + "name": "James Smith", + "email": "nicole96@example.net", + "phone": "903.872.9085", + "address": { + "street": "72456 Jonathan Burg Suite 013", + "city": "Jenniferburgh", + "state": "Indiana", + "zip": "75667", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T23:32:57.401Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 72.11, + "subtotal": 144.22 + } + ], + "total_price": 144.22, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 8.56, + "expected_delivery": { + "$date": "2025-05-17T23:32:57.401Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.188Z" + } + }, + { + "order_id": "2e338cef-bc0a-4013-98c8-c44664438d2f", + "customer": { + "customer_id": "5cf583e0-bca9-47d0-ae10-81714cac537c", + "name": "Michaela Gregory", + "email": "amanda29@example.org", + "phone": "(543)511-5622x9578", + "address": { + "street": "508 Laurie Manor", + "city": "Hobbsberg", + "state": "New Mexico", + "zip": "01582", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T08:07:16.786Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 108.09, + "subtotal": 216.18 + }, + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 155.2, + "subtotal": 310.4 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 60.61, + "subtotal": 60.61 + } + ], + "total_price": 587.19, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 16.09, + "expected_delivery": { + "$date": "2025-05-14T08:07:16.786Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.188Z" + } + }, + { + "order_id": "5c6be6d4-b9e1-4505-8c58-e42f27c8bd3d", + "customer": { + "customer_id": "b8561d8f-6d4e-46a4-8614-b38233db7314", + "name": "Maria Garcia", + "email": "idouglas@example.net", + "phone": "001-594-416-0009x42354", + "address": { + "street": "415 Sean Rapids Apt. 327", + "city": "Mayside", + "state": "Utah", + "zip": "22946", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T08:47:09.253Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 74.92, + "subtotal": 149.84 + } + ], + "total_price": 149.84, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 15.23, + "expected_delivery": { + "$date": "2025-05-16T08:47:09.253Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.188Z" + } + }, + { + "order_id": "d75d1e89-7302-4372-8398-3189265e8beb", + "customer": { + "customer_id": "0f78025c-6a45-4a4e-8da7-94c2352c045a", + "name": "Daniel Ferguson", + "email": "carol53@example.org", + "phone": "+1-503-659-0177x30588", + "address": { + "street": "888 Reynolds Stream", + "city": "Walkerport", + "state": "Kansas", + "zip": "74637", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T12:50:18.529Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 1, + "unit_price": 159.13, + "subtotal": 159.13 + }, + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 157.64, + "subtotal": 315.28 + }, + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 1, + "unit_price": 124.97, + "subtotal": 124.97 + } + ], + "total_price": 599.38, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 16.31, + "expected_delivery": { + "$date": "2025-05-17T12:50:18.529Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.188Z" + } + }, + { + "order_id": "646388cc-b20b-4891-abd9-02af71c14853", + "customer": { + "customer_id": "390e10b0-8178-400d-ab24-ca1ec91ce041", + "name": "Angela Shaw", + "email": "cynthiayoung@example.net", + "phone": "+1-365-835-8260x483", + "address": { + "street": "49019 Gutierrez Causeway", + "city": "Emmachester", + "state": "Massachusetts", + "zip": "01919", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T08:50:29.756Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 1, + "unit_price": 178.49, + "subtotal": 178.49 + } + ], + "total_price": 178.49, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 13.21, + "expected_delivery": { + "$date": "2025-05-15T08:50:29.756Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.189Z" + } + }, + { + "order_id": "c990af75-b11a-4589-8e27-52784b4ea7db", + "customer": { + "customer_id": "483d71fb-0c9e-4f5c-89b4-f4300e93eed6", + "name": "Joseph Price", + "email": "andersonpatricia@example.org", + "phone": "8585433373", + "address": { + "street": "7185 Garcia Crest", + "city": "Ryanchester", + "state": "Oklahoma", + "zip": "16954", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-05T23:49:15.835Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 166.87, + "subtotal": 333.74 + } + ], + "total_price": 333.74, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 6.4, + "expected_delivery": { + "$date": "2025-05-11T23:49:15.835Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.189Z" + } + }, + { + "order_id": "a2551cf9-b9ac-4451-986c-65f95328829a", + "customer": { + "customer_id": "bf327d61-8135-45ed-93e0-c5bc9cba5a4d", + "name": "Michael Phillips", + "email": "ohall@example.net", + "phone": "(907)460-4790x993", + "address": { + "street": "2795 Morris Crescent", + "city": "Laurenport", + "state": "New Hampshire", + "zip": "98227", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T10:16:05.949Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 1, + "unit_price": 118.51, + "subtotal": 118.51 + } + ], + "total_price": 118.51, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 5.66, + "expected_delivery": { + "$date": "2025-05-14T10:16:05.949Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.189Z" + } + }, + { + "order_id": "3c914266-ebda-4853-a839-36361520c6e0", + "customer": { + "customer_id": "6c0aabe8-4fed-4517-bba9-e0e724d4f6c0", + "name": "Thomas Coleman", + "email": "medinajane@example.com", + "phone": "+1-586-788-7212", + "address": { + "street": "159 Renee Ramp Apt. 836", + "city": "South Lisaland", + "state": "Utah", + "zip": "41471", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T22:20:49.130Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 107.24, + "subtotal": 107.24 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 130.78, + "subtotal": 130.78 + } + ], + "total_price": 238.02, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 5.75, + "expected_delivery": { + "$date": "2025-05-16T22:20:49.130Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.190Z" + } + }, + { + "order_id": "b3b49f76-ca87-458e-945a-16ef1f7a2456", + "customer": { + "customer_id": "7f13de22-cb7c-4b70-85bb-359e1f54b034", + "name": "Jeffrey Shields", + "email": "kjenkins@example.com", + "phone": "001-412-713-7674x52251", + "address": { + "street": "4533 Allen Spring", + "city": "Sarahburgh", + "state": "South Carolina", + "zip": "71533", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T04:17:45.755Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 116.92, + "subtotal": 116.92 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 132.43, + "subtotal": 132.43 + } + ], + "total_price": 249.35, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 9.48, + "expected_delivery": { + "$date": "2025-05-17T04:17:45.755Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.190Z" + } + }, + { + "order_id": "024fc318-363d-4e8a-874b-ee6cba25e354", + "customer": { + "customer_id": "c3f15490-bb19-44dc-9274-2e9f62ed8712", + "name": "Mary Molina", + "email": "piercederek@example.com", + "phone": "266.888.5759x9886", + "address": { + "street": "0769 Kelly Wells Suite 667", + "city": "New Zacharymouth", + "state": "New Hampshire", + "zip": "83749", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T07:00:46.360Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 68.87, + "subtotal": 68.87 + }, + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 2, + "unit_price": 73.85, + "subtotal": 147.7 + } + ], + "total_price": 216.57, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 19.94, + "expected_delivery": { + "$date": "2025-05-08T07:00:46.360Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.190Z" + } + }, + { + "order_id": "a2050d73-3b52-4dd9-a1be-e37be7368057", + "customer": { + "customer_id": "088d1522-bd1d-4314-9556-2ed9c1adce19", + "name": "Benjamin Anderson", + "email": "charles63@example.org", + "phone": "(713)816-5447x7132", + "address": { + "street": "223 Margaret Pine Suite 318", + "city": "Schneiderview", + "state": "North Carolina", + "zip": "16587", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T09:54:25.966Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 64.81, + "subtotal": 129.62 + } + ], + "total_price": 129.62, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 11.99, + "expected_delivery": { + "$date": "2025-05-15T09:54:25.966Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.190Z" + } + }, + { + "order_id": "23304fd6-25b5-4304-a7f0-ac0815508b2c", + "customer": { + "customer_id": "e0b41e19-3171-4d25-bfde-1705900f4834", + "name": "Sydney Clarke", + "email": "taylorryan@example.org", + "phone": "001-478-983-2336", + "address": { + "street": "78102 Raven Terrace Suite 850", + "city": "Lake Priscilla", + "state": "Virginia", + "zip": "38242", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T09:44:02.295Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 1, + "unit_price": 96.61, + "subtotal": 96.61 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 142.21, + "subtotal": 142.21 + } + ], + "total_price": 238.82, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 16.71, + "expected_delivery": { + "$date": "2025-05-18T09:44:02.295Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.191Z" + } + }, + { + "order_id": "357ec089-bd69-4055-b203-c29266b65db4", + "customer": { + "customer_id": "642bfc23-2586-4fef-be29-33699ffba8bb", + "name": "Juan Brock", + "email": "hernandezdaniel@example.net", + "phone": "322.995.7118", + "address": { + "street": "697 Joshua Locks", + "city": "East Jameshaven", + "state": "North Carolina", + "zip": "98397", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T20:32:33.619Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 96.79, + "subtotal": 96.79 + }, + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 171.03, + "subtotal": 171.03 + } + ], + "total_price": 267.82, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 11.06, + "expected_delivery": { + "$date": "2025-05-20T20:32:33.619Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.191Z" + } + }, + { + "order_id": "0993628c-a97c-4de6-8eec-55b5f05e381c", + "customer": { + "customer_id": "75d81eb9-d831-463d-9b24-0a4a94edb682", + "name": "Billy Lee", + "email": "arthurcallahan@example.net", + "phone": "(888)434-1417", + "address": { + "street": "0047 Ashley Burg Apt. 836", + "city": "South Nicole", + "state": "Wisconsin", + "zip": "60446", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T00:42:11.741Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 166.94, + "subtotal": 333.88 + }, + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 2, + "unit_price": 74.65, + "subtotal": 149.3 + } + ], + "total_price": 483.18, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 6.14, + "expected_delivery": { + "$date": "2025-05-14T00:42:11.741Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.191Z" + } + }, + { + "order_id": "ae6ec02d-ef47-40ba-8d8e-9addbe63b824", + "customer": { + "customer_id": "ba0865c1-fbbe-46b3-bef0-ebeaa7fa49fc", + "name": "Spencer Powell", + "email": "michael74@example.org", + "phone": "971.372.7596", + "address": { + "street": "68264 John Tunnel Apt. 468", + "city": "Mckenziemouth", + "state": "New York", + "zip": "33643", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T05:52:02.714Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 115.38, + "subtotal": 230.76 + } + ], + "total_price": 230.76, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 7.84, + "expected_delivery": { + "$date": "2025-05-15T05:52:02.714Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.191Z" + } + }, + { + "order_id": "a35b6a9f-6f39-4af5-8b27-c05e09d69992", + "customer": { + "customer_id": "ca0a46b2-755a-494d-954a-e07a1ef45691", + "name": "Erin Ramirez", + "email": "collinswilliam@example.org", + "phone": "001-908-474-1217", + "address": { + "street": "7295 Mathew Spring Suite 969", + "city": "Ricardoville", + "state": "Ohio", + "zip": "42058", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T10:58:35.271Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 95.58, + "subtotal": 95.58 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 120.35, + "subtotal": 240.7 + } + ], + "total_price": 336.28, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 5.66, + "expected_delivery": { + "$date": "2025-05-18T10:58:35.271Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.191Z" + } + }, + { + "order_id": "e818195b-20f9-4091-a1f3-6aa4b245855d", + "customer": { + "customer_id": "fd0a4151-afee-4e21-9457-4267f7b85cc9", + "name": "Thomas Martinez", + "email": "charles58@example.com", + "phone": "(815)769-3291", + "address": { + "street": "669 Dixon Centers Suite 460", + "city": "Bryanside", + "state": "North Dakota", + "zip": "88199", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T12:32:29.228Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 141.24, + "subtotal": 282.48 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 86.61, + "subtotal": 173.22 + } + ], + "total_price": 455.7, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 19.75, + "expected_delivery": { + "$date": "2025-05-15T12:32:29.228Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.192Z" + } + }, + { + "order_id": "cd719336-e7a9-4538-862d-b319934e3547", + "customer": { + "customer_id": "bbcedab5-de6c-4544-8af0-f12f6ffd3c51", + "name": "Rebecca Thomas", + "email": "wcalderon@example.net", + "phone": "001-935-579-0859x9121", + "address": { + "street": "249 Susan Wall Suite 463", + "city": "New Brooke", + "state": "California", + "zip": "94726", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T22:30:33.577Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 2, + "unit_price": 61.59, + "subtotal": 123.18 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 158.56, + "subtotal": 158.56 + } + ], + "total_price": 281.74, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 11.08, + "expected_delivery": { + "$date": "2025-05-16T22:30:33.577Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.192Z" + } + }, + { + "order_id": "9881abd7-97a4-4605-aeea-c288340a7780", + "customer": { + "customer_id": "58fddb06-5caa-4a76-8815-95426b94d8a6", + "name": "Lori Tucker", + "email": "amberwilson@example.net", + "phone": "796.554.2221", + "address": { + "street": "5129 Michael Overpass", + "city": "East Shaneland", + "state": "Mississippi", + "zip": "59079", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T00:46:22.823Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 102.16, + "subtotal": 204.32 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 125.42, + "subtotal": 125.42 + } + ], + "total_price": 329.74, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 11.88, + "expected_delivery": { + "$date": "2025-05-10T00:46:22.823Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.192Z" + } + }, + { + "order_id": "f49ec97f-c99c-40e2-8b1f-650f4804f6b4", + "customer": { + "customer_id": "54ae0967-7fe6-4146-96b2-9fc208496631", + "name": "Tanya Wright", + "email": "cookrebecca@example.net", + "phone": "237.811.8658", + "address": { + "street": "2008 Perez Mountains", + "city": "New Nicole", + "state": "Texas", + "zip": "39456", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T03:35:25.525Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 108.47, + "subtotal": 216.94 + }, + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 69.44, + "subtotal": 69.44 + } + ], + "total_price": 286.38, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 18.22, + "expected_delivery": { + "$date": "2025-05-16T03:35:25.525Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.192Z" + } + }, + { + "order_id": "dd7fbf6e-adf2-4e97-871a-6928d10f5120", + "customer": { + "customer_id": "21aa3d6b-2f40-4246-a453-01f9944114a2", + "name": "Anthony Holmes", + "email": "rodgersmichael@example.net", + "phone": "+1-840-843-7074x1071", + "address": { + "street": "4444 Cantu Parks Apt. 555", + "city": "North Jesus", + "state": "West Virginia", + "zip": "37940", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T08:10:10.083Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 111.68, + "subtotal": 111.68 + } + ], + "total_price": 111.68, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 15.54, + "expected_delivery": { + "$date": "2025-05-11T08:10:10.083Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.193Z" + } + }, + { + "order_id": "90fbc304-fb8e-4d3c-a9d4-a710dba1c3bd", + "customer": { + "customer_id": "515f8640-ea1b-4cc6-b5cd-b4861c1d5c78", + "name": "Robert Dudley", + "email": "sancheznicholas@example.com", + "phone": "(891)279-3823x50372", + "address": { + "street": "61091 Daniel Valley Suite 042", + "city": "Nguyenfurt", + "state": "California", + "zip": "38086", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T23:55:45.778Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 137.49, + "subtotal": 137.49 + }, + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 2, + "unit_price": 77.84, + "subtotal": 155.68 + }, + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 105.87, + "subtotal": 105.87 + } + ], + "total_price": 399.04, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 11.81, + "expected_delivery": { + "$date": "2025-05-16T23:55:45.778Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.193Z" + } + }, + { + "order_id": "549b5314-e695-47da-b7e4-13cddfeb256c", + "customer": { + "customer_id": "d6a5d255-c390-481e-925c-25c0a68066d7", + "name": "Dr. Anthony Flores", + "email": "dustinguerra@example.net", + "phone": "642-531-8768x7172", + "address": { + "street": "4829 Jones Divide Apt. 252", + "city": "Wheelerchester", + "state": "Texas", + "zip": "27721", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T07:24:17.330Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 118.1, + "subtotal": 118.1 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 156.1, + "subtotal": 156.1 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 147.68, + "subtotal": 295.36 + } + ], + "total_price": 569.56, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 7.16, + "expected_delivery": { + "$date": "2025-05-14T07:24:17.330Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.193Z" + } + }, + { + "order_id": "2fa2ada8-5cc7-4a90-8ae3-4bcb2faecef6", + "customer": { + "customer_id": "004c9cf5-9e24-424a-b9e9-58f83cf1b492", + "name": "Stephen Andrade", + "email": "fergusonsarah@example.net", + "phone": "(256)596-7333x466", + "address": { + "street": "83407 Sarah Springs", + "city": "Duffyton", + "state": "New York", + "zip": "00590", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T23:31:05.169Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 177.44, + "subtotal": 354.88 + } + ], + "total_price": 354.88, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 17.74, + "expected_delivery": { + "$date": "2025-05-10T23:31:05.169Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.193Z" + } + }, + { + "order_id": "be2112b0-39ee-4c43-a89a-bcff9734705d", + "customer": { + "customer_id": "f8671bd6-f5cf-48b3-bf3c-c7d6cc4e0411", + "name": "Joshua Sullivan", + "email": "clintongriffin@example.com", + "phone": "+1-509-740-0388x055", + "address": { + "street": "925 Lori Bypass Suite 040", + "city": "North Christopher", + "state": "Colorado", + "zip": "36146", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T17:13:20.948Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 2, + "unit_price": 136.85, + "subtotal": 273.7 + } + ], + "total_price": 273.7, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 12.11, + "expected_delivery": { + "$date": "2025-05-14T17:13:20.948Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.194Z" + } + }, + { + "order_id": "8656126c-b1d8-4f42-a4fd-25b412bc105a", + "customer": { + "customer_id": "53ee9cae-1192-4a3e-8056-5d2b6673f7ce", + "name": "Renee Barrett", + "email": "nguyendenise@example.net", + "phone": "+1-483-322-9361x754", + "address": { + "street": "2069 Hicks Field Apt. 285", + "city": "North Kennethshire", + "state": "Texas", + "zip": "76526", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T18:37:38.415Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 2, + "unit_price": 130.85, + "subtotal": 261.7 + }, + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 64.87, + "subtotal": 64.87 + } + ], + "total_price": 326.57, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 11.88, + "expected_delivery": { + "$date": "2025-05-20T18:37:38.415Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.194Z" + } + }, + { + "order_id": "699be6cf-5b7f-4779-ac94-f71b5ff0a00d", + "customer": { + "customer_id": "3e956f84-db67-4069-a09b-5c5b0d76c61c", + "name": "Shannon Bryant", + "email": "vanessa59@example.com", + "phone": "537-326-2464", + "address": { + "street": "2907 Levine Circles", + "city": "South Debbieside", + "state": "Arkansas", + "zip": "04097", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T03:34:46.210Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 75.83, + "subtotal": 151.66 + } + ], + "total_price": 151.66, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 5.12, + "expected_delivery": { + "$date": "2025-05-16T03:34:46.210Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.194Z" + } + }, + { + "order_id": "47029912-4374-4f3a-af6c-9e6ffc756bb6", + "customer": { + "customer_id": "f2687df0-f849-46ce-8ac2-ff4d54216bd5", + "name": "Deborah Cameron", + "email": "craig29@example.net", + "phone": "001-356-606-5035", + "address": { + "street": "731 Hughes Motorway Apt. 891", + "city": "Perkinstown", + "state": "North Dakota", + "zip": "32881", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T18:24:59.534Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 67.72, + "subtotal": 135.44 + }, + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 91.05, + "subtotal": 91.05 + }, + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 78.21, + "subtotal": 78.21 + } + ], + "total_price": 304.7, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 15.71, + "expected_delivery": { + "$date": "2025-05-17T18:24:59.534Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.194Z" + } + }, + { + "order_id": "bfc2efbb-d557-4fca-bfb2-4517b5442bd0", + "customer": { + "customer_id": "f5289d45-889c-4082-a972-d7aa4a99b115", + "name": "Steven Griffin", + "email": "hurleyalexis@example.org", + "phone": "600-528-9446x50274", + "address": { + "street": "0131 Melanie Unions", + "city": "New Catherineville", + "state": "Tennessee", + "zip": "18404", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T07:08:54.732Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 68.43, + "subtotal": 68.43 + } + ], + "total_price": 68.43, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 14.07, + "expected_delivery": { + "$date": "2025-05-14T07:08:54.732Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.194Z" + } + }, + { + "order_id": "1a7ed11e-72cd-4a5d-af8f-269debfbfefe", + "customer": { + "customer_id": "c5439663-10e2-40fa-a936-fc18eeaa1955", + "name": "Taylor Gibson", + "email": "gabriel30@example.net", + "phone": "001-346-893-4863x4350", + "address": { + "street": "9920 Mark Streets Suite 446", + "city": "Davidchester", + "state": "Ohio", + "zip": "69574", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T15:38:55.406Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 104.79, + "subtotal": 104.79 + }, + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 173.8, + "subtotal": 173.8 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 142.55, + "subtotal": 285.1 + } + ], + "total_price": 563.69, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 17.45, + "expected_delivery": { + "$date": "2025-05-14T15:38:55.406Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.195Z" + } + }, + { + "order_id": "4fd643a4-7e0b-4d23-bfa7-2dba7a8302d9", + "customer": { + "customer_id": "9f4fb872-69b2-43f7-9987-57129ecca213", + "name": "Robin Roberson", + "email": "cfloyd@example.net", + "phone": "542.804.3235x90269", + "address": { + "street": "651 Cook Club", + "city": "South Matthew", + "state": "New Mexico", + "zip": "15216", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T12:43:28.579Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 166.47, + "subtotal": 166.47 + }, + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 1, + "unit_price": 106.45, + "subtotal": 106.45 + }, + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 133.94, + "subtotal": 267.88 + } + ], + "total_price": 540.8, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 14.19, + "expected_delivery": { + "$date": "2025-05-11T12:43:28.579Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.195Z" + } + }, + { + "order_id": "f4fd6600-1027-4fd8-8090-64708c9cae0c", + "customer": { + "customer_id": "c2cfed92-4c5b-4781-9112-0a8d24691410", + "name": "Kelly Pratt", + "email": "gina50@example.org", + "phone": "298-697-5603x203", + "address": { + "street": "7032 Snyder Pines Suite 358", + "city": "East Dawn", + "state": "Oklahoma", + "zip": "29650", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T01:12:05.462Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 130.6, + "subtotal": 261.2 + }, + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 147.4, + "subtotal": 294.8 + }, + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 112.11, + "subtotal": 112.11 + } + ], + "total_price": 668.11, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 17.31, + "expected_delivery": { + "$date": "2025-05-16T01:12:05.462Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.195Z" + } + }, + { + "order_id": "13890331-2102-43d6-80f5-8414c9b6ec17", + "customer": { + "customer_id": "c2a3c3d4-6665-490f-bbdf-4083beb1f4d2", + "name": "Ruth Hill", + "email": "maria54@example.org", + "phone": "(853)858-2160", + "address": { + "street": "39811 Gallagher Pass Suite 750", + "city": "Williamschester", + "state": "New Hampshire", + "zip": "30032", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T10:16:05.186Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 162.71, + "subtotal": 162.71 + }, + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 148.52, + "subtotal": 297.04 + }, + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 105.61, + "subtotal": 211.22 + } + ], + "total_price": 670.97, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 12.49, + "expected_delivery": { + "$date": "2025-05-17T10:16:05.186Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.195Z" + } + }, + { + "order_id": "92522f61-70a9-4a1a-a62f-f6d7ff4488ba", + "customer": { + "customer_id": "4a32e8bd-79b9-4038-9b5b-48701b5f7deb", + "name": "Suzanne Gilmore", + "email": "andersonzachary@example.net", + "phone": "858-825-9652", + "address": { + "street": "8638 Edwards Mission Suite 132", + "city": "New Gregorystad", + "state": "Louisiana", + "zip": "98217", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T10:25:12.278Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 140.29, + "subtotal": 280.58 + }, + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 1, + "unit_price": 141.91, + "subtotal": 141.91 + } + ], + "total_price": 422.49, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 11.74, + "expected_delivery": { + "$date": "2025-05-14T10:25:12.278Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.196Z" + } + }, + { + "order_id": "eaf25dd9-a7f3-4baa-9354-3bd64cf100b2", + "customer": { + "customer_id": "286cfd84-f4ed-4ba1-8711-fdde253875d5", + "name": "David Munoz", + "email": "amyrobinson@example.net", + "phone": "001-918-622-2136x027", + "address": { + "street": "0137 Jones Expressway", + "city": "East Brian", + "state": "Indiana", + "zip": "61589", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T09:52:01.603Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 112.3, + "subtotal": 224.6 + }, + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 81.93, + "subtotal": 163.86 + }, + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 2, + "unit_price": 119.39, + "subtotal": 238.78 + } + ], + "total_price": 627.24, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 13.63, + "expected_delivery": { + "$date": "2025-05-20T09:52:01.603Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.196Z" + } + }, + { + "order_id": "4d678700-956c-411c-8432-a362cb446336", + "customer": { + "customer_id": "fa57166b-7ab5-4b67-83bb-3c2fba7edf4b", + "name": "Marc Melton", + "email": "owenslorraine@example.org", + "phone": "794-480-6725x2618", + "address": { + "street": "91109 Rogers Expressway", + "city": "Robinsonton", + "state": "Pennsylvania", + "zip": "89595", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T18:25:31.952Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 125.46, + "subtotal": 250.92 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 72.99, + "subtotal": 72.99 + } + ], + "total_price": 323.91, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 15.05, + "expected_delivery": { + "$date": "2025-05-19T18:25:31.952Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.196Z" + } + }, + { + "order_id": "c2ab50e8-e596-4c78-937a-25b3bf71855e", + "customer": { + "customer_id": "ff5673d3-af3d-4d4a-86e0-d91582ea4bf5", + "name": "Scott Zhang", + "email": "crystalmurray@example.net", + "phone": "001-439-945-8896", + "address": { + "street": "931 Miller Parks Apt. 500", + "city": "West William", + "state": "Oklahoma", + "zip": "54851", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T21:20:15.912Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 152.83, + "subtotal": 305.66 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 142.35, + "subtotal": 284.7 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 80.32, + "subtotal": 80.32 + } + ], + "total_price": 670.68, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 15.41, + "expected_delivery": { + "$date": "2025-05-19T21:20:15.912Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.196Z" + } + }, + { + "order_id": "4fe77724-c12f-4ea6-b15e-ab68b370c492", + "customer": { + "customer_id": "f4489c3d-bc7e-47ce-a5eb-2598caf3e524", + "name": "Wendy Barton", + "email": "kevinmanning@example.net", + "phone": "+1-645-648-1050x80362", + "address": { + "street": "5396 Henderson Pike Suite 400", + "city": "Pittsborough", + "state": "Rhode Island", + "zip": "75126", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T04:44:42.006Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 107.44, + "subtotal": 107.44 + }, + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 120.88, + "subtotal": 241.76 + }, + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 68.67, + "subtotal": 68.67 + } + ], + "total_price": 417.87, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 7.76, + "expected_delivery": { + "$date": "2025-05-11T04:44:42.006Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.197Z" + } + }, + { + "order_id": "123b68ee-9031-4aff-80fa-9cd951472f7a", + "customer": { + "customer_id": "00edfb2f-7bcb-4359-a312-450e3a8520a9", + "name": "Brandon Lopez", + "email": "jennifergray@example.com", + "phone": "316.433.5301x854", + "address": { + "street": "483 Robert Shore", + "city": "Longport", + "state": "Idaho", + "zip": "44112", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T14:18:29.941Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 130.65, + "subtotal": 261.3 + }, + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 1, + "unit_price": 137.21, + "subtotal": 137.21 + } + ], + "total_price": 398.51, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 9.95, + "expected_delivery": { + "$date": "2025-05-08T14:18:29.941Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.197Z" + } + }, + { + "order_id": "c549c2ff-a06b-4c0e-b71f-e8996c2ba61a", + "customer": { + "customer_id": "9b859b27-db2c-4274-b04a-b31355547f81", + "name": "Donald Lee", + "email": "wbeck@example.net", + "phone": "(856)912-7486x570", + "address": { + "street": "0049 Keith Throughway", + "city": "Evansbury", + "state": "Idaho", + "zip": "28818", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T04:51:10.446Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 119.81, + "subtotal": 239.62 + }, + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 171.47, + "subtotal": 171.47 + } + ], + "total_price": 411.09, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 7.28, + "expected_delivery": { + "$date": "2025-05-22T04:51:10.446Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.197Z" + } + }, + { + "order_id": "28db2351-4810-4624-9857-729d28e1471c", + "customer": { + "customer_id": "a97e845c-820d-4aa5-aaee-a9586fb68dd7", + "name": "Cristina Baker", + "email": "newmanbrandon@example.org", + "phone": "859.321.0057x7547", + "address": { + "street": "06143 Kathleen Neck", + "city": "Port Amy", + "state": "Delaware", + "zip": "04437", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T15:13:58.649Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 2, + "unit_price": 139.22, + "subtotal": 278.44 + } + ], + "total_price": 278.44, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 11.46, + "expected_delivery": { + "$date": "2025-05-14T15:13:58.649Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.197Z" + } + }, + { + "order_id": "20f165b7-feef-4ec8-b22b-d11743fed21f", + "customer": { + "customer_id": "0cfe285d-bb78-4bbf-90b5-0f40f94262ab", + "name": "John Johnson", + "email": "wgarcia@example.net", + "phone": "+1-491-484-2737x5024", + "address": { + "street": "141 Lawson Green", + "city": "East Jamesside", + "state": "Kansas", + "zip": "72374", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T21:16:09.493Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 78.26, + "subtotal": 78.26 + } + ], + "total_price": 78.26, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 11.87, + "expected_delivery": { + "$date": "2025-05-17T21:16:09.493Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.197Z" + } + }, + { + "order_id": "54c2e129-c41e-4d49-a87e-d4eb2e0b2f0f", + "customer": { + "customer_id": "731ac8ba-32fc-4b18-923d-68143cd985b9", + "name": "Nathan Nguyen", + "email": "jodywalker@example.net", + "phone": "764-859-3495", + "address": { + "street": "145 Michael Plaza Apt. 635", + "city": "Alexiston", + "state": "Hawaii", + "zip": "22750", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T09:57:24.761Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 2, + "unit_price": 91.18, + "subtotal": 182.36 + }, + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 116.8, + "subtotal": 116.8 + } + ], + "total_price": 299.16, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 10.09, + "expected_delivery": { + "$date": "2025-05-19T09:57:24.761Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.198Z" + } + }, + { + "order_id": "a821555f-ea7a-4cba-81f0-d9ae47e79378", + "customer": { + "customer_id": "6a7f8499-7424-4f09-a277-77247d6a643e", + "name": "Cassidy Smith", + "email": "james79@example.com", + "phone": "208.761.0183", + "address": { + "street": "86357 Anthony Avenue Apt. 486", + "city": "Joshuaburgh", + "state": "Alabama", + "zip": "10737", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T20:58:38.692Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 173.78, + "subtotal": 347.56 + } + ], + "total_price": 347.56, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 19.18, + "expected_delivery": { + "$date": "2025-05-16T20:58:38.692Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.198Z" + } + }, + { + "order_id": "f907a6c3-6d5e-42aa-9b26-705e46a2dfd2", + "customer": { + "customer_id": "5b5691a6-0abb-4d40-a11a-51523e41a699", + "name": "Jennifer Young", + "email": "kathy31@example.com", + "phone": "(544)302-5716x1536", + "address": { + "street": "90743 Weiss Brooks Suite 258", + "city": "Cooperberg", + "state": "Texas", + "zip": "19844", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T13:56:57.322Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 98.97, + "subtotal": 197.94 + }, + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 2, + "unit_price": 146.44, + "subtotal": 292.88 + }, + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 133.03, + "subtotal": 266.06 + } + ], + "total_price": 756.88, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 8.29, + "expected_delivery": { + "$date": "2025-05-18T13:56:57.322Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.198Z" + } + }, + { + "order_id": "3c208d85-678d-4e73-b4e1-2e6f5e282d07", + "customer": { + "customer_id": "216ed2d3-9975-4c4f-9557-e3d54b21435f", + "name": "Pamela Moore", + "email": "tinawilliams@example.com", + "phone": "269-337-8266x5657", + "address": { + "street": "2318 Rebecca Meadows Apt. 046", + "city": "Mannmouth", + "state": "Kansas", + "zip": "68944", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T16:35:44.076Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 70.01, + "subtotal": 140.02 + }, + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 62.36, + "subtotal": 124.72 + }, + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 1, + "unit_price": 159.44, + "subtotal": 159.44 + } + ], + "total_price": 424.18, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 8.37, + "expected_delivery": { + "$date": "2025-05-13T16:35:44.076Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.198Z" + } + }, + { + "order_id": "c82815e8-e6ee-4d0a-9b82-13f4ddb09ae2", + "customer": { + "customer_id": "b1300f2b-7022-4216-bb35-9bf666824f74", + "name": "Nicole Rivera", + "email": "meganmiller@example.org", + "phone": "001-302-263-4113x2885", + "address": { + "street": "9018 Jenny Landing Apt. 048", + "city": "West Andreamouth", + "state": "Delaware", + "zip": "58131", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T09:35:42.571Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 125.44, + "subtotal": 250.88 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 172.47, + "subtotal": 344.94 + }, + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 2, + "unit_price": 127.66, + "subtotal": 255.32 + } + ], + "total_price": 851.14, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 14.06, + "expected_delivery": { + "$date": "2025-05-08T09:35:42.571Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.199Z" + } + }, + { + "order_id": "40eeb65a-c5f8-4a23-897b-cfdb46740048", + "customer": { + "customer_id": "d0b15c47-25c3-4a98-97a9-fad9e1d03f6a", + "name": "William Benson", + "email": "baileyeric@example.net", + "phone": "(461)468-7917", + "address": { + "street": "2211 Jason Path Suite 257", + "city": "East Joshuashire", + "state": "Georgia", + "zip": "74004", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T01:03:04.146Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 161.13, + "subtotal": 161.13 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 70.86, + "subtotal": 70.86 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 119.01, + "subtotal": 119.01 + } + ], + "total_price": 351.0, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 17.56, + "expected_delivery": { + "$date": "2025-05-17T01:03:04.146Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.199Z" + } + }, + { + "order_id": "9493d08c-ad59-4de3-a00d-6e791d943e89", + "customer": { + "customer_id": "7c6de273-05de-4e96-89d6-0bbd1b691fe8", + "name": "Karen Kim", + "email": "brooke62@example.net", + "phone": "(673)756-0604", + "address": { + "street": "688 Cordova Trail Apt. 711", + "city": "West Michael", + "state": "Washington", + "zip": "48369", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T03:40:10.710Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 1, + "unit_price": 125.76, + "subtotal": 125.76 + } + ], + "total_price": 125.76, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 8.3, + "expected_delivery": { + "$date": "2025-05-16T03:40:10.710Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.199Z" + } + }, + { + "order_id": "30ddeff1-dc34-484d-bc5a-fbfd342a2875", + "customer": { + "customer_id": "5f423d00-b7e5-484f-b9d5-175217b102d9", + "name": "Robert Lee", + "email": "scott79@example.org", + "phone": "2409998755", + "address": { + "street": "27056 Vargas Streets Suite 059", + "city": "Coxmouth", + "state": "Kentucky", + "zip": "32245", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T08:35:30.525Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 123.18, + "subtotal": 123.18 + }, + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 93.52, + "subtotal": 187.04 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 112.4, + "subtotal": 112.4 + } + ], + "total_price": 422.62, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 18.39, + "expected_delivery": { + "$date": "2025-05-15T08:35:30.525Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.199Z" + } + }, + { + "order_id": "5e2dc013-454f-4a59-bbe9-1f19e0257eee", + "customer": { + "customer_id": "6bc2552c-d96a-4a49-a5e1-559e6d6829d0", + "name": "Melissa Webster", + "email": "moorejeff@example.com", + "phone": "(271)795-1817x5004", + "address": { + "street": "673 Alexis Glens", + "city": "Lake Scott", + "state": "Hawaii", + "zip": "85178", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T21:59:59.612Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 131.67, + "subtotal": 131.67 + } + ], + "total_price": 131.67, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 17.74, + "expected_delivery": { + "$date": "2025-05-15T21:59:59.612Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.200Z" + } + }, + { + "order_id": "a51414e7-ce83-4392-a7be-3cce95d7c02c", + "customer": { + "customer_id": "74286de7-4384-4d6e-ae2a-e92ac6342f0a", + "name": "Craig Rodriguez", + "email": "zbrown@example.org", + "phone": "001-749-454-5782x10723", + "address": { + "street": "370 David Circles Apt. 629", + "city": "West Samantha", + "state": "South Dakota", + "zip": "08987", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T20:55:49.561Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 97.51, + "subtotal": 195.02 + } + ], + "total_price": 195.02, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 19.26, + "expected_delivery": { + "$date": "2025-05-20T20:55:49.561Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.200Z" + } + }, + { + "order_id": "5cc265e5-b557-4f81-ac26-4262e0c0048e", + "customer": { + "customer_id": "a13d6c66-80c3-49d5-8592-729e6d81e60c", + "name": "David Robertson", + "email": "joycampbell@example.org", + "phone": "(661)256-8133", + "address": { + "street": "94175 April Groves", + "city": "Shawnmouth", + "state": "Wyoming", + "zip": "64902", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T00:55:20.587Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 133.56, + "subtotal": 133.56 + } + ], + "total_price": 133.56, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 10.07, + "expected_delivery": { + "$date": "2025-05-14T00:55:20.587Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.200Z" + } + }, + { + "order_id": "4fa719dd-bf14-4ea8-a6d1-fef32eb7d18b", + "customer": { + "customer_id": "a9c65591-9602-40b6-b7ec-f28dd803e2b1", + "name": "Tyrone Moore", + "email": "thompsonmiranda@example.com", + "phone": "7967144563", + "address": { + "street": "4145 Chen Fords Suite 013", + "city": "Lake Davidport", + "state": "New Hampshire", + "zip": "60431", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T14:39:21.996Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 155.26, + "subtotal": 310.52 + }, + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 167.24, + "subtotal": 334.48 + }, + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 102.38, + "subtotal": 102.38 + } + ], + "total_price": 747.38, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 11.48, + "expected_delivery": { + "$date": "2025-05-12T14:39:21.996Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.200Z" + } + }, + { + "order_id": "39bed711-2205-42e1-8b88-1e32dc71ae19", + "customer": { + "customer_id": "657a6764-b457-40ae-9e8e-af4df8d804b3", + "name": "Nicole Morris", + "email": "dsanders@example.net", + "phone": "001-460-851-5484x002", + "address": { + "street": "3664 Rodriguez Avenue", + "city": "Reynoldsland", + "state": "Connecticut", + "zip": "38641", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T00:27:04.554Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 64.84, + "subtotal": 64.84 + } + ], + "total_price": 64.84, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 9.26, + "expected_delivery": { + "$date": "2025-05-18T00:27:04.554Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.200Z" + } + }, + { + "order_id": "d5286a47-91d4-467c-82a0-37e31168a292", + "customer": { + "customer_id": "fb4e2b66-ebc2-430c-9ccc-ae3e5baaaa78", + "name": "Shelly Rogers", + "email": "leonarddale@example.net", + "phone": "001-857-451-8031x062", + "address": { + "street": "9094 Mullins Pike", + "city": "Perezmouth", + "state": "Pennsylvania", + "zip": "94136", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T05:46:04.587Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 78.48, + "subtotal": 156.96 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 80.97, + "subtotal": 161.94 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 161.24, + "subtotal": 322.48 + } + ], + "total_price": 641.38, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 5.07, + "expected_delivery": { + "$date": "2025-05-11T05:46:04.587Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.201Z" + } + }, + { + "order_id": "4b2b526c-b446-4073-8388-b8ab48913683", + "customer": { + "customer_id": "eb362e7c-106b-4a5f-8355-7f16e533b8d6", + "name": "Kendra Carson", + "email": "teresacarroll@example.org", + "phone": "5319866885", + "address": { + "street": "012 Marsh Lights", + "city": "Hernandezland", + "state": "Arkansas", + "zip": "82954", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T17:06:32.030Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 61.41, + "subtotal": 122.82 + } + ], + "total_price": 122.82, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 15.38, + "expected_delivery": { + "$date": "2025-05-17T17:06:32.030Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.201Z" + } + }, + { + "order_id": "e989d160-2081-48d9-94b7-872e62ad61ee", + "customer": { + "customer_id": "aeeac1af-585a-49d6-b949-18bd7b8ccfb2", + "name": "Mrs. Heather Douglas", + "email": "iwilliams@example.net", + "phone": "6562175853", + "address": { + "street": "506 Laura Stravenue", + "city": "North Yvonne", + "state": "North Dakota", + "zip": "32682", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T20:37:09.454Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 61.56, + "subtotal": 123.12 + }, + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 150.07, + "subtotal": 300.14 + } + ], + "total_price": 423.26, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 17.85, + "expected_delivery": { + "$date": "2025-05-22T20:37:09.454Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.201Z" + } + }, + { + "order_id": "39d72dcd-5e17-4cd9-97e9-3add53e09c23", + "customer": { + "customer_id": "3d7ebd66-c060-4326-9f19-8be8acb02af3", + "name": "Mark Allen", + "email": "brianajohnson@example.org", + "phone": "9595942762", + "address": { + "street": "18903 Thompson Stream", + "city": "Kellerburgh", + "state": "Virginia", + "zip": "71146", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T11:20:32.998Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 132.8, + "subtotal": 265.6 + }, + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 166.37, + "subtotal": 332.74 + } + ], + "total_price": 598.34, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 18.44, + "expected_delivery": { + "$date": "2025-05-11T11:20:32.998Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.201Z" + } + }, + { + "order_id": "ab1e0b6b-164f-4bf5-adb0-66dd66057e94", + "customer": { + "customer_id": "373e1e1d-2dc5-4c6f-a194-4ac51b3080d2", + "name": "Christine Flores", + "email": "spearsheather@example.com", + "phone": "4858806673", + "address": { + "street": "95690 Johnson Mountain Apt. 426", + "city": "North Anthony", + "state": "Missouri", + "zip": "34915", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T02:13:23.189Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 110.93, + "subtotal": 221.86 + }, + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 67.34, + "subtotal": 67.34 + }, + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 1, + "unit_price": 84.72, + "subtotal": 84.72 + } + ], + "total_price": 373.92, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 11.79, + "expected_delivery": { + "$date": "2025-05-12T02:13:23.189Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.202Z" + } + }, + { + "order_id": "d4d311d4-04c5-4855-ad9f-157ae63a5dcf", + "customer": { + "customer_id": "f18e5a94-7be1-4344-b84d-fe199c5d87eb", + "name": "Robert Pruitt", + "email": "alvarezerin@example.org", + "phone": "(724)780-5398x87095", + "address": { + "street": "04435 Daryl Wells", + "city": "Holdenburgh", + "state": "West Virginia", + "zip": "39231", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T14:12:59.001Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 68.93, + "subtotal": 68.93 + }, + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 65.97, + "subtotal": 65.97 + }, + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 92.37, + "subtotal": 184.74 + } + ], + "total_price": 319.64, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 9.04, + "expected_delivery": { + "$date": "2025-05-16T14:12:59.001Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.202Z" + } + }, + { + "order_id": "6c4cda91-a741-41e2-b1d0-a6bae70db8af", + "customer": { + "customer_id": "a4503a43-3721-477e-b729-31026073fbfb", + "name": "Christina Moody", + "email": "christopherjuarez@example.net", + "phone": "804.674.4514", + "address": { + "street": "855 Matthew Land", + "city": "West Meganborough", + "state": "Oklahoma", + "zip": "61593", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T17:47:55.981Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 150.33, + "subtotal": 300.66 + }, + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 1, + "unit_price": 82.58, + "subtotal": 82.58 + }, + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 1, + "unit_price": 137.05, + "subtotal": 137.05 + } + ], + "total_price": 520.29, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 13.89, + "expected_delivery": { + "$date": "2025-05-14T17:47:55.981Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.202Z" + } + }, + { + "order_id": "20eb4fe8-3f75-4c8f-bdba-88a5dc3f584c", + "customer": { + "customer_id": "260e0259-69e7-4409-8983-5423fc879c2a", + "name": "Kristen Williams", + "email": "robertmiller@example.com", + "phone": "559-553-1062x39620", + "address": { + "street": "5248 Davies Lakes Apt. 611", + "city": "Pattersonville", + "state": "Utah", + "zip": "44462", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T01:44:25.238Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 93.9, + "subtotal": 187.8 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 1, + "unit_price": 147.09, + "subtotal": 147.09 + } + ], + "total_price": 334.89, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 11.76, + "expected_delivery": { + "$date": "2025-05-17T01:44:25.238Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.202Z" + } + }, + { + "order_id": "47cca225-8d66-4208-aab1-cba7c647e80f", + "customer": { + "customer_id": "0ae806d7-b3c3-49b8-9ad6-7221bfa37555", + "name": "Kenneth French", + "email": "donald63@example.net", + "phone": "423.844.9564", + "address": { + "street": "154 Mack Plains Apt. 145", + "city": "East Lance", + "state": "South Carolina", + "zip": "45662", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T00:10:10.578Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 65.9, + "subtotal": 131.8 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 78.96, + "subtotal": 157.92 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 144.35, + "subtotal": 288.7 + } + ], + "total_price": 578.42, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 11.81, + "expected_delivery": { + "$date": "2025-05-14T00:10:10.578Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.203Z" + } + }, + { + "order_id": "55579785-d372-4289-8741-27ffc97d4b1d", + "customer": { + "customer_id": "ad67860f-587e-4fed-9e9b-80b41dc37665", + "name": "Teresa Dean", + "email": "valerie50@example.com", + "phone": "001-860-271-4956", + "address": { + "street": "611 Jeremy Landing", + "city": "Port Carolside", + "state": "Minnesota", + "zip": "46934", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T02:33:04.641Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 150.4, + "subtotal": 300.8 + }, + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 112.23, + "subtotal": 224.46 + } + ], + "total_price": 525.26, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 11.27, + "expected_delivery": { + "$date": "2025-05-17T02:33:04.641Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.203Z" + } + }, + { + "order_id": "65f57c1b-100d-4f7c-8d50-3d7ef28b9a1b", + "customer": { + "customer_id": "e609ad73-256c-4ace-a9cb-73b5582c2c37", + "name": "Matthew Juarez", + "email": "kevinshaw@example.net", + "phone": "361.602.5331x485", + "address": { + "street": "5206 Richard Lake", + "city": "Port Tylerborough", + "state": "Kentucky", + "zip": "39971", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T19:43:05.204Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 129.61, + "subtotal": 129.61 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 106.55, + "subtotal": 106.55 + }, + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 1, + "unit_price": 75.34, + "subtotal": 75.34 + } + ], + "total_price": 311.5, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 6.87, + "expected_delivery": { + "$date": "2025-05-16T19:43:05.204Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.203Z" + } + }, + { + "order_id": "4a969ce1-d14d-44fd-9adf-5daac0aac109", + "customer": { + "customer_id": "e9294e73-98d5-419f-a832-748a45c138a8", + "name": "Michelle Rich", + "email": "zhernandez@example.net", + "phone": "001-216-503-2108x89577", + "address": { + "street": "81706 Jackson Centers", + "city": "Jennifershire", + "state": "Massachusetts", + "zip": "96023", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T05:06:38.127Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 111.96, + "subtotal": 111.96 + }, + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 132.07, + "subtotal": 132.07 + } + ], + "total_price": 244.03, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 13.44, + "expected_delivery": { + "$date": "2025-05-19T05:06:38.127Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.203Z" + } + }, + { + "order_id": "fcfb9635-b249-467a-ae65-3647fbe0bec0", + "customer": { + "customer_id": "c85aba07-c796-483f-ba74-609de3634ce3", + "name": "Jeremiah Moore", + "email": "natalie43@example.com", + "phone": "386.253.1592x8768", + "address": { + "street": "086 James Light Apt. 413", + "city": "Malonemouth", + "state": "Mississippi", + "zip": "62303", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T15:22:38.593Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 122.33, + "subtotal": 244.66 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 141.65, + "subtotal": 141.65 + } + ], + "total_price": 386.31, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 15.37, + "expected_delivery": { + "$date": "2025-05-11T15:22:38.593Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.203Z" + } + }, + { + "order_id": "356e3272-b664-4b09-a67a-d17b2eab8892", + "customer": { + "customer_id": "016c9634-f38b-446b-b352-01e0b662256b", + "name": "Krystal Holder", + "email": "perkinsjulie@example.net", + "phone": "+1-537-413-2938x96454", + "address": { + "street": "538 Adam Ports", + "city": "Amybury", + "state": "Minnesota", + "zip": "54691", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T10:55:52.031Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 1, + "unit_price": 135.28, + "subtotal": 135.28 + } + ], + "total_price": 135.28, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 9.86, + "expected_delivery": { + "$date": "2025-05-14T10:55:52.031Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.204Z" + } + }, + { + "order_id": "ca4af839-c9d0-4f05-b172-225725c5adbf", + "customer": { + "customer_id": "ad0110ce-a11f-4291-b742-4de5e0fbd549", + "name": "Jonathan Dixon", + "email": "michaelmassey@example.com", + "phone": "693.632.9516", + "address": { + "street": "14664 Luke Shoal", + "city": "Cartershire", + "state": "Montana", + "zip": "15321", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T13:47:54.631Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 85.82, + "subtotal": 171.64 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 172.04, + "subtotal": 344.08 + } + ], + "total_price": 515.72, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 18.32, + "expected_delivery": { + "$date": "2025-05-18T13:47:54.631Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.204Z" + } + }, + { + "order_id": "2fd1bdef-fdca-4c75-8ef4-0fbdf0f31b1f", + "customer": { + "customer_id": "9562ff77-4f08-40e3-822b-e5e29f6859d0", + "name": "James Johnson", + "email": "megan06@example.com", + "phone": "634.670.8287", + "address": { + "street": "7979 Samuel Via Suite 364", + "city": "Lewisbury", + "state": "Delaware", + "zip": "67354", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T17:09:57.948Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 120.66, + "subtotal": 241.32 + } + ], + "total_price": 241.32, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 10.55, + "expected_delivery": { + "$date": "2025-05-18T17:09:57.948Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.204Z" + } + }, + { + "order_id": "609c0bdc-6548-428f-9809-6d406a76f288", + "customer": { + "customer_id": "68d01cc8-8740-44f0-b513-65b18c36e4da", + "name": "David Walters", + "email": "sonia83@example.org", + "phone": "(624)834-0128x225", + "address": { + "street": "77579 Shannon Spurs Apt. 913", + "city": "New Sharon", + "state": "New Hampshire", + "zip": "57589", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T11:01:02.743Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 126.02, + "subtotal": 126.02 + }, + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 123.09, + "subtotal": 123.09 + } + ], + "total_price": 249.11, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 15.39, + "expected_delivery": { + "$date": "2025-05-21T11:01:02.743Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.204Z" + } + }, + { + "order_id": "3964789f-6b99-47f4-9553-7449dc50101d", + "customer": { + "customer_id": "cf59e32b-dd6d-49eb-9770-de72a383e2ed", + "name": "Eric Castillo", + "email": "pcampos@example.com", + "phone": "964-849-9975", + "address": { + "street": "1008 Vanessa Common Suite 123", + "city": "Port Jessica", + "state": "Florida", + "zip": "70797", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T01:12:15.718Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 117.13, + "subtotal": 234.26 + }, + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 155.21, + "subtotal": 155.21 + }, + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 158.99, + "subtotal": 158.99 + } + ], + "total_price": 548.46, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 8.43, + "expected_delivery": { + "$date": "2025-05-14T01:12:15.718Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.205Z" + } + }, + { + "order_id": "fc30ba8b-7a42-4773-b98b-97d7403a5279", + "customer": { + "customer_id": "cc434258-2bd8-4448-9374-9beb50185cf3", + "name": "Mark Santos", + "email": "jermaine15@example.org", + "phone": "(575)821-5134", + "address": { + "street": "5297 Nicole Gateway", + "city": "Port James", + "state": "Florida", + "zip": "82414", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T14:18:02.959Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 1, + "unit_price": 179.5, + "subtotal": 179.5 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 129.59, + "subtotal": 129.59 + } + ], + "total_price": 309.09, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 15.5, + "expected_delivery": { + "$date": "2025-05-12T14:18:02.959Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.205Z" + } + }, + { + "order_id": "4d1bebae-4a5a-4bd4-af82-aae2ad9e4a49", + "customer": { + "customer_id": "ed57814a-4d04-4536-b82f-940567acc1fc", + "name": "Kimberly Flynn", + "email": "garciajoshua@example.org", + "phone": "+1-580-776-1493", + "address": { + "street": "9857 Douglas Burgs", + "city": "West Christopherville", + "state": "Alabama", + "zip": "44587", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T05:46:56.582Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 1, + "unit_price": 147.11, + "subtotal": 147.11 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 1, + "unit_price": 118.53, + "subtotal": 118.53 + }, + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 135.44, + "subtotal": 135.44 + } + ], + "total_price": 401.08, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 8.45, + "expected_delivery": { + "$date": "2025-05-13T05:46:56.582Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.205Z" + } + }, + { + "order_id": "13aae154-0d2c-4c34-ae2e-09a89ecb53d4", + "customer": { + "customer_id": "aa355a34-143d-4e5c-90cf-7bb188195ee5", + "name": "Erin Russell", + "email": "nathansmith@example.com", + "phone": "803-307-0434", + "address": { + "street": "804 Ruth Drive", + "city": "Port Tamara", + "state": "New Jersey", + "zip": "84621", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T22:05:02.441Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 61.11, + "subtotal": 61.11 + }, + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 104.35, + "subtotal": 208.7 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 123.34, + "subtotal": 246.68 + } + ], + "total_price": 516.49, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 17.66, + "expected_delivery": { + "$date": "2025-05-10T22:05:02.441Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.205Z" + } + }, + { + "order_id": "7feb39dd-f807-4ecb-9d23-061d655efecc", + "customer": { + "customer_id": "be9efc78-c447-4505-9c78-1f03f241a80d", + "name": "Deborah Garner", + "email": "robert73@example.net", + "phone": "879-359-4770x3041", + "address": { + "street": "259 Matthew Junction", + "city": "Smithshire", + "state": "Mississippi", + "zip": "75542", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T22:16:28.195Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 73.68, + "subtotal": 73.68 + }, + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 2, + "unit_price": 109.71, + "subtotal": 219.42 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 177.15, + "subtotal": 354.3 + } + ], + "total_price": 647.4, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 8.68, + "expected_delivery": { + "$date": "2025-05-14T22:16:28.195Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.205Z" + } + }, + { + "order_id": "2bca47a8-27cb-4ef1-90d7-ed733bc9529f", + "customer": { + "customer_id": "cbed5c43-6032-42a8-9d93-8dbfd95991a7", + "name": "Jonathan Wheeler", + "email": "harriskatherine@example.com", + "phone": "688-961-3308x523", + "address": { + "street": "806 Lori Points Suite 443", + "city": "Parkshaven", + "state": "Delaware", + "zip": "44623", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T21:45:34.238Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 104.43, + "subtotal": 208.86 + }, + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 117.9, + "subtotal": 235.8 + } + ], + "total_price": 444.66, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 10.5, + "expected_delivery": { + "$date": "2025-05-18T21:45:34.238Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.206Z" + } + }, + { + "order_id": "33cfd772-9baf-4ede-aa06-ff7909f6f87a", + "customer": { + "customer_id": "3fc6f3bc-4bd6-4702-aa84-9d17139016e3", + "name": "Krista Baker", + "email": "david03@example.net", + "phone": "001-999-720-9761x295", + "address": { + "street": "88269 Wyatt Shoal Apt. 216", + "city": "Timothyfurt", + "state": "Hawaii", + "zip": "33425", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T04:37:50.425Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 165.66, + "subtotal": 165.66 + }, + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 2, + "unit_price": 80.39, + "subtotal": 160.78 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 85.36, + "subtotal": 170.72 + } + ], + "total_price": 497.16, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 18.66, + "expected_delivery": { + "$date": "2025-05-16T04:37:50.425Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.206Z" + } + }, + { + "order_id": "866c0802-6177-437b-b572-ff6d658b6000", + "customer": { + "customer_id": "0e173335-307c-4255-8bf1-92a73ce3541b", + "name": "Alyssa Hill", + "email": "william50@example.org", + "phone": "904-859-0534x8247", + "address": { + "street": "9362 Stark Lane", + "city": "Port Ronaldhaven", + "state": "Alaska", + "zip": "77609", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T01:12:33.629Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 2, + "unit_price": 145.01, + "subtotal": 290.02 + }, + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 92.65, + "subtotal": 92.65 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 103.41, + "subtotal": 206.82 + } + ], + "total_price": 589.49, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 9.93, + "expected_delivery": { + "$date": "2025-05-18T01:12:33.629Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.206Z" + } + }, + { + "order_id": "7dbf4d81-80d0-4d6f-bec2-e9df821c48ca", + "customer": { + "customer_id": "a682e973-055d-4660-90ed-4baf9e7ca18b", + "name": "Andrew Adams", + "email": "daviskelly@example.net", + "phone": "001-629-965-5297x86020", + "address": { + "street": "955 Campbell Views", + "city": "Barrybury", + "state": "Florida", + "zip": "36292", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T06:30:08.543Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 178.6, + "subtotal": 357.2 + }, + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 1, + "unit_price": 73.86, + "subtotal": 73.86 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 130.36, + "subtotal": 130.36 + } + ], + "total_price": 561.42, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 11.08, + "expected_delivery": { + "$date": "2025-05-11T06:30:08.543Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.206Z" + } + }, + { + "order_id": "bcb2032f-9af9-49d4-b15c-4caa9b29ec54", + "customer": { + "customer_id": "9676f03c-2847-42e9-be8e-41bb57e5a30f", + "name": "Richard Martinez", + "email": "tonymoran@example.org", + "phone": "001-200-995-3021x82365", + "address": { + "street": "666 Miller Glen", + "city": "Howardbury", + "state": "Iowa", + "zip": "88622", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T18:12:15.314Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 92.77, + "subtotal": 185.54 + }, + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 167.12, + "subtotal": 167.12 + } + ], + "total_price": 352.66, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 16.96, + "expected_delivery": { + "$date": "2025-05-15T18:12:15.314Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.207Z" + } + }, + { + "order_id": "f17f2dc2-1134-4865-ba66-a4ba50305298", + "customer": { + "customer_id": "936f7765-8a55-45a6-81a6-3c562e1c993b", + "name": "Brianna Cohen", + "email": "wellspeter@example.com", + "phone": "001-509-618-0117x53318", + "address": { + "street": "7537 Kathleen Extension", + "city": "South Michael", + "state": "Connecticut", + "zip": "19571", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T20:34:53.777Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 162.73, + "subtotal": 162.73 + } + ], + "total_price": 162.73, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 12.0, + "expected_delivery": { + "$date": "2025-05-15T20:34:53.777Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.207Z" + } + }, + { + "order_id": "599786b7-6b61-4a0a-a7dc-631f0f2b8120", + "customer": { + "customer_id": "df7f1948-90da-4007-a386-cc263757b750", + "name": "Evan Allen", + "email": "wtorres@example.org", + "phone": "+1-435-562-5420x681", + "address": { + "street": "8860 Foley Road", + "city": "North Waynebury", + "state": "Wisconsin", + "zip": "01338", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T21:21:44.838Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 67.03, + "subtotal": 134.06 + } + ], + "total_price": 134.06, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 9.08, + "expected_delivery": { + "$date": "2025-05-14T21:21:44.838Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.207Z" + } + }, + { + "order_id": "b10b327d-c132-409a-a969-8ff466bdeb57", + "customer": { + "customer_id": "147cd5ae-1141-4e16-9f54-ec01350be2be", + "name": "Vanessa Quinn", + "email": "riverarobert@example.org", + "phone": "001-683-557-2165", + "address": { + "street": "01958 Lane Bypass Suite 719", + "city": "New Samuelbury", + "state": "Maine", + "zip": "44228", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T10:43:29.987Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 61.49, + "subtotal": 122.98 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 121.32, + "subtotal": 242.64 + } + ], + "total_price": 365.62, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 5.19, + "expected_delivery": { + "$date": "2025-05-09T10:43:29.987Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.207Z" + } + }, + { + "order_id": "c7cb0f40-8ff9-4bf3-8cc5-6abb0d76c23a", + "customer": { + "customer_id": "eae5c9d2-33ca-4a88-8837-1b0f985b4176", + "name": "Richard Mitchell", + "email": "marymeyer@example.net", + "phone": "244-412-2670", + "address": { + "street": "24847 Ricky Cliffs Apt. 289", + "city": "Farleymouth", + "state": "Oklahoma", + "zip": "20684", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T13:07:02.533Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 102.87, + "subtotal": 205.74 + }, + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 164.46, + "subtotal": 164.46 + } + ], + "total_price": 370.2, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 10.44, + "expected_delivery": { + "$date": "2025-05-13T13:07:02.533Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.207Z" + } + }, + { + "order_id": "2275e6a2-7747-4bb0-bb31-ba17e0290231", + "customer": { + "customer_id": "2ad7611d-09f7-4a87-ac55-086bfea42361", + "name": "Timothy Bonilla", + "email": "rickeypalmer@example.com", + "phone": "001-790-244-7182x4994", + "address": { + "street": "28356 Melendez Stream", + "city": "Kathleenview", + "state": "Missouri", + "zip": "34533", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T15:48:46.382Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 79.13, + "subtotal": 79.13 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 173.11, + "subtotal": 173.11 + }, + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 121.65, + "subtotal": 121.65 + } + ], + "total_price": 373.89, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 10.31, + "expected_delivery": { + "$date": "2025-05-13T15:48:46.382Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.208Z" + } + }, + { + "order_id": "b613454b-b649-45d3-8ed3-91bf94b621dc", + "customer": { + "customer_id": "2e63c5f7-c489-4a5f-ac69-bb631f74bd97", + "name": "Jessica Bradley", + "email": "whitedavid@example.net", + "phone": "(987)691-7876x5917", + "address": { + "street": "819 Richard Circle", + "city": "Danielberg", + "state": "Pennsylvania", + "zip": "39779", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T10:24:34.156Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 153.81, + "subtotal": 307.62 + } + ], + "total_price": 307.62, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 13.71, + "expected_delivery": { + "$date": "2025-05-11T10:24:34.156Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.208Z" + } + }, + { + "order_id": "a0a3ee08-486b-4009-ad55-938a697c1fb9", + "customer": { + "customer_id": "a1a01478-547b-4d0c-aff0-6466796590d4", + "name": "Sean Bailey", + "email": "alexanderdavis@example.net", + "phone": "736-729-6099", + "address": { + "street": "6200 Becker Burg", + "city": "Baldwinhaven", + "state": "Massachusetts", + "zip": "18184", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T03:54:36.965Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 1, + "unit_price": 155.61, + "subtotal": 155.61 + } + ], + "total_price": 155.61, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 9.0, + "expected_delivery": { + "$date": "2025-05-22T03:54:36.965Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.208Z" + } + }, + { + "order_id": "2bb54a45-3afd-43aa-be1c-bc8608f23e72", + "customer": { + "customer_id": "3c01a1ed-9273-4dd1-bf18-a16f83d8e0e4", + "name": "Jose Hart", + "email": "ibernard@example.net", + "phone": "2948022802", + "address": { + "street": "1770 Loretta Heights Apt. 684", + "city": "Bookermouth", + "state": "Vermont", + "zip": "89664", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T05:56:48.306Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 156.29, + "subtotal": 312.58 + } + ], + "total_price": 312.58, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 6.15, + "expected_delivery": { + "$date": "2025-05-15T05:56:48.306Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.209Z" + } + }, + { + "order_id": "bf019d24-b715-4f53-9beb-b78b0c1e1d7e", + "customer": { + "customer_id": "c48b689f-3b57-4ee9-b900-083338931a16", + "name": "Maureen Baker", + "email": "ruth27@example.net", + "phone": "846.416.9445", + "address": { + "street": "3777 Savage Viaduct", + "city": "Ericstad", + "state": "Iowa", + "zip": "09476", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T16:56:49.726Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 62.55, + "subtotal": 62.55 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 98.03, + "subtotal": 196.06 + } + ], + "total_price": 258.61, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 14.45, + "expected_delivery": { + "$date": "2025-05-14T16:56:49.726Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.209Z" + } + }, + { + "order_id": "5849794d-8abc-489f-ac26-6d3b551e110c", + "customer": { + "customer_id": "a2f4aa4c-3ef2-4455-8fcb-9427c33ea3c6", + "name": "Kelsey Walker", + "email": "laurie03@example.org", + "phone": "(500)214-2040x57631", + "address": { + "street": "9400 Donna Oval Apt. 804", + "city": "East Lauramouth", + "state": "Alabama", + "zip": "16139", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T10:41:04.269Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 1, + "unit_price": 90.22, + "subtotal": 90.22 + } + ], + "total_price": 90.22, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 15.74, + "expected_delivery": { + "$date": "2025-05-09T10:41:04.269Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.209Z" + } + }, + { + "order_id": "cc3c6c11-a9b1-4fc4-a981-59fdd7edb64f", + "customer": { + "customer_id": "12c730d1-a868-4a33-a5d2-0f7349629d98", + "name": "Edward Smith", + "email": "samanthaleonard@example.com", + "phone": "697-528-8269x97504", + "address": { + "street": "29184 Mark Corners Suite 134", + "city": "Port Thomasborough", + "state": "New Jersey", + "zip": "09992", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T20:18:30.984Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 173.87, + "subtotal": 173.87 + } + ], + "total_price": 173.87, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 14.75, + "expected_delivery": { + "$date": "2025-05-10T20:18:30.984Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.209Z" + } + }, + { + "order_id": "722605ff-36ba-4198-ad2a-d4212416f565", + "customer": { + "customer_id": "18203015-0265-4e1a-9677-2c7068c46d4b", + "name": "Renee Chase", + "email": "flynnsamantha@example.com", + "phone": "(655)896-1037", + "address": { + "street": "715 Amanda Fields Suite 724", + "city": "Johnsville", + "state": "Wisconsin", + "zip": "84748", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T16:20:56.970Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 122.72, + "subtotal": 122.72 + } + ], + "total_price": 122.72, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 11.54, + "expected_delivery": { + "$date": "2025-05-10T16:20:56.970Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.210Z" + } + }, + { + "order_id": "d2a1806d-54b1-45e2-8518-05263e7e2282", + "customer": { + "customer_id": "f522eb19-8835-484f-b9ee-1f68d69b1430", + "name": "Tristan Rodriguez", + "email": "kennethhawkins@example.net", + "phone": "(870)470-9909x31019", + "address": { + "street": "376 Rivera Spring", + "city": "East Valerieshire", + "state": "Oklahoma", + "zip": "35741", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T20:19:23.202Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 65.95, + "subtotal": 131.9 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 118.01, + "subtotal": 236.02 + }, + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 117.67, + "subtotal": 117.67 + } + ], + "total_price": 485.59, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 10.33, + "expected_delivery": { + "$date": "2025-05-13T20:19:23.202Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.210Z" + } + }, + { + "order_id": "39a2fccd-9084-4747-98c3-2386412fd235", + "customer": { + "customer_id": "547d40e1-400b-47ec-894f-a771723408f1", + "name": "Mary Martinez", + "email": "jennifer54@example.com", + "phone": "001-619-657-5208x537", + "address": { + "street": "77671 Suarez Spur", + "city": "Andrewsborough", + "state": "Pennsylvania", + "zip": "29886", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T06:36:10.530Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 73.86, + "subtotal": 73.86 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 92.23, + "subtotal": 184.46 + }, + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 97.63, + "subtotal": 195.26 + } + ], + "total_price": 453.58, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 12.99, + "expected_delivery": { + "$date": "2025-05-17T06:36:10.530Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.210Z" + } + }, + { + "order_id": "8f39160f-5927-4aad-8115-0ce974bc9391", + "customer": { + "customer_id": "28d07079-e5ce-4cff-9f50-3598a991aa47", + "name": "Brenda Bowman", + "email": "holderwilliam@example.net", + "phone": "+1-336-409-0971x313", + "address": { + "street": "353 Donald Viaduct", + "city": "Port Alexahaven", + "state": "Vermont", + "zip": "03639", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T05:25:24.061Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 1, + "unit_price": 143.57, + "subtotal": 143.57 + }, + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 112.22, + "subtotal": 224.44 + }, + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 114.21, + "subtotal": 228.42 + } + ], + "total_price": 596.43, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 14.71, + "expected_delivery": { + "$date": "2025-05-17T05:25:24.061Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.210Z" + } + }, + { + "order_id": "c5d4521a-fa40-4464-9f3d-cdb1b505afa5", + "customer": { + "customer_id": "7fc5712d-ce60-4c0b-b779-ce12224fd89e", + "name": "Katherine Wilson", + "email": "nguyennicole@example.net", + "phone": "+1-309-614-8320x07086", + "address": { + "street": "97388 Brad Pike Suite 202", + "city": "Christinastad", + "state": "Nevada", + "zip": "16623", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T17:11:24.573Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 93.84, + "subtotal": 93.84 + } + ], + "total_price": 93.84, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 12.83, + "expected_delivery": { + "$date": "2025-05-15T17:11:24.573Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.211Z" + } + }, + { + "order_id": "ec99aad2-0989-49eb-aa9f-0d116be8d7e5", + "customer": { + "customer_id": "9198e4c7-211f-4c05-99f9-87e779643c0b", + "name": "Sabrina Chambers", + "email": "valerie55@example.com", + "phone": "001-854-997-1529x6937", + "address": { + "street": "96814 Kathleen Rapids Suite 743", + "city": "Penatown", + "state": "Florida", + "zip": "75849", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T21:19:12.261Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 132.86, + "subtotal": 132.86 + }, + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 114.35, + "subtotal": 114.35 + } + ], + "total_price": 247.21, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 8.16, + "expected_delivery": { + "$date": "2025-05-14T21:19:12.261Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.211Z" + } + }, + { + "order_id": "1e5467e4-e40f-485e-b5d0-60bf7b55feb6", + "customer": { + "customer_id": "17ec7983-99a5-4afe-a80f-f9285bb46c21", + "name": "Janice Mason", + "email": "carterchristine@example.org", + "phone": "+1-218-598-5487x3134", + "address": { + "street": "7310 Wendy Ramp Suite 268", + "city": "Ramirezborough", + "state": "South Carolina", + "zip": "37521", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T05:04:52.159Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 160.67, + "subtotal": 321.34 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 109.12, + "subtotal": 218.24 + } + ], + "total_price": 539.58, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 13.6, + "expected_delivery": { + "$date": "2025-05-11T05:04:52.159Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.211Z" + } + }, + { + "order_id": "59b6ded4-e506-4963-90d6-561c2e600539", + "customer": { + "customer_id": "97f3b4d2-c24a-41a8-aaec-9ed47b955641", + "name": "William Jackson", + "email": "tinasheppard@example.org", + "phone": "4919274949", + "address": { + "street": "0838 Neal Row Apt. 443", + "city": "Markberg", + "state": "Louisiana", + "zip": "27681", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T13:27:34.114Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 157.32, + "subtotal": 157.32 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 1, + "unit_price": 134.75, + "subtotal": 134.75 + }, + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 75.96, + "subtotal": 151.92 + } + ], + "total_price": 443.99, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 6.31, + "expected_delivery": { + "$date": "2025-05-13T13:27:34.114Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.211Z" + } + }, + { + "order_id": "898f1c5c-f05a-458a-87fe-4caeafc0b74b", + "customer": { + "customer_id": "cd5a3ff1-21f3-4724-bd22-49a8da7da6bc", + "name": "Melissa Ruiz", + "email": "caitlin61@example.com", + "phone": "+1-809-743-6086", + "address": { + "street": "888 William Mill", + "city": "Port Charles", + "state": "Delaware", + "zip": "14823", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T12:35:21.133Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 103.03, + "subtotal": 206.06 + }, + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 2, + "unit_price": 133.63, + "subtotal": 267.26 + } + ], + "total_price": 473.32, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 12.53, + "expected_delivery": { + "$date": "2025-05-16T12:35:21.133Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.211Z" + } + }, + { + "order_id": "4a37f711-bb6f-4a0f-a25e-66f580d96b12", + "customer": { + "customer_id": "8c255d4f-d270-472f-8881-01ae39c46e2b", + "name": "Teresa Moore", + "email": "vjackson@example.net", + "phone": "001-899-990-8766x87484", + "address": { + "street": "7761 Brett Crossing Suite 154", + "city": "Jenniferton", + "state": "Idaho", + "zip": "48610", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T09:58:06.715Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 143.3, + "subtotal": 286.6 + } + ], + "total_price": 286.6, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 10.43, + "expected_delivery": { + "$date": "2025-05-16T09:58:06.715Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.212Z" + } + }, + { + "order_id": "f8bfabbc-1a97-46b5-b35d-8c2875b9a65c", + "customer": { + "customer_id": "1a579658-d0c1-4cbf-bfd3-4874ad689f87", + "name": "Kevin Hill", + "email": "markbennett@example.org", + "phone": "485.328.1036", + "address": { + "street": "33519 Amy Parkways Apt. 967", + "city": "South Tiffanytown", + "state": "Rhode Island", + "zip": "54427", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T02:57:44.336Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 2, + "unit_price": 128.91, + "subtotal": 257.82 + } + ], + "total_price": 257.82, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 18.13, + "expected_delivery": { + "$date": "2025-05-12T02:57:44.336Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.212Z" + } + }, + { + "order_id": "f5354b7d-6426-42fe-88c0-4a116c7fa21b", + "customer": { + "customer_id": "1337d0d8-599d-453d-a3d4-e750f6f15d11", + "name": "Gregory Cohen", + "email": "davidwhite@example.net", + "phone": "001-456-520-4360x585", + "address": { + "street": "7024 Catherine Hills", + "city": "Port Tonya", + "state": "California", + "zip": "27718", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T04:25:04.789Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 134.25, + "subtotal": 268.5 + } + ], + "total_price": 268.5, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 15.92, + "expected_delivery": { + "$date": "2025-05-18T04:25:04.789Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.212Z" + } + }, + { + "order_id": "7b559d98-5179-4343-8adf-a6369ced48b0", + "customer": { + "customer_id": "6826dc9d-08ae-4f32-be7a-5b5165ebd604", + "name": "Cynthia Davidson", + "email": "michaelsantiago@example.net", + "phone": "4407311277", + "address": { + "street": "813 Woods Lock Apt. 053", + "city": "East Lori", + "state": "Illinois", + "zip": "18406", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T18:38:18.691Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 105.5, + "subtotal": 105.5 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 141.26, + "subtotal": 141.26 + } + ], + "total_price": 246.76, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 11.67, + "expected_delivery": { + "$date": "2025-05-20T18:38:18.691Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.212Z" + } + }, + { + "order_id": "231d491d-45be-4118-9928-e6425efe88bc", + "customer": { + "customer_id": "c8c0807f-9a99-4fa5-85fd-4d63409dec05", + "name": "Mark Thompson", + "email": "egay@example.org", + "phone": "+1-972-287-6669x37290", + "address": { + "street": "472 Mathis Turnpike", + "city": "Scottland", + "state": "Utah", + "zip": "07033", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T12:28:43.312Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 113.96, + "subtotal": 113.96 + } + ], + "total_price": 113.96, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 6.97, + "expected_delivery": { + "$date": "2025-05-20T12:28:43.312Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.212Z" + } + }, + { + "order_id": "e229f67c-3466-4c49-9336-fc4da0db6083", + "customer": { + "customer_id": "f72f57de-a9c5-408b-8537-af007d2c49ba", + "name": "Janice Zamora", + "email": "ijohnson@example.com", + "phone": "8888680766", + "address": { + "street": "579 Randy Rapid", + "city": "Chapmanfurt", + "state": "Louisiana", + "zip": "38714", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T02:41:23.075Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 102.74, + "subtotal": 205.48 + }, + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 77.96, + "subtotal": 155.92 + } + ], + "total_price": 361.4, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 5.39, + "expected_delivery": { + "$date": "2025-05-13T02:41:23.075Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.213Z" + } + }, + { + "order_id": "b6f82e70-e3a9-448c-a0c6-11d7e431fe61", + "customer": { + "customer_id": "faa4e3be-7199-44b0-a147-54c0b709c9a8", + "name": "Alec Kennedy", + "email": "shahdaniel@example.org", + "phone": "001-822-649-7952x025", + "address": { + "street": "514 Yang Keys Suite 799", + "city": "West Alec", + "state": "New York", + "zip": "48643", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T19:54:36.819Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 1, + "unit_price": 131.49, + "subtotal": 131.49 + } + ], + "total_price": 131.49, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 17.72, + "expected_delivery": { + "$date": "2025-05-10T19:54:36.819Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.213Z" + } + }, + { + "order_id": "a0aa0205-a45b-471d-b55d-e2e710424275", + "customer": { + "customer_id": "22a6db52-3b30-4d1c-8537-ea01f38c2a6f", + "name": "Theodore Howe", + "email": "ztorres@example.net", + "phone": "(543)818-6191", + "address": { + "street": "697 Kerr Field Apt. 794", + "city": "Rayport", + "state": "Montana", + "zip": "39855", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T05:18:02.951Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 95.86, + "subtotal": 95.86 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 69.24, + "subtotal": 138.48 + }, + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 1, + "unit_price": 61.8, + "subtotal": 61.8 + } + ], + "total_price": 296.14, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 10.06, + "expected_delivery": { + "$date": "2025-05-15T05:18:02.951Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.213Z" + } + }, + { + "order_id": "32b82ac7-044f-49e7-b7a8-db8c46af2940", + "customer": { + "customer_id": "380f6f18-c582-43fa-9292-29aba71b6b15", + "name": "Catherine Lynch", + "email": "fosteramber@example.com", + "phone": "001-823-571-5876", + "address": { + "street": "3351 Alexa Plains", + "city": "Kevinfurt", + "state": "Colorado", + "zip": "33039", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T14:23:44.580Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 173.29, + "subtotal": 346.58 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 136.2, + "subtotal": 136.2 + }, + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 76.91, + "subtotal": 153.82 + } + ], + "total_price": 636.6, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 18.24, + "expected_delivery": { + "$date": "2025-05-15T14:23:44.580Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.213Z" + } + }, + { + "order_id": "5a6277cf-c6e7-412e-a7eb-b44e32508265", + "customer": { + "customer_id": "0bdd70f7-f502-4f5a-a5e4-0611812f5992", + "name": "Timothy Bowman", + "email": "qjohnson@example.org", + "phone": "+1-664-718-9506x618", + "address": { + "street": "06503 Brandon Cape", + "city": "Michaelmouth", + "state": "Utah", + "zip": "99191", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T06:53:08.027Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 70.81, + "subtotal": 70.81 + } + ], + "total_price": 70.81, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 15.37, + "expected_delivery": { + "$date": "2025-05-18T06:53:08.027Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.214Z" + } + }, + { + "order_id": "81c6a2e4-16d3-4eb5-a711-786bc8066481", + "customer": { + "customer_id": "8575f9ec-7bbe-4326-8557-d239d6a7b3ac", + "name": "Amy Davis", + "email": "melissa17@example.org", + "phone": "502-831-9542x608", + "address": { + "street": "05873 Morales Grove Apt. 774", + "city": "Katieberg", + "state": "West Virginia", + "zip": "39463", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T17:56:21.308Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 101.9, + "subtotal": 101.9 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 153.33, + "subtotal": 306.66 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 67.95, + "subtotal": 67.95 + } + ], + "total_price": 476.51, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 19.96, + "expected_delivery": { + "$date": "2025-05-22T17:56:21.308Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.214Z" + } + }, + { + "order_id": "17aca6d7-a151-4627-81f6-e7725a390006", + "customer": { + "customer_id": "b287f7fb-4539-49cb-9dd5-70e996371b7b", + "name": "Loretta Gutierrez", + "email": "nwilliams@example.com", + "phone": "917-726-2341", + "address": { + "street": "42584 Smith Plain Suite 409", + "city": "South Lori", + "state": "Utah", + "zip": "71031", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T03:55:24.729Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 98.05, + "subtotal": 196.1 + }, + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 128.33, + "subtotal": 256.66 + } + ], + "total_price": 452.76, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 18.05, + "expected_delivery": { + "$date": "2025-05-21T03:55:24.729Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.214Z" + } + }, + { + "order_id": "0f57bf34-a943-4583-85e5-ce6a8b4d5ef6", + "customer": { + "customer_id": "55568e1d-0b02-49ca-a7d5-bf5166d9d7bf", + "name": "Christopher Robinson", + "email": "ghoward@example.org", + "phone": "001-508-387-3789x076", + "address": { + "street": "9369 Nathan Land Suite 250", + "city": "New Karen", + "state": "California", + "zip": "63954", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T20:28:46.037Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 82.28, + "subtotal": 82.28 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 177.88, + "subtotal": 177.88 + } + ], + "total_price": 260.16, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 19.38, + "expected_delivery": { + "$date": "2025-05-21T20:28:46.037Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.214Z" + } + }, + { + "order_id": "47c5767b-ff7b-4372-9f7f-b237feda17c5", + "customer": { + "customer_id": "7568883a-3e0d-462a-b212-fad956f09cbd", + "name": "Vanessa Jones", + "email": "coreyferrell@example.org", + "phone": "252.572.3002", + "address": { + "street": "723 Amy Burgs Suite 599", + "city": "Port William", + "state": "Georgia", + "zip": "29026", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T06:24:36.947Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 162.9, + "subtotal": 325.8 + } + ], + "total_price": 325.8, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 15.03, + "expected_delivery": { + "$date": "2025-05-17T06:24:36.947Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.214Z" + } + }, + { + "order_id": "00c67a89-5da3-4ac6-bede-3e2f7ffb7437", + "customer": { + "customer_id": "80140f69-9ee7-4f4d-8c3b-76b37de93c19", + "name": "Derek Edwards", + "email": "wendycastillo@example.com", + "phone": "+1-712-701-4828x063", + "address": { + "street": "73106 Debra Walk", + "city": "Bergside", + "state": "Washington", + "zip": "12934", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T04:09:56.125Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 141.83, + "subtotal": 283.66 + }, + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 137.03, + "subtotal": 137.03 + } + ], + "total_price": 420.69, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 18.63, + "expected_delivery": { + "$date": "2025-05-12T04:09:56.125Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.215Z" + } + }, + { + "order_id": "e61f9920-63de-4beb-ac67-2433a89daa50", + "customer": { + "customer_id": "88a62bda-1ce3-44f3-8f01-90196e6afa56", + "name": "Eric Harris", + "email": "oliviapage@example.net", + "phone": "001-761-880-5982", + "address": { + "street": "2369 Andrew Bridge", + "city": "Michaelmouth", + "state": "Montana", + "zip": "79005", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T09:18:18.315Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 133.42, + "subtotal": 266.84 + }, + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 74.44, + "subtotal": 148.88 + }, + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 139.2, + "subtotal": 139.2 + } + ], + "total_price": 554.92, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 11.21, + "expected_delivery": { + "$date": "2025-05-12T09:18:18.315Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.215Z" + } + }, + { + "order_id": "ac58ff22-78df-44fc-ad3c-2ea144ea3971", + "customer": { + "customer_id": "66c3b84a-e11b-4045-93df-7fb6b2982ca5", + "name": "Leslie Pennington", + "email": "rachelmejia@example.net", + "phone": "6279341197", + "address": { + "street": "27250 Stein Harbors", + "city": "New Ashley", + "state": "Pennsylvania", + "zip": "82162", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T06:53:35.153Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 167.51, + "subtotal": 335.02 + }, + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 2, + "unit_price": 102.18, + "subtotal": 204.36 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 159.71, + "subtotal": 319.42 + } + ], + "total_price": 858.8, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 9.02, + "expected_delivery": { + "$date": "2025-05-16T06:53:35.153Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.215Z" + } + }, + { + "order_id": "b4e0bbb9-3245-4d01-871a-0e5f4cab738d", + "customer": { + "customer_id": "e93354c1-15ea-42c1-9e0a-44aa33ed473f", + "name": "Megan Castro", + "email": "theresa22@example.org", + "phone": "+1-819-301-4704x1482", + "address": { + "street": "06614 Vanessa Glens", + "city": "Lake Sharonbury", + "state": "Iowa", + "zip": "47119", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T13:00:21.353Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 148.87, + "subtotal": 297.74 + }, + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 89.04, + "subtotal": 178.08 + } + ], + "total_price": 475.82, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 14.11, + "expected_delivery": { + "$date": "2025-05-14T13:00:21.353Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.215Z" + } + }, + { + "order_id": "9a0e2704-f9cb-4abc-b42e-53db35e5cdb2", + "customer": { + "customer_id": "4ded601c-3aa4-4b4f-a912-cf2f2d50f50f", + "name": "Lucas George", + "email": "katiejohnston@example.net", + "phone": "449.496.3893", + "address": { + "street": "5279 Nathan Curve", + "city": "Lake Phillipburgh", + "state": "New York", + "zip": "94361", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T17:20:32.810Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 171.28, + "subtotal": 171.28 + }, + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 2, + "unit_price": 97.67, + "subtotal": 195.34 + } + ], + "total_price": 366.62, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 6.73, + "expected_delivery": { + "$date": "2025-05-10T17:20:32.810Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.215Z" + } + }, + { + "order_id": "f07ef5b7-96c7-4f6e-b4db-fb44a5a41fa2", + "customer": { + "customer_id": "6abccbda-8728-4c9f-a856-71856a5c8eca", + "name": "David Marsh", + "email": "joseph40@example.org", + "phone": "+1-365-518-9586x724", + "address": { + "street": "382 Young Island", + "city": "Lake Andrew", + "state": "New York", + "zip": "28656", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T20:51:00.765Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 112.61, + "subtotal": 225.22 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 92.66, + "subtotal": 185.32 + } + ], + "total_price": 410.54, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 18.94, + "expected_delivery": { + "$date": "2025-05-20T20:51:00.765Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.216Z" + } + }, + { + "order_id": "1b6024cb-aa66-468e-8bd6-34176efb8186", + "customer": { + "customer_id": "2b8fa985-6386-4ec3-a196-16d6fb591ffb", + "name": "Brandon Baker", + "email": "xharvey@example.net", + "phone": "001-521-517-7410", + "address": { + "street": "0276 Morgan Key Apt. 493", + "city": "Sanchezburgh", + "state": "Arkansas", + "zip": "47891", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T07:32:33.380Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 143.95, + "subtotal": 143.95 + } + ], + "total_price": 143.95, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 12.27, + "expected_delivery": { + "$date": "2025-05-13T07:32:33.380Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.216Z" + } + }, + { + "order_id": "8e062ee0-b4ea-4d7b-90ad-85c9ff4cd8d5", + "customer": { + "customer_id": "216c5f61-8cd9-43e5-bc88-7f7ef06906ea", + "name": "Jasmin Smith", + "email": "uwilliams@example.com", + "phone": "(565)795-2019x07014", + "address": { + "street": "3980 Adam Camp", + "city": "Kevinhaven", + "state": "Arizona", + "zip": "46140", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T11:55:28.942Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 80.64, + "subtotal": 161.28 + } + ], + "total_price": 161.28, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 16.74, + "expected_delivery": { + "$date": "2025-05-09T11:55:28.942Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.216Z" + } + }, + { + "order_id": "e8f797d7-ab56-4bad-97bf-88b24af8eba7", + "customer": { + "customer_id": "a400636e-43a9-41b2-877a-f25ef37e7df3", + "name": "Timothy Allen", + "email": "rblair@example.net", + "phone": "(759)717-3783x583", + "address": { + "street": "664 Nelson Plain Suite 386", + "city": "West Christina", + "state": "New Mexico", + "zip": "73703", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T05:44:29.977Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 1, + "unit_price": 115.42, + "subtotal": 115.42 + }, + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 77.38, + "subtotal": 77.38 + } + ], + "total_price": 192.8, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 13.79, + "expected_delivery": { + "$date": "2025-05-14T05:44:29.977Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.216Z" + } + }, + { + "order_id": "de68055d-9856-4fa5-9830-0f34f1d5c087", + "customer": { + "customer_id": "08729c99-6d7d-48b2-9768-cff7014d3338", + "name": "Lisa Meyer", + "email": "courtney30@example.net", + "phone": "431.932.7376x6800", + "address": { + "street": "377 Smith Freeway", + "city": "East Katrinaview", + "state": "North Dakota", + "zip": "89929", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T09:07:31.824Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 162.0, + "subtotal": 162.0 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 82.35, + "subtotal": 164.7 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 63.95, + "subtotal": 127.9 + } + ], + "total_price": 454.6, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 11.22, + "expected_delivery": { + "$date": "2025-05-15T09:07:31.824Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.217Z" + } + }, + { + "order_id": "b450b99f-8572-4b06-8206-02cb088b8e01", + "customer": { + "customer_id": "b6d362d2-9705-4ed0-87ad-e866a0ff7f98", + "name": "Daniel Williams", + "email": "dwalker@example.org", + "phone": "745-760-8445x5706", + "address": { + "street": "905 Dawn Ranch", + "city": "Phillipsfort", + "state": "Connecticut", + "zip": "50777", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T12:08:20.922Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 145.2, + "subtotal": 145.2 + }, + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 94.98, + "subtotal": 189.96 + }, + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 175.62, + "subtotal": 351.24 + } + ], + "total_price": 686.4, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 15.67, + "expected_delivery": { + "$date": "2025-05-12T12:08:20.922Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.217Z" + } + }, + { + "order_id": "fd698a2c-ba0e-49e8-85c2-17e176b5c25d", + "customer": { + "customer_id": "e1ea7dcf-82d3-4898-943b-453c45cc83d6", + "name": "Michael Blankenship", + "email": "derek46@example.com", + "phone": "911-360-8633x00139", + "address": { + "street": "9955 Hurst Lights", + "city": "Rebeccatown", + "state": "Massachusetts", + "zip": "70485", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T19:30:06.596Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 1, + "unit_price": 71.48, + "subtotal": 71.48 + } + ], + "total_price": 71.48, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 11.56, + "expected_delivery": { + "$date": "2025-05-21T19:30:06.596Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.217Z" + } + }, + { + "order_id": "43dde7bb-6077-45d1-a45c-f737c1c93c0e", + "customer": { + "customer_id": "057e7927-37a7-4684-9ea3-59256d9bcde5", + "name": "Kelsey Goodwin", + "email": "dvazquez@example.org", + "phone": "001-941-698-7761", + "address": { + "street": "28255 Robles Street", + "city": "North Markmouth", + "state": "Kansas", + "zip": "65212", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T23:24:46.914Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 146.36, + "subtotal": 146.36 + }, + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 2, + "unit_price": 166.62, + "subtotal": 333.24 + } + ], + "total_price": 479.6, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 16.19, + "expected_delivery": { + "$date": "2025-05-19T23:24:46.914Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.217Z" + } + }, + { + "order_id": "62f04821-0308-4178-a158-5c5b1ec60f22", + "customer": { + "customer_id": "4766962b-a287-478b-b1e0-5f28e020fed0", + "name": "Kathryn Moreno", + "email": "ismith@example.net", + "phone": "781-677-7241x7671", + "address": { + "street": "4498 Mark Road Suite 307", + "city": "Jessestad", + "state": "Vermont", + "zip": "34517", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T08:23:12.827Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 72.54, + "subtotal": 145.08 + } + ], + "total_price": 145.08, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 12.76, + "expected_delivery": { + "$date": "2025-05-12T08:23:12.827Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.217Z" + } + }, + { + "order_id": "455e0b44-d6da-48d7-aced-69a3272fd23b", + "customer": { + "customer_id": "ce93943e-36dc-4b44-933f-20db85d89752", + "name": "Tony Crane", + "email": "neilphillips@example.org", + "phone": "+1-493-987-2067x777", + "address": { + "street": "2446 Isaac Causeway Apt. 311", + "city": "North Richard", + "state": "Hawaii", + "zip": "51649", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T18:43:13.454Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 98.54, + "subtotal": 197.08 + }, + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 121.06, + "subtotal": 121.06 + }, + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 173.48, + "subtotal": 346.96 + } + ], + "total_price": 665.1, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 10.26, + "expected_delivery": { + "$date": "2025-05-09T18:43:13.454Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.218Z" + } + }, + { + "order_id": "1247d990-ff1a-4d25-b9b4-83ba42526bbe", + "customer": { + "customer_id": "631726c5-f6a5-4217-b14d-30fc107c8ee8", + "name": "Samuel Jones", + "email": "spowell@example.net", + "phone": "(461)415-0201x656", + "address": { + "street": "620 Roberts Falls Suite 670", + "city": "North Hollyburgh", + "state": "Nebraska", + "zip": "83082", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T03:34:48.678Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 81.13, + "subtotal": 162.26 + } + ], + "total_price": 162.26, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 9.07, + "expected_delivery": { + "$date": "2025-05-16T03:34:48.678Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.218Z" + } + }, + { + "order_id": "ac813dee-f3b8-44b1-96d9-faed6e7dc8f3", + "customer": { + "customer_id": "540f623e-9ec8-4d97-b495-3ee3bf021da8", + "name": "Catherine Reyes", + "email": "smithmichele@example.net", + "phone": "362.574.9239x82711", + "address": { + "street": "5298 Bob Ford", + "city": "Villarrealmouth", + "state": "California", + "zip": "31450", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T04:57:29.598Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 125.65, + "subtotal": 251.3 + }, + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 87.9, + "subtotal": 175.8 + } + ], + "total_price": 427.1, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 8.66, + "expected_delivery": { + "$date": "2025-05-13T04:57:29.598Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.218Z" + } + }, + { + "order_id": "812d7245-e6ee-4db7-b88a-8c060ec4cf00", + "customer": { + "customer_id": "c6c4adca-6a99-4ec8-bf98-0653f0ec43ce", + "name": "Emma Diaz", + "email": "kylesullivan@example.com", + "phone": "551-200-1019x47177", + "address": { + "street": "17808 Roberts Estates Apt. 554", + "city": "Port Michael", + "state": "Utah", + "zip": "90052", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T11:54:19.977Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 143.81, + "subtotal": 287.62 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 74.28, + "subtotal": 74.28 + }, + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 125.15, + "subtotal": 250.3 + } + ], + "total_price": 612.2, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 11.55, + "expected_delivery": { + "$date": "2025-05-18T11:54:19.977Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.218Z" + } + }, + { + "order_id": "75061a71-65b0-4e59-88d2-438f007e3f2e", + "customer": { + "customer_id": "fac36ae0-9835-40dc-bacf-03caf9161b86", + "name": "Lindsey Huffman", + "email": "linda62@example.org", + "phone": "440.236.5910x508", + "address": { + "street": "636 Terry Course", + "city": "North Gabriel", + "state": "Kansas", + "zip": "88575", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T08:31:44.807Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 115.49, + "subtotal": 115.49 + } + ], + "total_price": 115.49, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 9.3, + "expected_delivery": { + "$date": "2025-05-17T08:31:44.807Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.219Z" + } + }, + { + "order_id": "b73b1d1d-a7d8-493e-8bc6-7677f388063d", + "customer": { + "customer_id": "ff7c5163-0492-4026-8b79-4c6e8dd532f4", + "name": "Anne Davidson", + "email": "matthew36@example.com", + "phone": "463-606-9938x5977", + "address": { + "street": "7558 Walters Mount", + "city": "Walkerport", + "state": "Maryland", + "zip": "36155", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T18:32:52.659Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 143.36, + "subtotal": 286.72 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 1, + "unit_price": 120.08, + "subtotal": 120.08 + }, + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 148.81, + "subtotal": 297.62 + } + ], + "total_price": 704.42, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 9.32, + "expected_delivery": { + "$date": "2025-05-20T18:32:52.659Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.219Z" + } + }, + { + "order_id": "f2e29534-4b63-48be-99f9-3fecc8ada559", + "customer": { + "customer_id": "8198a60f-287e-49c6-b8b4-7a74575f452d", + "name": "Darren Mullins", + "email": "bclark@example.com", + "phone": "(747)538-5501x378", + "address": { + "street": "9111 Aaron Track", + "city": "Port Jason", + "state": "Louisiana", + "zip": "45166", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T01:34:19.097Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 149.28, + "subtotal": 298.56 + } + ], + "total_price": 298.56, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 15.01, + "expected_delivery": { + "$date": "2025-05-15T01:34:19.097Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.219Z" + } + }, + { + "order_id": "dd5c94d7-24c3-4b0b-9bce-ab52d5ac86be", + "customer": { + "customer_id": "3337b989-413f-4173-a58e-683674a9d6a7", + "name": "Jacqueline Duarte", + "email": "xmiller@example.org", + "phone": "252.963.4029", + "address": { + "street": "681 Jodi Inlet", + "city": "Joneschester", + "state": "New Hampshire", + "zip": "65601", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T15:31:31.546Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 92.51, + "subtotal": 185.02 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 80.01, + "subtotal": 80.01 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 102.84, + "subtotal": 205.68 + } + ], + "total_price": 470.71, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 16.69, + "expected_delivery": { + "$date": "2025-05-19T15:31:31.546Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.219Z" + } + }, + { + "order_id": "48180dc1-3aa9-466a-b816-f7008663657b", + "customer": { + "customer_id": "2926a1d2-1722-4e76-ab2a-6fafdc9bfe4b", + "name": "James Kennedy", + "email": "vmcdonald@example.com", + "phone": "001-852-484-4361", + "address": { + "street": "1670 Rose Throughway Apt. 925", + "city": "Jordanside", + "state": "Wyoming", + "zip": "85900", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T21:53:04.042Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 92.34, + "subtotal": 92.34 + } + ], + "total_price": 92.34, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 15.39, + "expected_delivery": { + "$date": "2025-05-08T21:53:04.042Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.219Z" + } + }, + { + "order_id": "1681b296-09d9-4485-b979-380488cecefc", + "customer": { + "customer_id": "eeaf2eae-ab3a-4f8d-8386-29c70b1f2d29", + "name": "Kim Schroeder", + "email": "stephaniecox@example.net", + "phone": "782.708.0413", + "address": { + "street": "05015 Michael Way Suite 893", + "city": "Davidfort", + "state": "Arkansas", + "zip": "98081", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T16:04:43.108Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 115.93, + "subtotal": 231.86 + } + ], + "total_price": 231.86, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 12.29, + "expected_delivery": { + "$date": "2025-05-19T16:04:43.108Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.220Z" + } + }, + { + "order_id": "2205b2a1-9404-48bf-9641-a5ab2508aec9", + "customer": { + "customer_id": "93b6d604-05db-4d27-945a-e03530ee8834", + "name": "Laurie Allen", + "email": "mark54@example.com", + "phone": "518-685-6945", + "address": { + "street": "7191 Stewart Rue", + "city": "Hernandezhaven", + "state": "Kansas", + "zip": "19608", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T07:08:56.164Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 114.88, + "subtotal": 114.88 + } + ], + "total_price": 114.88, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 5.62, + "expected_delivery": { + "$date": "2025-05-16T07:08:56.164Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.220Z" + } + }, + { + "order_id": "37703179-0922-4bb8-a9ac-dfd8a0ab652e", + "customer": { + "customer_id": "847f0f95-fba3-4c28-ba49-f294d22b4252", + "name": "Samantha Ayers", + "email": "fletcherglen@example.net", + "phone": "+1-906-527-4229x565", + "address": { + "street": "3085 Mcdonald Hills", + "city": "Seanside", + "state": "Ohio", + "zip": "97312", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T02:16:56.418Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 1, + "unit_price": 103.25, + "subtotal": 103.25 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 114.58, + "subtotal": 229.16 + } + ], + "total_price": 332.41, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 10.77, + "expected_delivery": { + "$date": "2025-05-16T02:16:56.418Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.220Z" + } + }, + { + "order_id": "f2fe442b-eb8d-4447-a88f-19f00646318e", + "customer": { + "customer_id": "9c8ccaf0-59cb-4920-be14-a176050ea248", + "name": "Mrs. Krystal White", + "email": "zellis@example.net", + "phone": "+1-782-340-9244x64969", + "address": { + "street": "483 Montgomery Lights", + "city": "North Elizabeth", + "state": "Georgia", + "zip": "90463", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T09:51:51.013Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 101.53, + "subtotal": 203.06 + }, + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 79.06, + "subtotal": 158.12 + } + ], + "total_price": 361.18, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 16.07, + "expected_delivery": { + "$date": "2025-05-21T09:51:51.013Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.220Z" + } + }, + { + "order_id": "ea988293-9745-4f9a-93ea-375366df8c54", + "customer": { + "customer_id": "ddef0efc-174e-418d-a00e-9156cf58f466", + "name": "Benjamin Perry", + "email": "amandagarrett@example.org", + "phone": "474.717.0978", + "address": { + "street": "06721 Thomas Green Apt. 559", + "city": "Kathleenberg", + "state": "New Mexico", + "zip": "64655", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T20:14:02.849Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 155.58, + "subtotal": 311.16 + }, + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 161.98, + "subtotal": 161.98 + }, + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 102.11, + "subtotal": 204.22 + } + ], + "total_price": 677.36, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 6.58, + "expected_delivery": { + "$date": "2025-05-15T20:14:02.849Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.221Z" + } + }, + { + "order_id": "66d9f898-2c7a-4cf2-bedb-2a3b8907380d", + "customer": { + "customer_id": "2299950d-93c3-4d94-98d7-e62139c28d05", + "name": "Gabrielle Lewis", + "email": "kellywilliams@example.net", + "phone": "+1-432-932-2845x2850", + "address": { + "street": "3755 Steven Orchard", + "city": "North Carrie", + "state": "Massachusetts", + "zip": "35212", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T14:29:50.335Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 170.53, + "subtotal": 170.53 + }, + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 84.91, + "subtotal": 84.91 + } + ], + "total_price": 255.44, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 11.6, + "expected_delivery": { + "$date": "2025-05-14T14:29:50.335Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.221Z" + } + }, + { + "order_id": "a855f03c-77a1-4383-9f9d-4f1f6efdae77", + "customer": { + "customer_id": "b6e47ea5-9fa8-441f-9cfd-0705cee5c88a", + "name": "Robert Mcdonald", + "email": "smontgomery@example.net", + "phone": "(525)538-1838x927", + "address": { + "street": "4342 Robert Manor Apt. 741", + "city": "New Lisa", + "state": "Nevada", + "zip": "34874", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T21:52:19.859Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 82.76, + "subtotal": 165.52 + } + ], + "total_price": 165.52, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 12.54, + "expected_delivery": { + "$date": "2025-05-09T21:52:19.859Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.221Z" + } + }, + { + "order_id": "f02e681b-8e8c-42ce-b34d-5de8dd59b5ff", + "customer": { + "customer_id": "0bf7d7b4-7646-475c-8965-3c1b0877c403", + "name": "Dr. Donald Coleman", + "email": "xvega@example.com", + "phone": "763.689.7094x54124", + "address": { + "street": "648 Pearson Green Apt. 942", + "city": "Robertfort", + "state": "Hawaii", + "zip": "98302", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T16:34:19.730Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 68.7, + "subtotal": 137.4 + } + ], + "total_price": 137.4, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 14.35, + "expected_delivery": { + "$date": "2025-05-16T16:34:19.730Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.221Z" + } + }, + { + "order_id": "4ea13a8c-7bc9-4605-a395-108ddb0b91e0", + "customer": { + "customer_id": "fdbcea69-8fdf-4e64-aca3-d6906f3ba0d9", + "name": "Jacob Smith", + "email": "jessica41@example.com", + "phone": "377.928.0581x3798", + "address": { + "street": "44681 Shannon Stravenue", + "city": "South Josephtown", + "state": "Alabama", + "zip": "27548", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T12:08:27.331Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 107.91, + "subtotal": 215.82 + } + ], + "total_price": 215.82, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 19.76, + "expected_delivery": { + "$date": "2025-05-14T12:08:27.331Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.222Z" + } + }, + { + "order_id": "1bbd9761-9fcb-4bd8-aa3e-803aeeae06ed", + "customer": { + "customer_id": "c3ebb755-2b38-4bd3-a0d1-af28b7cc3af1", + "name": "Dr. Anne Jackson", + "email": "xrasmussen@example.org", + "phone": "479-206-9223", + "address": { + "street": "1337 Nicole Burg", + "city": "Kevinburgh", + "state": "Illinois", + "zip": "28725", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T02:13:41.105Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 2, + "unit_price": 145.23, + "subtotal": 290.46 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 110.7, + "subtotal": 221.4 + } + ], + "total_price": 511.86, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 10.97, + "expected_delivery": { + "$date": "2025-05-15T02:13:41.105Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.222Z" + } + }, + { + "order_id": "2de2bcb5-6d44-4493-b9cb-28f74042323c", + "customer": { + "customer_id": "51b83357-4639-47df-a34c-f40a9cab6838", + "name": "Jennifer Carter", + "email": "paulpalmer@example.com", + "phone": "643.800.4319x5866", + "address": { + "street": "9699 Lopez Gateway Apt. 754", + "city": "Petersontown", + "state": "Alabama", + "zip": "27957", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T07:37:34.163Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 155.92, + "subtotal": 311.84 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 75.34, + "subtotal": 75.34 + } + ], + "total_price": 387.18, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 13.26, + "expected_delivery": { + "$date": "2025-05-17T07:37:34.163Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.222Z" + } + }, + { + "order_id": "79aa91c1-4305-4414-a1b8-789aa4b8ea22", + "customer": { + "customer_id": "0ce0af15-0456-40f4-a275-90383f8930f7", + "name": "Rachel Russell", + "email": "torresvincent@example.org", + "phone": "691-840-3598x21995", + "address": { + "street": "9990 Stephen Islands", + "city": "North Danielmouth", + "state": "Hawaii", + "zip": "82797", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T00:49:42.278Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 68.89, + "subtotal": 68.89 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 171.51, + "subtotal": 343.02 + } + ], + "total_price": 411.91, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 17.49, + "expected_delivery": { + "$date": "2025-05-20T00:49:42.278Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.222Z" + } + }, + { + "order_id": "0c07d9a8-e785-4ccf-b0b0-c412f90e7902", + "customer": { + "customer_id": "da223584-1d58-4ee6-b9e9-5a4c27ff9654", + "name": "Craig Vargas", + "email": "robert55@example.org", + "phone": "001-853-721-2314x3500", + "address": { + "street": "7163 Ronald Via", + "city": "Muellerburgh", + "state": "Hawaii", + "zip": "43813", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T07:45:23.197Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 63.26, + "subtotal": 126.52 + } + ], + "total_price": 126.52, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 18.39, + "expected_delivery": { + "$date": "2025-05-22T07:45:23.197Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.223Z" + } + }, + { + "order_id": "234a5b1f-4b36-494b-b714-fbc8d517f8b2", + "customer": { + "customer_id": "fe56dbb0-04b8-4f03-a378-44cecdb16db8", + "name": "Tracy Mckenzie", + "email": "alisonmartin@example.net", + "phone": "(420)446-4631x7777", + "address": { + "street": "877 Jorge Centers Apt. 703", + "city": "Wendyhaven", + "state": "Kentucky", + "zip": "76572", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T14:47:58.674Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 107.69, + "subtotal": 107.69 + }, + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 129.95, + "subtotal": 129.95 + } + ], + "total_price": 237.64, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 15.79, + "expected_delivery": { + "$date": "2025-05-19T14:47:58.674Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.223Z" + } + }, + { + "order_id": "ec3b4c74-7b88-412d-a43f-a1117dd04187", + "customer": { + "customer_id": "47490558-c6a2-470e-9d55-6b59c277ebfb", + "name": "Darren Martinez", + "email": "richardsandrea@example.com", + "phone": "9632522627", + "address": { + "street": "786 Lopez Spring Suite 241", + "city": "Amandaview", + "state": "North Dakota", + "zip": "40711", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T02:26:02.847Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 81.92, + "subtotal": 163.84 + }, + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 179.15, + "subtotal": 358.3 + }, + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 164.21, + "subtotal": 328.42 + } + ], + "total_price": 850.56, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 9.2, + "expected_delivery": { + "$date": "2025-05-11T02:26:02.847Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.223Z" + } + }, + { + "order_id": "d77d1be8-c34b-4b03-86e9-523152f307b1", + "customer": { + "customer_id": "3099fbd1-59b5-489f-83be-dbbc099b6bcb", + "name": "Ashley Tucker", + "email": "alexandra30@example.com", + "phone": "001-273-678-3776x78245", + "address": { + "street": "764 Smith Hills", + "city": "North Dawn", + "state": "Idaho", + "zip": "87394", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T15:37:18.094Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 66.7, + "subtotal": 66.7 + }, + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 87.48, + "subtotal": 174.96 + }, + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 136.37, + "subtotal": 136.37 + } + ], + "total_price": 378.03, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 14.77, + "expected_delivery": { + "$date": "2025-05-14T15:37:18.094Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.223Z" + } + }, + { + "order_id": "f116d6a4-1530-4e17-a342-e22f575a38d4", + "customer": { + "customer_id": "003af783-24b4-4a1b-9c6e-a7f61e7acd65", + "name": "David Byrd", + "email": "ebailey@example.org", + "phone": "360-422-7567x6161", + "address": { + "street": "440 Michelle Mountains Suite 607", + "city": "East Christopher", + "state": "Indiana", + "zip": "56828", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T04:31:15.522Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 2, + "unit_price": 98.9, + "subtotal": 197.8 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 76.66, + "subtotal": 153.32 + }, + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 148.06, + "subtotal": 296.12 + } + ], + "total_price": 647.24, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 12.84, + "expected_delivery": { + "$date": "2025-05-12T04:31:15.522Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.224Z" + } + }, + { + "order_id": "e88235bb-a072-42ff-8769-6fcc7306029c", + "customer": { + "customer_id": "26b128ef-154a-4fd7-b30b-785a6725f7bc", + "name": "Marissa Rogers", + "email": "omorris@example.org", + "phone": "7549626923", + "address": { + "street": "658 Daniels Junction Apt. 677", + "city": "Lake Daniel", + "state": "Rhode Island", + "zip": "79903", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T06:26:04.012Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 1, + "unit_price": 71.07, + "subtotal": 71.07 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 137.3, + "subtotal": 137.3 + }, + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 141.36, + "subtotal": 141.36 + } + ], + "total_price": 349.73, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 18.78, + "expected_delivery": { + "$date": "2025-05-19T06:26:04.012Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.224Z" + } + }, + { + "order_id": "d7ceff6a-6248-49c1-b900-e28d7169e420", + "customer": { + "customer_id": "9749fd11-4bee-4db3-8c46-d63a5b828b89", + "name": "Joseph George", + "email": "lisa33@example.org", + "phone": "+1-984-243-4197x45557", + "address": { + "street": "850 Mitchell Turnpike Suite 950", + "city": "Andrewside", + "state": "Delaware", + "zip": "68578", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T07:20:57.002Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 105.88, + "subtotal": 211.76 + }, + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 136.51, + "subtotal": 273.02 + } + ], + "total_price": 484.78, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 15.66, + "expected_delivery": { + "$date": "2025-05-13T07:20:57.002Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.224Z" + } + }, + { + "order_id": "578f40ab-7d5f-4051-9beb-ac990fe6844d", + "customer": { + "customer_id": "724a007a-23b2-459a-b878-9180af6e1424", + "name": "Laura Daniels", + "email": "linda04@example.com", + "phone": "(576)647-1935", + "address": { + "street": "695 Davis Via Apt. 575", + "city": "Port Jeffrey", + "state": "New Hampshire", + "zip": "50832", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T08:31:43.667Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 151.67, + "subtotal": 303.34 + }, + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 1, + "unit_price": 159.18, + "subtotal": 159.18 + }, + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 2, + "unit_price": 146.8, + "subtotal": 293.6 + } + ], + "total_price": 756.12, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 8.69, + "expected_delivery": { + "$date": "2025-05-15T08:31:43.667Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.225Z" + } + }, + { + "order_id": "00607d8f-9c43-4bde-945b-3395cbcb415a", + "customer": { + "customer_id": "b2440609-7784-42ef-af75-28e34db82bf0", + "name": "Jonathan Wilcox", + "email": "snyderbrianna@example.com", + "phone": "001-720-507-9357x30330", + "address": { + "street": "41749 Kimberly Ridges", + "city": "East Johnshire", + "state": "Georgia", + "zip": "37914", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T06:45:36.991Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 122.05, + "subtotal": 244.1 + }, + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 1, + "unit_price": 73.1, + "subtotal": 73.1 + }, + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 1, + "unit_price": 152.92, + "subtotal": 152.92 + } + ], + "total_price": 470.12, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 15.56, + "expected_delivery": { + "$date": "2025-05-16T06:45:36.991Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.225Z" + } + }, + { + "order_id": "68fa41d8-8b70-4dc6-bce3-b9ad251c2d98", + "customer": { + "customer_id": "d3b612f3-8188-4a16-80a8-b2606e9cc77f", + "name": "Jason Beasley", + "email": "lguerrero@example.net", + "phone": "001-955-693-6858", + "address": { + "street": "442 Hanson Terrace Apt. 115", + "city": "Williamsland", + "state": "Tennessee", + "zip": "57829", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T16:56:09.555Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 68.86, + "subtotal": 68.86 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 77.88, + "subtotal": 155.76 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 62.44, + "subtotal": 62.44 + } + ], + "total_price": 287.06, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 19.42, + "expected_delivery": { + "$date": "2025-05-14T16:56:09.555Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.225Z" + } + }, + { + "order_id": "a0218248-e064-4461-8e44-11300dfeba6f", + "customer": { + "customer_id": "3b800c71-5bd9-40fa-8a0c-7416c71be245", + "name": "Jennifer Stone", + "email": "ryangonzalez@example.net", + "phone": "928-813-5688", + "address": { + "street": "3344 Amber Throughway Suite 585", + "city": "Port Julia", + "state": "Pennsylvania", + "zip": "97701", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T19:22:05.408Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 1, + "unit_price": 96.69, + "subtotal": 96.69 + }, + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 104.35, + "subtotal": 208.7 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 163.9, + "subtotal": 163.9 + } + ], + "total_price": 469.29, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 16.08, + "expected_delivery": { + "$date": "2025-05-18T19:22:05.408Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.225Z" + } + }, + { + "order_id": "b715d3cb-7ba9-4529-9c11-6a665c179d0f", + "customer": { + "customer_id": "a523f1ae-4ea4-4462-828b-31792485c06b", + "name": "Rebecca Shelton", + "email": "ymay@example.net", + "phone": "7562479228", + "address": { + "street": "70591 Marco Brooks", + "city": "Port Stevenport", + "state": "Maine", + "zip": "90942", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T08:06:33.722Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 77.04, + "subtotal": 154.08 + } + ], + "total_price": 154.08, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 17.47, + "expected_delivery": { + "$date": "2025-05-17T08:06:33.722Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.226Z" + } + }, + { + "order_id": "115045ab-7dbd-449c-b28d-475bce9cbdf5", + "customer": { + "customer_id": "447ee8ba-b045-4683-aefe-244b5691e047", + "name": "Charlene Oneill", + "email": "wendyaguilar@example.net", + "phone": "+1-469-854-7981", + "address": { + "street": "094 Melissa Parkways Apt. 798", + "city": "New Roberta", + "state": "Mississippi", + "zip": "72140", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T15:13:41.497Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 1, + "unit_price": 173.91, + "subtotal": 173.91 + } + ], + "total_price": 173.91, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 17.59, + "expected_delivery": { + "$date": "2025-05-19T15:13:41.497Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.226Z" + } + }, + { + "order_id": "67817be7-9c15-4484-a214-e2ccab9a791b", + "customer": { + "customer_id": "56d1f8c5-9dff-4568-84cc-0ac5f90a9278", + "name": "Mark Rosario", + "email": "nmoran@example.com", + "phone": "217-744-0183", + "address": { + "street": "197 Gardner Throughway", + "city": "Lake Victorshire", + "state": "New Hampshire", + "zip": "39400", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T02:36:20.378Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 103.5, + "subtotal": 103.5 + } + ], + "total_price": 103.5, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 15.43, + "expected_delivery": { + "$date": "2025-05-11T02:36:20.378Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.226Z" + } + }, + { + "order_id": "cbf397c2-9886-47ed-bccb-1c8fb90d332e", + "customer": { + "customer_id": "dc682bfa-9e61-4d8a-8530-feac3397ecd1", + "name": "Adam Park", + "email": "johnsonjennifer@example.net", + "phone": "(665)238-7698x00199", + "address": { + "street": "76792 Brian Islands", + "city": "West Christopherburgh", + "state": "New York", + "zip": "54878", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T01:36:55.237Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 152.02, + "subtotal": 304.04 + } + ], + "total_price": 304.04, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 9.1, + "expected_delivery": { + "$date": "2025-05-13T01:36:55.237Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.226Z" + } + }, + { + "order_id": "e476238f-ebbb-48ff-ba80-a2fc47b2593d", + "customer": { + "customer_id": "51a46470-960a-46c2-b479-e5b34f01f7fb", + "name": "Kevin Nguyen", + "email": "davidanderson@example.net", + "phone": "001-364-820-5452x76163", + "address": { + "street": "816 Jennifer Wells", + "city": "West Patricia", + "state": "Arizona", + "zip": "59643", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T19:35:33.529Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 144.22, + "subtotal": 288.44 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 89.02, + "subtotal": 178.04 + } + ], + "total_price": 466.48, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 16.62, + "expected_delivery": { + "$date": "2025-05-21T19:35:33.529Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.227Z" + } + }, + { + "order_id": "aac01f36-eaba-4780-8add-37c9b087bc16", + "customer": { + "customer_id": "8a9ded87-b895-4037-bf7d-a69876b41e2d", + "name": "Nicole Hernandez", + "email": "clewis@example.com", + "phone": "+1-617-578-6640x9014", + "address": { + "street": "906 Kayla Trail Apt. 755", + "city": "South Sharonburgh", + "state": "Ohio", + "zip": "92187", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T07:56:47.074Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 1, + "unit_price": 146.6, + "subtotal": 146.6 + }, + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 160.96, + "subtotal": 321.92 + }, + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 2, + "unit_price": 119.11, + "subtotal": 238.22 + } + ], + "total_price": 706.74, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 15.23, + "expected_delivery": { + "$date": "2025-05-11T07:56:47.074Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.227Z" + } + }, + { + "order_id": "be3605df-b224-4abc-8f8c-b698d295db39", + "customer": { + "customer_id": "b5bfe7f2-3933-40fd-8593-503abd2f9f88", + "name": "Jill Bell", + "email": "courtneyjohnson@example.net", + "phone": "279-348-0523", + "address": { + "street": "0597 Garcia Tunnel", + "city": "Malikfort", + "state": "Wisconsin", + "zip": "34263", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T06:54:34.273Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 130.34, + "subtotal": 130.34 + } + ], + "total_price": 130.34, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 8.35, + "expected_delivery": { + "$date": "2025-05-18T06:54:34.273Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.227Z" + } + }, + { + "order_id": "278b3e38-956f-4fdc-b47f-0011295026fa", + "customer": { + "customer_id": "798a9562-3ac2-4336-a658-85d68d75fd69", + "name": "Raymond Smith", + "email": "hallgeorge@example.com", + "phone": "610-345-6290", + "address": { + "street": "6722 Jessica Flats Apt. 795", + "city": "Thompsonland", + "state": "Delaware", + "zip": "61171", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T22:53:31.138Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 155.4, + "subtotal": 155.4 + } + ], + "total_price": 155.4, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 14.52, + "expected_delivery": { + "$date": "2025-05-10T22:53:31.138Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.228Z" + } + }, + { + "order_id": "693118e1-e9d2-4001-892c-1cfbb9a1576a", + "customer": { + "customer_id": "0bf0d447-76c3-4563-8dc0-28289e804c06", + "name": "Raymond Johnson", + "email": "angiegomez@example.net", + "phone": "309.374.5392x82302", + "address": { + "street": "0595 Austin Stream Suite 590", + "city": "Haleyport", + "state": "Connecticut", + "zip": "37824", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T07:15:34.616Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 174.19, + "subtotal": 174.19 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 122.86, + "subtotal": 245.72 + } + ], + "total_price": 419.91, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 8.92, + "expected_delivery": { + "$date": "2025-05-08T07:15:34.616Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.228Z" + } + }, + { + "order_id": "a4fc9757-29a4-471f-b72d-ea51ae01969b", + "customer": { + "customer_id": "79156feb-4971-4ca7-86f2-2b59b09506d2", + "name": "Megan Thomas", + "email": "lucastracy@example.org", + "phone": "378.930.0817x423", + "address": { + "street": "902 Tyler Creek", + "city": "Leeland", + "state": "Oklahoma", + "zip": "55274", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T00:09:10.541Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 163.61, + "subtotal": 163.61 + } + ], + "total_price": 163.61, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 7.15, + "expected_delivery": { + "$date": "2025-05-21T00:09:10.541Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.228Z" + } + }, + { + "order_id": "030624b7-a6cf-46bf-9b56-c419948a460b", + "customer": { + "customer_id": "51c2545f-68ca-41d7-8702-589831d8595c", + "name": "Donna Bray", + "email": "watkinslaura@example.com", + "phone": "479-881-1483x3726", + "address": { + "street": "79543 Cervantes Track", + "city": "West William", + "state": "Kansas", + "zip": "53500", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T23:40:22.861Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 87.17, + "subtotal": 87.17 + }, + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 66.77, + "subtotal": 133.54 + }, + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 1, + "unit_price": 83.63, + "subtotal": 83.63 + } + ], + "total_price": 304.34, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 11.75, + "expected_delivery": { + "$date": "2025-05-16T23:40:22.861Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.228Z" + } + }, + { + "order_id": "b259c3a6-01f1-403e-a861-105733561825", + "customer": { + "customer_id": "1aaa3293-239e-4781-a6ea-28d5b16daf9d", + "name": "Barry Kim", + "email": "davidparks@example.com", + "phone": "612.665.8580", + "address": { + "street": "63919 Compton Crossroad", + "city": "New Patricia", + "state": "Idaho", + "zip": "34503", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T11:11:46.677Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 163.91, + "subtotal": 163.91 + }, + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 127.71, + "subtotal": 127.71 + } + ], + "total_price": 291.62, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 18.82, + "expected_delivery": { + "$date": "2025-05-20T11:11:46.677Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.229Z" + } + }, + { + "order_id": "f15e5ed6-699d-45f6-8f82-85496ee0db75", + "customer": { + "customer_id": "57968513-48c3-470d-970d-80a8f83b078e", + "name": "Amber Baker", + "email": "twatson@example.org", + "phone": "395-795-0801x876", + "address": { + "street": "447 Campbell Lodge Apt. 438", + "city": "South Wandafort", + "state": "New York", + "zip": "05455", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T00:01:16.660Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 103.03, + "subtotal": 103.03 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 66.44, + "subtotal": 66.44 + } + ], + "total_price": 169.47, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 17.88, + "expected_delivery": { + "$date": "2025-05-17T00:01:16.660Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.229Z" + } + }, + { + "order_id": "1bd1b8aa-7de8-4bc6-8400-1e08dddc1efb", + "customer": { + "customer_id": "700b851f-e9e6-46a0-b393-2f0154e104e6", + "name": "Sarah Knapp", + "email": "friedmancaroline@example.com", + "phone": "(970)812-6724x286", + "address": { + "street": "2358 Angel Flat", + "city": "New Wendybury", + "state": "Arizona", + "zip": "70567", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T03:57:30.248Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 127.61, + "subtotal": 127.61 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 127.56, + "subtotal": 127.56 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 156.57, + "subtotal": 313.14 + } + ], + "total_price": 568.31, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 18.43, + "expected_delivery": { + "$date": "2025-05-17T03:57:30.248Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.229Z" + } + }, + { + "order_id": "271c3bc0-7f4c-4e14-83da-c03c00442ebe", + "customer": { + "customer_id": "94663c9f-36fa-4f6a-8f00-c218ca318dad", + "name": "Jeffery Walker", + "email": "howardstephen@example.net", + "phone": "001-918-903-1907x4697", + "address": { + "street": "377 Kristie Curve Apt. 725", + "city": "South Taylorhaven", + "state": "Wisconsin", + "zip": "46217", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T22:19:15.726Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 90.58, + "subtotal": 181.16 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 126.86, + "subtotal": 253.72 + } + ], + "total_price": 434.88, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 8.16, + "expected_delivery": { + "$date": "2025-05-19T22:19:15.726Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.229Z" + } + }, + { + "order_id": "6115c128-2957-49c4-bf74-361578e2ff52", + "customer": { + "customer_id": "06f4d4a2-b4b6-4a90-8521-82ec2d1f14b5", + "name": "Vanessa Garcia", + "email": "hodgetara@example.com", + "phone": "(569)771-2130x5111", + "address": { + "street": "49420 Parker Fall Apt. 574", + "city": "Port Lauratown", + "state": "Utah", + "zip": "41414", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T21:10:16.703Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 128.9, + "subtotal": 128.9 + }, + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 83.63, + "subtotal": 83.63 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 86.82, + "subtotal": 173.64 + } + ], + "total_price": 386.17, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 15.19, + "expected_delivery": { + "$date": "2025-05-14T21:10:16.703Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.230Z" + } + }, + { + "order_id": "9d21ba27-c20b-4de5-8256-a329240e26cc", + "customer": { + "customer_id": "8ded0401-42ff-435c-be50-749d8af98f57", + "name": "Angela Tran", + "email": "cindy87@example.org", + "phone": "(337)291-2891x4751", + "address": { + "street": "31039 Burton Drives", + "city": "Lake Andrew", + "state": "Maryland", + "zip": "93509", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T15:40:51.303Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 85.13, + "subtotal": 85.13 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 60.92, + "subtotal": 60.92 + } + ], + "total_price": 146.05, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 12.72, + "expected_delivery": { + "$date": "2025-05-18T15:40:51.303Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.230Z" + } + }, + { + "order_id": "0830881b-0588-4764-89c3-acca4fabaa87", + "customer": { + "customer_id": "6cb4d7e8-d258-4fe6-b893-9ee9ad5b54f1", + "name": "Mr. Luke Cabrera", + "email": "hoodpaul@example.net", + "phone": "(752)595-9784x60247", + "address": { + "street": "3597 Mosley Mill", + "city": "Dannychester", + "state": "Oregon", + "zip": "12742", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T22:00:20.760Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 168.25, + "subtotal": 168.25 + } + ], + "total_price": 168.25, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 17.05, + "expected_delivery": { + "$date": "2025-05-15T22:00:20.760Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.230Z" + } + }, + { + "order_id": "ba8408ad-7fcf-4178-95eb-30e64e9efeca", + "customer": { + "customer_id": "5a2a8f01-9039-4e78-8394-260f1d858f39", + "name": "Kimberly Mccullough", + "email": "dgoodwin@example.org", + "phone": "473-288-5128x80645", + "address": { + "street": "5992 Carter Well Suite 221", + "city": "North Raymond", + "state": "New York", + "zip": "14104", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T04:11:34.507Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 164.25, + "subtotal": 328.5 + } + ], + "total_price": 328.5, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 18.93, + "expected_delivery": { + "$date": "2025-05-13T04:11:34.507Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.230Z" + } + }, + { + "order_id": "8ce376ac-d0bb-439e-992e-2ea5e9a3888c", + "customer": { + "customer_id": "88a70fc5-6bfe-4e0e-8837-4f75fb993f82", + "name": "Jennifer Peterson", + "email": "diamond88@example.org", + "phone": "858.274.2830", + "address": { + "street": "56790 Green Summit Suite 621", + "city": "New Joseph", + "state": "Idaho", + "zip": "26934", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T13:45:38.051Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 146.33, + "subtotal": 146.33 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 122.11, + "subtotal": 244.22 + } + ], + "total_price": 390.55, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 19.8, + "expected_delivery": { + "$date": "2025-05-17T13:45:38.051Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.230Z" + } + }, + { + "order_id": "14f7476b-916f-43bb-8257-7c335a8f5338", + "customer": { + "customer_id": "609797ce-75f1-49f1-b9e5-b9fe0d2cb344", + "name": "Larry Scott", + "email": "dgreer@example.com", + "phone": "355.871.8104x14428", + "address": { + "street": "09070 Carlos Road", + "city": "East Micheleland", + "state": "Kentucky", + "zip": "43556", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T01:10:01.990Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 113.08, + "subtotal": 113.08 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 74.22, + "subtotal": 148.44 + }, + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 2, + "unit_price": 178.75, + "subtotal": 357.5 + } + ], + "total_price": 619.02, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 17.63, + "expected_delivery": { + "$date": "2025-05-09T01:10:01.990Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.231Z" + } + }, + { + "order_id": "5c3147b5-79ab-4ebe-8540-7488d0ca0e71", + "customer": { + "customer_id": "813cf068-fc29-4668-9d75-e361c8c9d04e", + "name": "Troy Green", + "email": "carterrandy@example.com", + "phone": "9187351142", + "address": { + "street": "455 Darius Parkway Suite 194", + "city": "Lake Barbara", + "state": "New York", + "zip": "11705", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T07:08:21.545Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 177.1, + "subtotal": 177.1 + }, + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 66.08, + "subtotal": 132.16 + } + ], + "total_price": 309.26, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 16.93, + "expected_delivery": { + "$date": "2025-05-17T07:08:21.545Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.231Z" + } + }, + { + "order_id": "d2e3e074-5459-4ac1-8ba4-769fb23d4f14", + "customer": { + "customer_id": "705d32f6-a5dd-432b-b055-f26a50090f97", + "name": "Diana Dixon", + "email": "rhoward@example.org", + "phone": "001-601-563-7474x05314", + "address": { + "street": "13537 Tina Burg Suite 794", + "city": "Zacharyside", + "state": "Mississippi", + "zip": "54498", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T08:40:03.499Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 118.32, + "subtotal": 236.64 + } + ], + "total_price": 236.64, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 7.82, + "expected_delivery": { + "$date": "2025-05-17T08:40:03.499Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.231Z" + } + }, + { + "order_id": "bb5bbb74-cca2-4278-9545-aa4c7ba87955", + "customer": { + "customer_id": "23802aa9-a2f9-46ad-bd23-f27d54cce1f6", + "name": "Rhonda Riddle", + "email": "richard58@example.com", + "phone": "5638933256", + "address": { + "street": "6550 Devin Gateway", + "city": "Carrilloborough", + "state": "Oklahoma", + "zip": "06519", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T04:01:00.262Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 137.24, + "subtotal": 137.24 + } + ], + "total_price": 137.24, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 6.64, + "expected_delivery": { + "$date": "2025-05-12T04:01:00.262Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.231Z" + } + }, + { + "order_id": "2329d257-0a98-45ff-b4d8-7e1090c9562a", + "customer": { + "customer_id": "858e4baa-c496-49ef-ba18-9eb8eb9b12bf", + "name": "Mr. Timothy Roberts", + "email": "vmorrison@example.net", + "phone": "584-655-4257x608", + "address": { + "street": "585 Hector Spur Apt. 944", + "city": "East Jenniferfort", + "state": "Massachusetts", + "zip": "37131", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T19:52:23.163Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 63.19, + "subtotal": 63.19 + }, + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 160.85, + "subtotal": 321.7 + } + ], + "total_price": 384.89, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 14.95, + "expected_delivery": { + "$date": "2025-05-13T19:52:23.163Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.232Z" + } + }, + { + "order_id": "8b37e28e-8c72-4b1c-a0c6-e33fff008eaf", + "customer": { + "customer_id": "acc87642-2726-494c-b9a2-67242c3dc0f5", + "name": "Cody Wolf", + "email": "xharrison@example.net", + "phone": "(836)694-8782x040", + "address": { + "street": "22636 Gordon Key", + "city": "Lake Kimberlyton", + "state": "Maine", + "zip": "77998", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T02:16:28.736Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 148.02, + "subtotal": 148.02 + }, + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 165.21, + "subtotal": 165.21 + } + ], + "total_price": 313.23, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 10.01, + "expected_delivery": { + "$date": "2025-05-17T02:16:28.736Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.232Z" + } + }, + { + "order_id": "b19fed4f-d86b-4c99-a424-b678367a1259", + "customer": { + "customer_id": "e830614d-dad2-4fcf-97ac-9b2dc1e5f92b", + "name": "Michael Herring", + "email": "jhernandez@example.net", + "phone": "(999)912-5962x949", + "address": { + "street": "008 Susan Lodge", + "city": "Davidstad", + "state": "Montana", + "zip": "47827", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T01:46:22.847Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 178.83, + "subtotal": 357.66 + } + ], + "total_price": 357.66, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 13.75, + "expected_delivery": { + "$date": "2025-05-15T01:46:22.847Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.232Z" + } + }, + { + "order_id": "33231561-8273-4d3d-b603-da15fdc2078b", + "customer": { + "customer_id": "da4e68c6-0411-4451-82f7-cc83e9a04d3f", + "name": "David Lyons", + "email": "karlabradshaw@example.org", + "phone": "001-715-874-6165x965", + "address": { + "street": "8536 Fletcher Land", + "city": "Watkinshaven", + "state": "South Dakota", + "zip": "39176", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T04:44:52.312Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 90.84, + "subtotal": 90.84 + }, + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 1, + "unit_price": 111.46, + "subtotal": 111.46 + } + ], + "total_price": 202.3, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 6.23, + "expected_delivery": { + "$date": "2025-05-13T04:44:52.312Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.232Z" + } + }, + { + "order_id": "6e5985e2-0807-4e85-a315-a9ed16b9c09d", + "customer": { + "customer_id": "abc453a7-2bb2-43ac-b6a7-2e0fb88558a1", + "name": "James Young", + "email": "kelleysharon@example.org", + "phone": "(741)417-8065x875", + "address": { + "street": "076 Ricky Glens Suite 346", + "city": "Port Williehaven", + "state": "New Mexico", + "zip": "58541", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T21:22:00.373Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 153.15, + "subtotal": 306.3 + }, + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 98.54, + "subtotal": 197.08 + } + ], + "total_price": 503.38, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 12.35, + "expected_delivery": { + "$date": "2025-05-16T21:22:00.373Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.233Z" + } + }, + { + "order_id": "5188336a-a2f1-4e12-8644-256362599923", + "customer": { + "customer_id": "a4da1bba-5d5e-4c83-a0f3-b1782aabfda7", + "name": "Linda Smith", + "email": "justinlee@example.com", + "phone": "516.986.4681x631", + "address": { + "street": "1224 Adam Vista Apt. 304", + "city": "Shannontown", + "state": "North Carolina", + "zip": "34549", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T07:44:22.474Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 1, + "unit_price": 165.35, + "subtotal": 165.35 + } + ], + "total_price": 165.35, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 6.45, + "expected_delivery": { + "$date": "2025-05-15T07:44:22.474Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.233Z" + } + }, + { + "order_id": "b5ad72d5-f458-4d6a-b289-8cff102c704e", + "customer": { + "customer_id": "cb00f2d7-02b8-4117-bb7d-5c95de9abd5b", + "name": "Steven Williams", + "email": "cphillips@example.net", + "phone": "544.337.1701x6240", + "address": { + "street": "53728 Moore Freeway Suite 904", + "city": "South Jessica", + "state": "Oklahoma", + "zip": "09815", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T00:25:56.513Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 171.67, + "subtotal": 343.34 + } + ], + "total_price": 343.34, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 14.39, + "expected_delivery": { + "$date": "2025-05-16T00:25:56.513Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.233Z" + } + }, + { + "order_id": "5b2f5bd8-3382-4fd6-ad84-7cdf6a2b1852", + "customer": { + "customer_id": "703c6511-242f-4738-b0c4-8960b8be0c43", + "name": "Matthew Ramos", + "email": "angela82@example.com", + "phone": "534.868.9934x722", + "address": { + "street": "0352 Nicholas Spurs", + "city": "Annaview", + "state": "South Dakota", + "zip": "77199", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T14:14:16.703Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 163.7, + "subtotal": 163.7 + } + ], + "total_price": 163.7, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 8.21, + "expected_delivery": { + "$date": "2025-05-21T14:14:16.703Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.233Z" + } + }, + { + "order_id": "e3a9c985-eec5-4cb2-a097-af4b992a306d", + "customer": { + "customer_id": "fd19e32d-ea6d-485c-bb3a-f5fb5f887eff", + "name": "Adam Koch", + "email": "ykelly@example.net", + "phone": "4537981060", + "address": { + "street": "5758 Dudley Shoals", + "city": "New Bethberg", + "state": "California", + "zip": "59064", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T20:40:18.062Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 1, + "unit_price": 156.2, + "subtotal": 156.2 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 102.57, + "subtotal": 102.57 + } + ], + "total_price": 258.77, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 17.78, + "expected_delivery": { + "$date": "2025-05-21T20:40:18.062Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.234Z" + } + }, + { + "order_id": "f0cd5533-ff42-4fca-ae40-5783f49e895d", + "customer": { + "customer_id": "566b8e09-49ca-4b9a-8a3c-3ad79264715d", + "name": "Tiffany Wyatt", + "email": "thompsonkelly@example.net", + "phone": "879.592.3955", + "address": { + "street": "3821 Palmer Mills", + "city": "Kellyburgh", + "state": "Ohio", + "zip": "70557", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T04:19:23.337Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 125.85, + "subtotal": 251.7 + }, + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 101.81, + "subtotal": 203.62 + } + ], + "total_price": 455.32, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 13.28, + "expected_delivery": { + "$date": "2025-05-10T04:19:23.337Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.234Z" + } + }, + { + "order_id": "81c9a463-3177-4b6c-b9dd-8ffaf6b486d7", + "customer": { + "customer_id": "e29a40cc-2d58-4711-b01d-bb77d8013642", + "name": "Christopher Hall", + "email": "zachary57@example.net", + "phone": "(628)807-1535", + "address": { + "street": "72080 Zachary Parkway", + "city": "Lake Michael", + "state": "Florida", + "zip": "57983", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T01:43:27.627Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 73.1, + "subtotal": 146.2 + }, + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 90.48, + "subtotal": 90.48 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 130.58, + "subtotal": 261.16 + } + ], + "total_price": 497.84, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 6.04, + "expected_delivery": { + "$date": "2025-05-17T01:43:27.627Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.234Z" + } + }, + { + "order_id": "fa275a13-c55b-41c5-a9d6-f936dc2a1fd7", + "customer": { + "customer_id": "a13f6c30-0b22-4561-9a9f-4ba64e4fa5fd", + "name": "Kevin Carroll", + "email": "bullockchristian@example.net", + "phone": "797-991-4638x4983", + "address": { + "street": "942 Riddle Branch Suite 176", + "city": "Longfurt", + "state": "Idaho", + "zip": "01072", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T03:49:48.153Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 2, + "unit_price": 82.76, + "subtotal": 165.52 + }, + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 1, + "unit_price": 123.53, + "subtotal": 123.53 + }, + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 139.46, + "subtotal": 278.92 + } + ], + "total_price": 567.97, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 19.89, + "expected_delivery": { + "$date": "2025-05-21T03:49:48.153Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.234Z" + } + }, + { + "order_id": "8a58b94d-cf05-431b-b229-c8484db1d835", + "customer": { + "customer_id": "d6958fdc-1484-4386-8d6a-b52f761089df", + "name": "Cynthia Howell", + "email": "caroline19@example.net", + "phone": "+1-245-559-7537", + "address": { + "street": "8151 Kathryn Landing Apt. 040", + "city": "Brianfort", + "state": "Arizona", + "zip": "82152", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T09:34:20.442Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 169.72, + "subtotal": 339.44 + }, + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 169.94, + "subtotal": 169.94 + }, + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 157.25, + "subtotal": 314.5 + } + ], + "total_price": 823.88, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 14.44, + "expected_delivery": { + "$date": "2025-05-14T09:34:20.442Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.234Z" + } + }, + { + "order_id": "b3ed03eb-56fa-4e35-bbb5-168fcef1a891", + "customer": { + "customer_id": "42558c3a-dfa3-4ab7-beed-6b3769264c59", + "name": "Mary Oliver", + "email": "fitzgeraldmichael@example.org", + "phone": "001-223-202-5587x3660", + "address": { + "street": "39709 Navarro Forge", + "city": "Payneport", + "state": "New Mexico", + "zip": "92474", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T12:16:18.337Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 153.78, + "subtotal": 153.78 + }, + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 1, + "unit_price": 167.72, + "subtotal": 167.72 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 158.62, + "subtotal": 158.62 + } + ], + "total_price": 480.12, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 8.0, + "expected_delivery": { + "$date": "2025-05-14T12:16:18.337Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.235Z" + } + }, + { + "order_id": "b0f764e0-5d97-4301-bed0-9b892fec3a3b", + "customer": { + "customer_id": "929ce903-0cb2-4c59-9e94-c35941b19471", + "name": "Anthony Garcia", + "email": "mmartin@example.com", + "phone": "001-890-218-7616x8191", + "address": { + "street": "883 Stein Turnpike", + "city": "North Michelle", + "state": "Idaho", + "zip": "80465", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T01:49:29.100Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 179.45, + "subtotal": 358.9 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 122.32, + "subtotal": 122.32 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 111.74, + "subtotal": 111.74 + } + ], + "total_price": 592.96, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 18.77, + "expected_delivery": { + "$date": "2025-05-15T01:49:29.100Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.235Z" + } + }, + { + "order_id": "2cf01bf7-f265-4d7a-bc21-056d26a304cc", + "customer": { + "customer_id": "cac2db6c-7309-4c7d-ba16-40af4886da2b", + "name": "Marc Brown", + "email": "jeremymeadows@example.net", + "phone": "+1-828-515-9500x19817", + "address": { + "street": "83170 Vasquez Park", + "city": "Lake Stephanieside", + "state": "Nevada", + "zip": "44536", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T07:41:15.134Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 103.42, + "subtotal": 103.42 + }, + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 1, + "unit_price": 144.07, + "subtotal": 144.07 + } + ], + "total_price": 247.49, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 19.58, + "expected_delivery": { + "$date": "2025-05-14T07:41:15.134Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.235Z" + } + }, + { + "order_id": "8f066826-35ab-462a-ba86-839dab50db9a", + "customer": { + "customer_id": "aa221d71-0249-4a0e-9318-c5e9b3c672ef", + "name": "Yvette Reid", + "email": "rodriguezrichard@example.net", + "phone": "6585230901", + "address": { + "street": "39314 Gill Course", + "city": "West Rebeccastad", + "state": "Missouri", + "zip": "82109", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T01:54:47.429Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 104.11, + "subtotal": 208.22 + }, + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 109.24, + "subtotal": 109.24 + } + ], + "total_price": 317.46, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 5.99, + "expected_delivery": { + "$date": "2025-05-15T01:54:47.429Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.235Z" + } + }, + { + "order_id": "d4df55a0-5b9a-4eaf-bb93-17bbf6c73542", + "customer": { + "customer_id": "537f526b-221f-4bb9-ba7c-9c5a1714bab1", + "name": "Jeremy Thomas", + "email": "daviseric@example.org", + "phone": "494-517-4365", + "address": { + "street": "4546 Dana Forges", + "city": "East Danielbury", + "state": "Nebraska", + "zip": "01572", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T11:01:08.024Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 176.27, + "subtotal": 176.27 + } + ], + "total_price": 176.27, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 18.03, + "expected_delivery": { + "$date": "2025-05-15T11:01:08.024Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.236Z" + } + }, + { + "order_id": "df2711ef-97f8-4448-9212-74729852cf91", + "customer": { + "customer_id": "7b9572bc-4128-456e-a234-7b69a3d431f9", + "name": "Anthony Davis", + "email": "stephanie06@example.com", + "phone": "549.288.0350x4227", + "address": { + "street": "1716 Amanda Mountain Suite 626", + "city": "Baxterfurt", + "state": "Missouri", + "zip": "76538", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T21:17:45.019Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 99.61, + "subtotal": 199.22 + }, + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 169.03, + "subtotal": 338.06 + } + ], + "total_price": 537.28, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 6.01, + "expected_delivery": { + "$date": "2025-05-16T21:17:45.019Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.236Z" + } + }, + { + "order_id": "5704a663-ecbf-44c6-94cb-ae91a85c93e5", + "customer": { + "customer_id": "92f813dd-c5c4-459a-9cc4-0956384d36c6", + "name": "Amber Garcia", + "email": "domingueznicholas@example.com", + "phone": "+1-583-821-0918x8324", + "address": { + "street": "0451 Martinez Valleys", + "city": "Nguyenstad", + "state": "Alaska", + "zip": "61821", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T07:02:37.603Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 2, + "unit_price": 70.59, + "subtotal": 141.18 + } + ], + "total_price": 141.18, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 7.27, + "expected_delivery": { + "$date": "2025-05-16T07:02:37.603Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.236Z" + } + }, + { + "order_id": "5a8bf583-8e8a-42b8-8e43-aa41f554b3f9", + "customer": { + "customer_id": "ff7121c1-0e90-4f31-b457-73f55d688bf9", + "name": "George Stephens", + "email": "laurakim@example.com", + "phone": "826.506.3550x053", + "address": { + "street": "58852 Richard Mountains", + "city": "Kurtfort", + "state": "Indiana", + "zip": "23299", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T21:21:39.438Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 128.87, + "subtotal": 128.87 + }, + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 168.83, + "subtotal": 168.83 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 67.23, + "subtotal": 134.46 + } + ], + "total_price": 432.16, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 18.69, + "expected_delivery": { + "$date": "2025-05-17T21:21:39.438Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.236Z" + } + }, + { + "order_id": "f5357801-a26a-4bc3-a636-66dac35bdb7b", + "customer": { + "customer_id": "4b18310d-4408-4d31-9dea-2cf7ab0faa15", + "name": "Richard Boyd", + "email": "bhenson@example.com", + "phone": "+1-249-249-7994x5155", + "address": { + "street": "90133 Robert Lodge Suite 943", + "city": "Gallagherchester", + "state": "Louisiana", + "zip": "73634", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T23:04:40.327Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 138.8, + "subtotal": 277.6 + } + ], + "total_price": 277.6, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 16.19, + "expected_delivery": { + "$date": "2025-05-16T23:04:40.327Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.237Z" + } + }, + { + "order_id": "1802ca85-7816-4c37-9f9a-cef857e14e52", + "customer": { + "customer_id": "bc49ad5e-caad-492a-8b35-c631dc1ad173", + "name": "Jennifer Copeland", + "email": "jesus65@example.com", + "phone": "(442)708-3008", + "address": { + "street": "63456 Ayers Falls", + "city": "East Robertmouth", + "state": "Oregon", + "zip": "98596", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T04:02:22.510Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 77.76, + "subtotal": 155.52 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 84.37, + "subtotal": 84.37 + }, + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 156.64, + "subtotal": 156.64 + } + ], + "total_price": 396.53, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 18.38, + "expected_delivery": { + "$date": "2025-05-19T04:02:22.510Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.237Z" + } + }, + { + "order_id": "c31ec163-5f1c-47aa-a6b3-3cbb17b65910", + "customer": { + "customer_id": "21046963-c8f8-471c-9eda-ff237a4f739d", + "name": "Ann Sanchez", + "email": "carrollchristina@example.net", + "phone": "(659)556-8011", + "address": { + "street": "7625 Bianca Pass", + "city": "Timothymouth", + "state": "Montana", + "zip": "27610", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T16:15:36.255Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 2, + "unit_price": 168.49, + "subtotal": 336.98 + }, + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 110.96, + "subtotal": 110.96 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 1, + "unit_price": 92.75, + "subtotal": 92.75 + } + ], + "total_price": 540.69, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 18.47, + "expected_delivery": { + "$date": "2025-05-17T16:15:36.255Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.237Z" + } + }, + { + "order_id": "84a0f1c0-8809-4560-8599-c7cd537ec243", + "customer": { + "customer_id": "4ffa9fda-03ab-4cfc-9b0b-35811ecdb5e5", + "name": "Susan Huff", + "email": "martinezmichelle@example.net", + "phone": "001-930-704-6131x9416", + "address": { + "street": "21696 Hayes Way", + "city": "Avilaborough", + "state": "Tennessee", + "zip": "06263", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T17:02:47.560Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 168.13, + "subtotal": 168.13 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 103.02, + "subtotal": 103.02 + } + ], + "total_price": 271.15, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 7.99, + "expected_delivery": { + "$date": "2025-05-21T17:02:47.560Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.237Z" + } + }, + { + "order_id": "4fc72c58-5fa5-4378-bde9-f46c822777a1", + "customer": { + "customer_id": "fa8fe239-5453-4697-b583-31ddc177b115", + "name": "Andrew Brown", + "email": "stanleyharper@example.net", + "phone": "227.879.9253x1570", + "address": { + "street": "9837 Smith Station Apt. 921", + "city": "Port Johnathan", + "state": "Pennsylvania", + "zip": "55023", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T07:29:51.385Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 115.9, + "subtotal": 231.8 + }, + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 162.45, + "subtotal": 162.45 + }, + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 124.1, + "subtotal": 124.1 + } + ], + "total_price": 518.35, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 17.79, + "expected_delivery": { + "$date": "2025-05-13T07:29:51.385Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.237Z" + } + }, + { + "order_id": "59c0cd1d-724a-41c2-b954-74bf893ae303", + "customer": { + "customer_id": "307a3f04-3a5b-4b09-85f2-f3466b10e300", + "name": "Derek French", + "email": "virginiaballard@example.org", + "phone": "+1-789-863-5215x9552", + "address": { + "street": "9553 Amanda Centers Apt. 991", + "city": "Daniellefurt", + "state": "Colorado", + "zip": "57081", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T07:13:32.851Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 103.18, + "subtotal": 103.18 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 106.68, + "subtotal": 106.68 + } + ], + "total_price": 209.86, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 19.18, + "expected_delivery": { + "$date": "2025-05-15T07:13:32.851Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.238Z" + } + }, + { + "order_id": "ecc84958-3e4f-4f4b-a7ea-5f40f7334df9", + "customer": { + "customer_id": "0d26c1af-7b85-40fd-bdc0-83961ef55db9", + "name": "John Sanchez", + "email": "srhodes@example.org", + "phone": "+1-452-699-3715x3406", + "address": { + "street": "501 Lori Ford", + "city": "Johnbury", + "state": "Nebraska", + "zip": "72185", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T02:00:05.619Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 148.97, + "subtotal": 297.94 + }, + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 130.93, + "subtotal": 261.86 + } + ], + "total_price": 559.8, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 16.46, + "expected_delivery": { + "$date": "2025-05-15T02:00:05.619Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.238Z" + } + }, + { + "order_id": "ec5c190a-538a-4af1-a4c7-a6676f03e3b2", + "customer": { + "customer_id": "439ca504-09e6-4300-b762-8749327f5ec6", + "name": "Tonya Davis", + "email": "beth30@example.com", + "phone": "699.564.8661", + "address": { + "street": "7260 Sharp Trail", + "city": "East Sharon", + "state": "Alabama", + "zip": "53574", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T12:03:23.827Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 2, + "unit_price": 86.94, + "subtotal": 173.88 + }, + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 1, + "unit_price": 101.65, + "subtotal": 101.65 + }, + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 94.43, + "subtotal": 188.86 + } + ], + "total_price": 464.39, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 7.27, + "expected_delivery": { + "$date": "2025-05-15T12:03:23.827Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.238Z" + } + }, + { + "order_id": "6cc0e428-3465-44c3-afb0-a707f061be91", + "customer": { + "customer_id": "90548eb6-66ba-4d78-aac4-90442403355c", + "name": "Donna Zamora", + "email": "richardsalas@example.com", + "phone": "(276)258-6370", + "address": { + "street": "12740 Reed Branch Suite 327", + "city": "West Dennis", + "state": "California", + "zip": "92443", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T19:08:46.744Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 167.28, + "subtotal": 334.56 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 114.57, + "subtotal": 114.57 + }, + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 90.1, + "subtotal": 90.1 + } + ], + "total_price": 539.23, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 12.08, + "expected_delivery": { + "$date": "2025-05-11T19:08:46.744Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.238Z" + } + }, + { + "order_id": "1d14442f-54d6-489b-baf3-24f1579c82c4", + "customer": { + "customer_id": "bd1d468e-afd1-45aa-8181-9a76a01e6e5a", + "name": "Kari Miller", + "email": "ssmith@example.com", + "phone": "718-841-6680x67130", + "address": { + "street": "737 Lopez Grove Suite 787", + "city": "Bellburgh", + "state": "Nevada", + "zip": "60386", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T19:27:37.250Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 125.66, + "subtotal": 125.66 + }, + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 127.52, + "subtotal": 127.52 + } + ], + "total_price": 253.18, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 9.9, + "expected_delivery": { + "$date": "2025-05-20T19:27:37.250Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.239Z" + } + }, + { + "order_id": "e02ba7ee-f253-4436-86ce-8c4b06a926b4", + "customer": { + "customer_id": "dbef9f72-0bdb-4d0b-93f6-9a65bc238bd2", + "name": "Christine Donaldson", + "email": "joseph79@example.com", + "phone": "(974)234-3455x67880", + "address": { + "street": "44314 Sanders Park", + "city": "Lake Monicaburgh", + "state": "North Carolina", + "zip": "89443", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T18:08:50.861Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 103.82, + "subtotal": 103.82 + } + ], + "total_price": 103.82, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 19.28, + "expected_delivery": { + "$date": "2025-05-13T18:08:50.861Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.239Z" + } + }, + { + "order_id": "19223900-4ff6-47c8-a16e-af190738db15", + "customer": { + "customer_id": "1f5d86c6-44ba-4eb9-8746-cf8be2a1fcce", + "name": "Jennifer Vaughan", + "email": "whitejill@example.org", + "phone": "362.277.6557x642", + "address": { + "street": "514 Thompson Manors", + "city": "West Amandaberg", + "state": "South Dakota", + "zip": "29188", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T11:40:25.766Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 150.43, + "subtotal": 300.86 + } + ], + "total_price": 300.86, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 5.44, + "expected_delivery": { + "$date": "2025-05-17T11:40:25.766Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.239Z" + } + }, + { + "order_id": "479af3c7-b1c2-40dd-a157-8d66d2a0ea93", + "customer": { + "customer_id": "63e2ad41-c0a7-40cd-87c2-85d009edb64c", + "name": "Paula Collier", + "email": "ikemp@example.com", + "phone": "424-627-6865x14220", + "address": { + "street": "925 Kelly Loaf", + "city": "New Karinafort", + "state": "Louisiana", + "zip": "71724", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T15:03:57.953Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 2, + "unit_price": 109.07, + "subtotal": 218.14 + }, + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 1, + "unit_price": 70.37, + "subtotal": 70.37 + } + ], + "total_price": 288.51, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 11.49, + "expected_delivery": { + "$date": "2025-05-17T15:03:57.953Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.239Z" + } + }, + { + "order_id": "41bc27fe-b798-4664-93bc-18f35cecf6c2", + "customer": { + "customer_id": "2e4b72de-165e-4abe-8d28-77a0e50c8a57", + "name": "Mary Fowler", + "email": "christophercastro@example.com", + "phone": "815.680.5148x75395", + "address": { + "street": "390 Caldwell Extension Apt. 102", + "city": "Dodsonland", + "state": "Vermont", + "zip": "61509", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T18:23:51.310Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 133.83, + "subtotal": 133.83 + }, + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 105.67, + "subtotal": 105.67 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 104.0, + "subtotal": 104.0 + } + ], + "total_price": 343.5, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 10.48, + "expected_delivery": { + "$date": "2025-05-19T18:23:51.310Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.239Z" + } + }, + { + "order_id": "48d7ace0-eca2-4c2a-92fc-8e7f6465b505", + "customer": { + "customer_id": "a9fee7c5-04a6-4a45-8b8f-faf3391d6a48", + "name": "Brian Jones", + "email": "nathan17@example.org", + "phone": "8298433406", + "address": { + "street": "95756 Schroeder Drive", + "city": "East Tyler", + "state": "Alaska", + "zip": "38850", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T01:58:56.958Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 63.53, + "subtotal": 63.53 + }, + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 162.39, + "subtotal": 324.78 + } + ], + "total_price": 388.31, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 19.09, + "expected_delivery": { + "$date": "2025-05-13T01:58:56.958Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.240Z" + } + }, + { + "order_id": "2d83fb50-24fd-4792-9f63-dae8eb367d76", + "customer": { + "customer_id": "8efbb6d6-d61f-4038-b04f-2522268386d5", + "name": "Gregory Rodgers", + "email": "eturner@example.org", + "phone": "001-288-605-4711x266", + "address": { + "street": "61562 Palmer Trail Suite 345", + "city": "East Kenneth", + "state": "South Carolina", + "zip": "31183", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T06:06:36.678Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 92.54, + "subtotal": 185.08 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 136.2, + "subtotal": 272.4 + }, + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 77.7, + "subtotal": 155.4 + } + ], + "total_price": 612.88, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 8.79, + "expected_delivery": { + "$date": "2025-05-15T06:06:36.678Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.240Z" + } + }, + { + "order_id": "630e5049-1c1b-499e-ab43-4b7ec7b01d76", + "customer": { + "customer_id": "b30c16bc-88f2-4766-ad18-ce83e5f4ac49", + "name": "Kayla Cross", + "email": "nelsondestiny@example.org", + "phone": "484-307-5353x41296", + "address": { + "street": "610 William Ridge", + "city": "Frazierborough", + "state": "Rhode Island", + "zip": "11752", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T11:55:54.442Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 2, + "unit_price": 145.63, + "subtotal": 291.26 + }, + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 70.43, + "subtotal": 70.43 + } + ], + "total_price": 361.69, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 7.91, + "expected_delivery": { + "$date": "2025-05-15T11:55:54.442Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.240Z" + } + }, + { + "order_id": "66640473-5fce-4982-8581-206e7a7ded03", + "customer": { + "customer_id": "c9137a92-939c-47c6-b59e-f50a9ee1e695", + "name": "Nancy Whitaker", + "email": "alicia42@example.com", + "phone": "(926)529-3052x62887", + "address": { + "street": "8223 Moreno Street Suite 594", + "city": "West Lauren", + "state": "Tennessee", + "zip": "81763", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T00:13:06.216Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 156.55, + "subtotal": 156.55 + } + ], + "total_price": 156.55, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 14.79, + "expected_delivery": { + "$date": "2025-05-11T00:13:06.216Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.240Z" + } + }, + { + "order_id": "61312134-bc96-47e7-bf47-cbfe6d767824", + "customer": { + "customer_id": "627f201d-e21b-4679-833c-f8d777e72554", + "name": "Meghan Avila", + "email": "laurabolton@example.org", + "phone": "721-316-9500x911", + "address": { + "street": "638 Shannon Extensions", + "city": "New Susanton", + "state": "Hawaii", + "zip": "98279", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T04:12:59.297Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 141.56, + "subtotal": 283.12 + } + ], + "total_price": 283.12, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 10.07, + "expected_delivery": { + "$date": "2025-05-14T04:12:59.297Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.241Z" + } + }, + { + "order_id": "53149921-2d2b-46eb-b816-e3718d0c8e43", + "customer": { + "customer_id": "3bf2ff68-b197-4592-a55f-ac69aaa89d47", + "name": "Joan Hicks", + "email": "christinecarter@example.org", + "phone": "001-616-865-0901x162", + "address": { + "street": "67682 Ball Station Suite 033", + "city": "Tammymouth", + "state": "Wisconsin", + "zip": "04695", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T20:36:18.613Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 89.59, + "subtotal": 89.59 + }, + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 87.85, + "subtotal": 175.7 + } + ], + "total_price": 265.29, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 11.51, + "expected_delivery": { + "$date": "2025-05-22T20:36:18.613Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.241Z" + } + }, + { + "order_id": "ac1a29f1-42f6-4c36-86ef-bc821a1ea59f", + "customer": { + "customer_id": "91b4fda2-1ae6-4f91-b2d5-e42322e0239b", + "name": "Heather White", + "email": "amy20@example.net", + "phone": "3488547552", + "address": { + "street": "9077 Martin Keys Apt. 006", + "city": "Alexanderport", + "state": "Arizona", + "zip": "98791", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T10:09:29.270Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 2, + "unit_price": 67.27, + "subtotal": 134.54 + } + ], + "total_price": 134.54, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 17.92, + "expected_delivery": { + "$date": "2025-05-18T10:09:29.270Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.241Z" + } + }, + { + "order_id": "86b07884-a956-460a-a4c3-e78f22a84099", + "customer": { + "customer_id": "e992f0bb-aa50-42ca-af78-5b7ec298d137", + "name": "Scott Marsh", + "email": "diana89@example.org", + "phone": "001-559-430-1150x607", + "address": { + "street": "70055 Andrews Park", + "city": "Tylerberg", + "state": "South Carolina", + "zip": "96897", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T13:32:57.080Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 82.02, + "subtotal": 82.02 + }, + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 167.2, + "subtotal": 334.4 + } + ], + "total_price": 416.42, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 15.59, + "expected_delivery": { + "$date": "2025-05-18T13:32:57.080Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.241Z" + } + }, + { + "order_id": "a16cae1b-72e7-40e4-bb55-16b2d1cc8077", + "customer": { + "customer_id": "8411e6e7-927c-4647-ad21-b158fdb2e6b3", + "name": "Michael Martin", + "email": "elizabeth45@example.org", + "phone": "455-914-7151", + "address": { + "street": "606 Scott Field", + "city": "Daughertychester", + "state": "Montana", + "zip": "15857", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T17:20:18.445Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 178.79, + "subtotal": 178.79 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 178.27, + "subtotal": 356.54 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 127.55, + "subtotal": 255.1 + } + ], + "total_price": 790.43, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 5.26, + "expected_delivery": { + "$date": "2025-05-13T17:20:18.445Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.241Z" + } + }, + { + "order_id": "b5c5e46e-31e3-489a-b9ee-43ccfc9e1989", + "customer": { + "customer_id": "47bc6f39-1da2-438b-822a-0b80912ec5bb", + "name": "Bonnie Norman", + "email": "brucecox@example.net", + "phone": "425.712.3259", + "address": { + "street": "42976 George Way Suite 727", + "city": "Velezmouth", + "state": "Idaho", + "zip": "33529", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T08:36:54.019Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 96.45, + "subtotal": 192.9 + } + ], + "total_price": 192.9, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 17.9, + "expected_delivery": { + "$date": "2025-05-20T08:36:54.019Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.242Z" + } + }, + { + "order_id": "643150c0-89e8-457c-8405-abbd3b76e75d", + "customer": { + "customer_id": "75893bfc-635d-42dc-a9c5-2d343d15ff6f", + "name": "Kelly Harmon", + "email": "atkinscraig@example.net", + "phone": "617-349-0881x6154", + "address": { + "street": "3325 Young Landing", + "city": "Darylfort", + "state": "Oklahoma", + "zip": "02737", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T20:15:57.693Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 63.07, + "subtotal": 63.07 + }, + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 2, + "unit_price": 123.25, + "subtotal": 246.5 + } + ], + "total_price": 309.57, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 8.43, + "expected_delivery": { + "$date": "2025-05-10T20:15:57.693Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.242Z" + } + }, + { + "order_id": "a145a21e-493c-4db0-9698-ef001799307a", + "customer": { + "customer_id": "8340ba35-0347-463d-a735-460779c7c31c", + "name": "Erica Strong", + "email": "manderson@example.com", + "phone": "(444)496-2549x9292", + "address": { + "street": "981 Webb Vista Suite 672", + "city": "Kirbyview", + "state": "Louisiana", + "zip": "81658", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T03:53:56.079Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 108.79, + "subtotal": 217.58 + }, + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 115.2, + "subtotal": 115.2 + }, + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 101.08, + "subtotal": 101.08 + } + ], + "total_price": 433.86, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 6.73, + "expected_delivery": { + "$date": "2025-05-16T03:53:56.079Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.242Z" + } + }, + { + "order_id": "b31454db-d6ae-4b0b-bf9a-df81c3f57281", + "customer": { + "customer_id": "af7e86b8-ef89-4201-8ae4-d6aeb27b44c0", + "name": "James Acevedo", + "email": "cody06@example.net", + "phone": "257-759-2116", + "address": { + "street": "9942 Jacobs Estates Apt. 669", + "city": "Oconnortown", + "state": "West Virginia", + "zip": "62211", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T10:38:47.639Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 99.12, + "subtotal": 198.24 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 92.55, + "subtotal": 185.1 + } + ], + "total_price": 383.34, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 17.79, + "expected_delivery": { + "$date": "2025-05-18T10:38:47.639Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.242Z" + } + }, + { + "order_id": "08b25990-3d6a-469d-b845-1cb9a1586f0f", + "customer": { + "customer_id": "b774439b-f29f-4e4d-9f26-d49a467ad643", + "name": "Louis Jordan", + "email": "troycamacho@example.net", + "phone": "(935)525-1854", + "address": { + "street": "51795 Michael Roads Suite 699", + "city": "Port Raymondstad", + "state": "Minnesota", + "zip": "67848", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T11:05:04.957Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 1, + "unit_price": 107.8, + "subtotal": 107.8 + } + ], + "total_price": 107.8, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 18.98, + "expected_delivery": { + "$date": "2025-05-11T11:05:04.957Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.243Z" + } + }, + { + "order_id": "904921a0-dbd0-4a3d-a235-90b175a3170a", + "customer": { + "customer_id": "4c553c45-e90c-4d06-9a03-83321cf25026", + "name": "Amanda Banks", + "email": "kyleknight@example.net", + "phone": "(796)499-0257x038", + "address": { + "street": "2776 Jacob Circle Suite 722", + "city": "North Nicholas", + "state": "Alabama", + "zip": "27033", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T10:01:05.150Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 112.77, + "subtotal": 112.77 + }, + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 161.3, + "subtotal": 161.3 + } + ], + "total_price": 274.07, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 14.46, + "expected_delivery": { + "$date": "2025-05-15T10:01:05.150Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.243Z" + } + }, + { + "order_id": "9fb98dff-be62-4807-99e9-893b86767e20", + "customer": { + "customer_id": "ce6cf6e9-22cb-437b-bedd-52eecec48d81", + "name": "Mr. Logan Chase", + "email": "samuel38@example.net", + "phone": "(403)254-0713", + "address": { + "street": "96111 Gallegos Wells Apt. 374", + "city": "East Jamesview", + "state": "Alaska", + "zip": "23375", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T10:02:46.693Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 91.95, + "subtotal": 91.95 + }, + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 171.67, + "subtotal": 171.67 + } + ], + "total_price": 263.62, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 16.56, + "expected_delivery": { + "$date": "2025-05-19T10:02:46.693Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.243Z" + } + }, + { + "order_id": "64ad4c0f-afe6-444f-832f-f5ce4602a02b", + "customer": { + "customer_id": "18dca36f-a9c9-460c-b4d7-649516b245f7", + "name": "Ashley Miller", + "email": "steven15@example.org", + "phone": "+1-780-700-9279x37105", + "address": { + "street": "517 James Forest Suite 523", + "city": "Serranoland", + "state": "Ohio", + "zip": "94559", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T02:53:14.148Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 148.21, + "subtotal": 148.21 + } + ], + "total_price": 148.21, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 5.1, + "expected_delivery": { + "$date": "2025-05-17T02:53:14.148Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.243Z" + } + }, + { + "order_id": "90a2dfa9-7dc6-4f5b-8e23-a8bd15727ea7", + "customer": { + "customer_id": "8f8a8e44-13d6-4061-b779-467e001bbfe7", + "name": "Timothy Hughes", + "email": "allison44@example.org", + "phone": "(724)316-7504x71362", + "address": { + "street": "45759 Riddle Trail", + "city": "South Timside", + "state": "New Mexico", + "zip": "77676", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T20:38:08.272Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 82.17, + "subtotal": 164.34 + } + ], + "total_price": 164.34, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 12.45, + "expected_delivery": { + "$date": "2025-05-15T20:38:08.272Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.243Z" + } + }, + { + "order_id": "6bd5563d-7f2c-4913-92c0-3471c0cfd668", + "customer": { + "customer_id": "0bc75d21-c904-4fc0-9ae3-6e92ffec6cbf", + "name": "David Salazar", + "email": "allenanna@example.com", + "phone": "755.574.2218", + "address": { + "street": "8074 Burns Union Apt. 622", + "city": "Michelleside", + "state": "Utah", + "zip": "33259", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T07:09:04.097Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 127.14, + "subtotal": 127.14 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 99.7, + "subtotal": 199.4 + } + ], + "total_price": 326.54, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 5.83, + "expected_delivery": { + "$date": "2025-05-21T07:09:04.097Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.244Z" + } + }, + { + "order_id": "46183e87-0f4f-48a4-977a-abdf48331eb1", + "customer": { + "customer_id": "e86457a6-72bb-4c40-829b-a27d3793aec7", + "name": "Terry Nelson DVM", + "email": "jacqueline35@example.org", + "phone": "739.527.2593x66060", + "address": { + "street": "3270 Karen Trafficway Suite 016", + "city": "Garyshire", + "state": "North Carolina", + "zip": "68015", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T14:31:26.735Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 171.56, + "subtotal": 343.12 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 115.97, + "subtotal": 115.97 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 61.82, + "subtotal": 123.64 + } + ], + "total_price": 582.73, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 7.9, + "expected_delivery": { + "$date": "2025-05-19T14:31:26.735Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.244Z" + } + }, + { + "order_id": "e940bc6d-52e5-4f9b-8dcb-27e4550c8627", + "customer": { + "customer_id": "8b61d8d1-fdf6-46ea-9aca-809732da4972", + "name": "Cody Sawyer", + "email": "mindyflores@example.com", + "phone": "(259)640-0857x1437", + "address": { + "street": "5076 Dalton Greens", + "city": "Michaelville", + "state": "Arizona", + "zip": "63890", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T07:33:16.288Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 72.12, + "subtotal": 72.12 + }, + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 66.05, + "subtotal": 132.1 + }, + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 113.36, + "subtotal": 113.36 + } + ], + "total_price": 317.58, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 11.8, + "expected_delivery": { + "$date": "2025-05-19T07:33:16.288Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.244Z" + } + }, + { + "order_id": "bc1c1fe4-3da3-4dc5-ae59-860301c33b2d", + "customer": { + "customer_id": "31bcf8cc-e588-48f9-b59c-df0e8da0b998", + "name": "Tara Simpson", + "email": "shaneromero@example.com", + "phone": "001-663-436-6769x2337", + "address": { + "street": "29123 Smith Wall Suite 753", + "city": "Stephaniemouth", + "state": "Maine", + "zip": "81449", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T02:26:01.446Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 132.98, + "subtotal": 265.96 + }, + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 131.57, + "subtotal": 131.57 + } + ], + "total_price": 397.53, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 8.24, + "expected_delivery": { + "$date": "2025-05-17T02:26:01.446Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.244Z" + } + }, + { + "order_id": "c9b55051-f634-4555-ba92-374afa9bf0f4", + "customer": { + "customer_id": "ae1eb7f0-7a43-4d0d-85b2-2acb1c8c63f3", + "name": "Jonathan Jones", + "email": "itaylor@example.com", + "phone": "001-304-858-2385x4201", + "address": { + "street": "858 Victor Track Apt. 064", + "city": "Santosside", + "state": "Illinois", + "zip": "68116", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T04:09:55.431Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 109.92, + "subtotal": 109.92 + } + ], + "total_price": 109.92, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 15.39, + "expected_delivery": { + "$date": "2025-05-19T04:09:55.431Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.245Z" + } + }, + { + "order_id": "29b21177-1541-4a42-942c-ba599176662c", + "customer": { + "customer_id": "4cb88e8a-0589-4f12-9943-ef73bd24b5af", + "name": "Kristin Martin", + "email": "beasleymary@example.net", + "phone": "001-256-372-5541x66730", + "address": { + "street": "06742 Green Ranch Apt. 384", + "city": "Mccormickmouth", + "state": "Mississippi", + "zip": "75062", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T19:15:23.183Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 79.53, + "subtotal": 159.06 + } + ], + "total_price": 159.06, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 8.5, + "expected_delivery": { + "$date": "2025-05-18T19:15:23.183Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.245Z" + } + }, + { + "order_id": "4bbd4ef8-3149-41c8-9a3c-cbd89f55f371", + "customer": { + "customer_id": "532f3eca-1ee3-4c93-8954-b1948c979b3d", + "name": "Carmen Garcia", + "email": "grobinson@example.org", + "phone": "5268318689", + "address": { + "street": "673 Waller Ville Apt. 718", + "city": "Port Carolineberg", + "state": "Oklahoma", + "zip": "84023", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T02:51:31.624Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 88.66, + "subtotal": 177.32 + } + ], + "total_price": 177.32, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 6.61, + "expected_delivery": { + "$date": "2025-05-21T02:51:31.624Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.245Z" + } + }, + { + "order_id": "a9bf466e-11e9-43e7-b5aa-48e6d621a4f6", + "customer": { + "customer_id": "eaa8330e-1dd0-4eb7-80da-3f57504fa6d5", + "name": "Daniel Herrera", + "email": "scottcharles@example.net", + "phone": "(439)517-8529", + "address": { + "street": "8730 Jamie Flat", + "city": "Christianburgh", + "state": "New Jersey", + "zip": "86715", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T22:28:57.421Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 145.35, + "subtotal": 290.7 + }, + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 72.79, + "subtotal": 72.79 + }, + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 66.74, + "subtotal": 66.74 + } + ], + "total_price": 430.23, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 12.86, + "expected_delivery": { + "$date": "2025-05-11T22:28:57.421Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.245Z" + } + }, + { + "order_id": "c44b8d75-1f51-4dba-8d09-f573b4247afa", + "customer": { + "customer_id": "f4efe33a-5ed4-40ad-a415-55c8f47f712b", + "name": "Madeline Romero", + "email": "stanley92@example.com", + "phone": "(650)277-4501x6778", + "address": { + "street": "9939 Thomas Islands Suite 038", + "city": "East Matthewmouth", + "state": "Tennessee", + "zip": "35080", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T10:59:57.722Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 88.54, + "subtotal": 88.54 + }, + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 87.92, + "subtotal": 175.84 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 76.6, + "subtotal": 76.6 + } + ], + "total_price": 340.98, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 10.35, + "expected_delivery": { + "$date": "2025-05-12T10:59:57.722Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.246Z" + } + }, + { + "order_id": "a7c83954-2115-484a-844b-7435a51b70c1", + "customer": { + "customer_id": "e0a6ad6c-c859-49cf-9a6c-7d027b1f9709", + "name": "Christopher Moreno", + "email": "tiffany84@example.com", + "phone": "+1-359-970-2598", + "address": { + "street": "54320 Kimberly Drive Apt. 943", + "city": "Meaganburgh", + "state": "New Jersey", + "zip": "13866", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T01:08:05.825Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 2, + "unit_price": 97.26, + "subtotal": 194.52 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 1, + "unit_price": 174.54, + "subtotal": 174.54 + } + ], + "total_price": 369.06, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 19.51, + "expected_delivery": { + "$date": "2025-05-11T01:08:05.825Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.246Z" + } + }, + { + "order_id": "9f267440-57b4-49ae-8539-97b06d9047ac", + "customer": { + "customer_id": "27c2ca21-2097-48e8-afe6-0055c4644f2a", + "name": "Shirley Parker", + "email": "mpreston@example.com", + "phone": "679-591-9943x484", + "address": { + "street": "548 Colleen Unions Apt. 408", + "city": "Reidport", + "state": "South Dakota", + "zip": "31793", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T19:44:14.336Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 1, + "unit_price": 112.3, + "subtotal": 112.3 + }, + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 1, + "unit_price": 67.16, + "subtotal": 67.16 + } + ], + "total_price": 179.46, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 14.39, + "expected_delivery": { + "$date": "2025-05-20T19:44:14.336Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.246Z" + } + }, + { + "order_id": "09d55fb2-c13e-4e14-b571-d31edfc2d395", + "customer": { + "customer_id": "ea2fab9c-7011-4c80-a7dd-3fb185bec470", + "name": "Michael Lynch", + "email": "sheila82@example.com", + "phone": "316.498.2370x207", + "address": { + "street": "1663 Bauer Road", + "city": "Davenportmouth", + "state": "Pennsylvania", + "zip": "06887", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T00:49:27.067Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 2, + "unit_price": 142.22, + "subtotal": 284.44 + } + ], + "total_price": 284.44, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 10.03, + "expected_delivery": { + "$date": "2025-05-22T00:49:27.067Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.246Z" + } + }, + { + "order_id": "0750e682-4289-49f9-ad82-1ecbbd8d9e90", + "customer": { + "customer_id": "43c3e2f1-6403-4758-8d0a-4f193624cecc", + "name": "Carrie Johnson", + "email": "fstein@example.com", + "phone": "001-497-373-2135x22147", + "address": { + "street": "817 Le Points", + "city": "Campbellview", + "state": "South Carolina", + "zip": "52060", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T17:26:30.825Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 96.25, + "subtotal": 192.5 + }, + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 62.77, + "subtotal": 125.54 + } + ], + "total_price": 318.04, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 9.28, + "expected_delivery": { + "$date": "2025-05-14T17:26:30.825Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.247Z" + } + }, + { + "order_id": "088ff1e0-00ff-4813-800b-cdb9acd75f1e", + "customer": { + "customer_id": "139219b8-25af-4765-9074-e352deffb927", + "name": "Kenneth Hughes", + "email": "michelle57@example.org", + "phone": "448.529.3426x843", + "address": { + "street": "70137 Newman Flats Apt. 156", + "city": "Jasonfort", + "state": "Ohio", + "zip": "82595", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T20:31:48.989Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 70.92, + "subtotal": 141.84 + } + ], + "total_price": 141.84, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 19.9, + "expected_delivery": { + "$date": "2025-05-08T20:31:48.989Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.247Z" + } + }, + { + "order_id": "2c88f213-8a7e-47b9-99bd-f64f50805498", + "customer": { + "customer_id": "6ab6d7c9-b1e1-4d7a-be96-9919403bdc57", + "name": "Gary Sullivan", + "email": "pkerr@example.net", + "phone": "456.654.5652x7768", + "address": { + "street": "0305 Jensen Green", + "city": "Port Zacharyville", + "state": "North Carolina", + "zip": "95880", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T19:26:56.002Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 1, + "unit_price": 82.41, + "subtotal": 82.41 + }, + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 166.64, + "subtotal": 333.28 + } + ], + "total_price": 415.69, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 16.42, + "expected_delivery": { + "$date": "2025-05-13T19:26:56.002Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.247Z" + } + }, + { + "order_id": "9e0df6d0-0b0f-4406-877e-6ba4bc5ba875", + "customer": { + "customer_id": "01653c4a-552b-48e7-97fc-0c4cb56e3e67", + "name": "Olivia Baker", + "email": "simmonsmegan@example.com", + "phone": "208.287.2888x52560", + "address": { + "street": "275 Long Loop Suite 621", + "city": "Doyleland", + "state": "Kansas", + "zip": "18644", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T08:05:02.855Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 71.23, + "subtotal": 142.46 + }, + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 1, + "unit_price": 96.86, + "subtotal": 96.86 + } + ], + "total_price": 239.32, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 12.93, + "expected_delivery": { + "$date": "2025-05-22T08:05:02.855Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.247Z" + } + }, + { + "order_id": "4c7e93e7-91c8-4f2a-95b7-e394597da3ff", + "customer": { + "customer_id": "3ae0d17a-2723-4f1a-a2b4-6dda1fe6e7b4", + "name": "James Murray", + "email": "georgemichelle@example.net", + "phone": "001-721-583-0291x030", + "address": { + "street": "68938 Robert Locks", + "city": "Lake Jessica", + "state": "Hawaii", + "zip": "79494", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T00:33:45.994Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 1, + "unit_price": 99.01, + "subtotal": 99.01 + }, + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 116.22, + "subtotal": 232.44 + } + ], + "total_price": 331.45, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 9.33, + "expected_delivery": { + "$date": "2025-05-19T00:33:45.994Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.248Z" + } + }, + { + "order_id": "16f88bae-1b91-4d88-9ad3-29997d769296", + "customer": { + "customer_id": "8e168758-1534-4458-9dd6-8ac3a4b46614", + "name": "Carolyn Wolf", + "email": "zjohnson@example.net", + "phone": "6267954582", + "address": { + "street": "3352 House Cape", + "city": "South Nicole", + "state": "Connecticut", + "zip": "23617", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T23:35:04.038Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 151.49, + "subtotal": 302.98 + }, + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 1, + "unit_price": 128.59, + "subtotal": 128.59 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 1, + "unit_price": 145.17, + "subtotal": 145.17 + } + ], + "total_price": 576.74, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 7.19, + "expected_delivery": { + "$date": "2025-05-19T23:35:04.038Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.248Z" + } + }, + { + "order_id": "6303f479-0cce-48c8-b7e1-0bbb60622c34", + "customer": { + "customer_id": "8dc51cb7-f87d-4417-bf80-e29a8977047d", + "name": "Carlos Washington", + "email": "mckeecynthia@example.net", + "phone": "894.355.5096", + "address": { + "street": "8810 Michael Wall", + "city": "South Andrew", + "state": "Connecticut", + "zip": "81976", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T08:54:46.953Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 155.72, + "subtotal": 155.72 + }, + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 155.58, + "subtotal": 311.16 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 147.22, + "subtotal": 294.44 + } + ], + "total_price": 761.32, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 9.67, + "expected_delivery": { + "$date": "2025-05-09T08:54:46.953Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.248Z" + } + }, + { + "order_id": "c4233023-f4b9-4242-99c0-cd8fb5ae5eeb", + "customer": { + "customer_id": "b0f3e068-5523-4f0b-929f-4574f43f2cef", + "name": "Brian Bryant", + "email": "iwilliams@example.net", + "phone": "695.651.2880x9568", + "address": { + "street": "841 Troy Island Suite 721", + "city": "North Kelseyburgh", + "state": "Colorado", + "zip": "91981", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T05:16:28.587Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 62.36, + "subtotal": 124.72 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 159.82, + "subtotal": 319.64 + } + ], + "total_price": 444.36, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 12.31, + "expected_delivery": { + "$date": "2025-05-15T05:16:28.587Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.248Z" + } + }, + { + "order_id": "3f81abfb-766b-4773-a34a-3826558f2163", + "customer": { + "customer_id": "475cda3b-e860-48cd-981d-a29e7899b44b", + "name": "John Schwartz", + "email": "cvargas@example.org", + "phone": "001-503-975-6368x293", + "address": { + "street": "44535 Jeremiah Place Apt. 447", + "city": "Elizabethview", + "state": "Montana", + "zip": "20490", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T06:24:26.790Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 2, + "unit_price": 98.68, + "subtotal": 197.36 + }, + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 1, + "unit_price": 145.47, + "subtotal": 145.47 + } + ], + "total_price": 342.83, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 19.21, + "expected_delivery": { + "$date": "2025-05-14T06:24:26.790Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.248Z" + } + }, + { + "order_id": "1715d5f4-1966-401a-8aac-dc476676e923", + "customer": { + "customer_id": "59079e02-479d-40da-bea6-a1a692f27c02", + "name": "Brittany Lopez", + "email": "harperkathryn@example.org", + "phone": "+1-311-917-5100x2504", + "address": { + "street": "72723 Thomas Ports Apt. 975", + "city": "Lake Michelleville", + "state": "Connecticut", + "zip": "64293", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T02:30:41.680Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 2, + "unit_price": 98.88, + "subtotal": 197.76 + } + ], + "total_price": 197.76, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 11.96, + "expected_delivery": { + "$date": "2025-05-14T02:30:41.680Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.249Z" + } + }, + { + "order_id": "1b86f29f-9be1-4237-97e1-def5bbec92cd", + "customer": { + "customer_id": "2e32c691-3c31-4196-9bfb-01f7f519d2c3", + "name": "Rebecca Johnson", + "email": "wyattwatkins@example.net", + "phone": "662.744.2532x4784", + "address": { + "street": "81069 Ashley Fork Suite 634", + "city": "Sarahshire", + "state": "New Jersey", + "zip": "74360", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T17:47:17.651Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 63.26, + "subtotal": 126.52 + } + ], + "total_price": 126.52, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 19.7, + "expected_delivery": { + "$date": "2025-05-13T17:47:17.651Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.249Z" + } + }, + { + "order_id": "8ec0522f-1ec0-4954-b181-35d0380604e4", + "customer": { + "customer_id": "384f4fe5-db4b-4b96-88d9-6667d3199b4c", + "name": "Mr. Ralph Cohen", + "email": "rhonda55@example.net", + "phone": "001-881-668-4361x07980", + "address": { + "street": "9273 Pruitt Islands", + "city": "Richardtown", + "state": "South Dakota", + "zip": "37782", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T02:24:07.900Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 87.86, + "subtotal": 175.72 + }, + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 126.81, + "subtotal": 253.62 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 69.45, + "subtotal": 138.9 + } + ], + "total_price": 568.24, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 8.73, + "expected_delivery": { + "$date": "2025-05-16T02:24:07.900Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.249Z" + } + }, + { + "order_id": "52745a6c-3cad-46c8-a8f3-bc1e51d651b7", + "customer": { + "customer_id": "e18c4266-2180-41ec-a4fc-b4ce5a222a64", + "name": "Morgan Shea", + "email": "benjaminbennett@example.com", + "phone": "526-440-8532x1989", + "address": { + "street": "1796 Wright Summit", + "city": "North Susanmouth", + "state": "Wyoming", + "zip": "43776", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T05:11:08.929Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 62.91, + "subtotal": 62.91 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 66.07, + "subtotal": 66.07 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 177.87, + "subtotal": 355.74 + } + ], + "total_price": 484.72, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 18.53, + "expected_delivery": { + "$date": "2025-05-11T05:11:08.929Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.249Z" + } + }, + { + "order_id": "bb312c22-ef9c-4af8-b1e5-d7e0ad4a777a", + "customer": { + "customer_id": "f307cbca-2023-4c27-89d8-942ac9d525c5", + "name": "Robert Nguyen", + "email": "meganalexander@example.com", + "phone": "(906)745-1791", + "address": { + "street": "8608 Cook Fields", + "city": "Lake Karen", + "state": "Montana", + "zip": "80333", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T13:09:30.413Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 1, + "unit_price": 163.78, + "subtotal": 163.78 + }, + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 111.91, + "subtotal": 223.82 + }, + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 117.82, + "subtotal": 117.82 + } + ], + "total_price": 505.42, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 5.35, + "expected_delivery": { + "$date": "2025-05-10T13:09:30.413Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.250Z" + } + }, + { + "order_id": "26869a5d-4ac5-44f0-b9e9-bece478aadfe", + "customer": { + "customer_id": "80fbb5bf-7a6d-4e3e-a1aa-ed67180261fd", + "name": "Ryan Kidd DDS", + "email": "umoses@example.net", + "phone": "+1-346-862-6363x73870", + "address": { + "street": "006 Nicholas Junction Suite 996", + "city": "Harveyville", + "state": "Montana", + "zip": "86002", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T13:00:25.369Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 171.52, + "subtotal": 343.04 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 97.15, + "subtotal": 97.15 + } + ], + "total_price": 440.19, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 12.3, + "expected_delivery": { + "$date": "2025-05-13T13:00:25.369Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.250Z" + } + }, + { + "order_id": "57987a56-0ff9-401c-b679-6150322b0117", + "customer": { + "customer_id": "2e4cba10-9a9d-499c-be59-a8cf8e011082", + "name": "Hannah Price", + "email": "alison03@example.org", + "phone": "(419)352-4531", + "address": { + "street": "621 Phillips Hill", + "city": "Lake Laura", + "state": "Minnesota", + "zip": "38808", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T08:09:47.321Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 2, + "unit_price": 135.0, + "subtotal": 270.0 + } + ], + "total_price": 270.0, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 10.44, + "expected_delivery": { + "$date": "2025-05-12T08:09:47.321Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.250Z" + } + }, + { + "order_id": "f05b18f1-5587-49c0-89ed-064425cc8d70", + "customer": { + "customer_id": "3307e6b0-6759-485d-8b22-24b7fdd27224", + "name": "Priscilla White", + "email": "martinbennett@example.com", + "phone": "+1-839-424-4851x861", + "address": { + "street": "53675 Andre Point Apt. 731", + "city": "Christianton", + "state": "Hawaii", + "zip": "72308", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T22:37:36.860Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 179.66, + "subtotal": 359.32 + }, + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 145.33, + "subtotal": 290.66 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 1, + "unit_price": 65.54, + "subtotal": 65.54 + } + ], + "total_price": 715.52, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 9.5, + "expected_delivery": { + "$date": "2025-05-10T22:37:36.860Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.250Z" + } + }, + { + "order_id": "ece98ea1-e146-4eb6-8d02-b67093c164d3", + "customer": { + "customer_id": "03b36cbb-ca6c-48c5-9a92-8d44f24017a0", + "name": "Traci Smith", + "email": "deborah63@example.org", + "phone": "620-906-4530", + "address": { + "street": "8475 Victoria Cape", + "city": "Ellisbury", + "state": "Vermont", + "zip": "86150", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T10:15:39.284Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 117.56, + "subtotal": 235.12 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 139.16, + "subtotal": 278.32 + } + ], + "total_price": 513.44, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 14.93, + "expected_delivery": { + "$date": "2025-05-15T10:15:39.284Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.251Z" + } + }, + { + "order_id": "d2801985-2cdb-47cc-850f-8ba8bceccc38", + "customer": { + "customer_id": "2f43624f-d633-43c0-8077-628e1b39b493", + "name": "Mary Golden", + "email": "mlane@example.com", + "phone": "+1-768-518-6496x2791", + "address": { + "street": "7714 Meyer Landing", + "city": "North Carrie", + "state": "New York", + "zip": "59278", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T13:49:29.150Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 1, + "unit_price": 107.02, + "subtotal": 107.02 + } + ], + "total_price": 107.02, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 6.26, + "expected_delivery": { + "$date": "2025-05-15T13:49:29.150Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.251Z" + } + }, + { + "order_id": "ce6b1c96-f23e-41ff-a059-dcc65d3ae140", + "customer": { + "customer_id": "07ce308b-7912-43e3-8b83-f2d702b573b8", + "name": "Sandra Turner", + "email": "daniellefinley@example.net", + "phone": "826-389-0516x96715", + "address": { + "street": "93248 Kayla Loop", + "city": "New Sandyfurt", + "state": "Kentucky", + "zip": "59332", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T01:17:36.930Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 63.29, + "subtotal": 63.29 + }, + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 2, + "unit_price": 81.9, + "subtotal": 163.8 + }, + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 119.9, + "subtotal": 119.9 + } + ], + "total_price": 346.99, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 12.39, + "expected_delivery": { + "$date": "2025-05-10T01:17:36.930Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.251Z" + } + }, + { + "order_id": "b325f529-38ad-4c8c-9f77-01ceca919ffd", + "customer": { + "customer_id": "d4fe1afd-c70c-4bf8-8fcf-1666db0f8438", + "name": "Alejandra Smith", + "email": "kirbyjavier@example.com", + "phone": "(822)912-9144", + "address": { + "street": "888 Diaz Hills", + "city": "South Michaelburgh", + "state": "North Carolina", + "zip": "21903", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T05:31:52.147Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 100.69, + "subtotal": 201.38 + } + ], + "total_price": 201.38, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 15.93, + "expected_delivery": { + "$date": "2025-05-19T05:31:52.147Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.251Z" + } + }, + { + "order_id": "77ba6d8a-2bc0-45de-9d8c-7610b6579aa1", + "customer": { + "customer_id": "4e3a8bd3-5736-4192-b4a8-9f6c534bfcb7", + "name": "Jennifer Miller", + "email": "perry98@example.org", + "phone": "(458)774-5792", + "address": { + "street": "14148 Buck Viaduct Suite 735", + "city": "Brownberg", + "state": "Arkansas", + "zip": "89092", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T14:23:11.295Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 124.47, + "subtotal": 248.94 + } + ], + "total_price": 248.94, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 9.24, + "expected_delivery": { + "$date": "2025-05-14T14:23:11.295Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.252Z" + } + }, + { + "order_id": "af4f6f9d-824a-4c06-8220-b6ec7c1b08a0", + "customer": { + "customer_id": "510f9843-edd2-4b60-9127-46bfe870be69", + "name": "Adam Jones", + "email": "jwatson@example.com", + "phone": "233-762-0501x6131", + "address": { + "street": "88311 Shannon Forks Suite 589", + "city": "New Laurenborough", + "state": "New Mexico", + "zip": "19994", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T02:05:18.842Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 124.48, + "subtotal": 248.96 + }, + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 96.62, + "subtotal": 96.62 + } + ], + "total_price": 345.58, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 14.84, + "expected_delivery": { + "$date": "2025-05-12T02:05:18.842Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.252Z" + } + }, + { + "order_id": "a737014a-98bf-46f7-a6f3-c22fd1940146", + "customer": { + "customer_id": "fcb4f952-f1a9-4c05-b585-551a9ca31538", + "name": "Peter Myers", + "email": "lynn20@example.org", + "phone": "001-947-949-5415x875", + "address": { + "street": "20583 Stephens Wall", + "city": "North Seanport", + "state": "Texas", + "zip": "89381", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T09:02:49.709Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 2, + "unit_price": 156.89, + "subtotal": 313.78 + }, + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 106.21, + "subtotal": 106.21 + }, + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 112.14, + "subtotal": 112.14 + } + ], + "total_price": 532.13, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 10.27, + "expected_delivery": { + "$date": "2025-05-08T09:02:49.709Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.252Z" + } + }, + { + "order_id": "70a9d77d-5547-49ad-8985-c40acd80851a", + "customer": { + "customer_id": "e000a8df-7339-4480-8c4a-bc8e8640d1f7", + "name": "Michael Mckenzie", + "email": "amybrewer@example.com", + "phone": "709.211.9900x070", + "address": { + "street": "13435 Cynthia Keys Apt. 128", + "city": "Jonesfort", + "state": "Nevada", + "zip": "44488", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T04:00:06.558Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 1, + "unit_price": 151.78, + "subtotal": 151.78 + }, + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 133.96, + "subtotal": 267.92 + } + ], + "total_price": 419.7, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 13.0, + "expected_delivery": { + "$date": "2025-05-13T04:00:06.558Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.252Z" + } + }, + { + "order_id": "fb619a7f-bee6-4ede-a661-6d68b4326fad", + "customer": { + "customer_id": "f4daefd3-bafb-40e5-8ba7-9bacd46d0a91", + "name": "Wanda Larsen", + "email": "john46@example.com", + "phone": "(309)686-5131x344", + "address": { + "street": "2383 Wong Cliff", + "city": "Michelleberg", + "state": "Florida", + "zip": "88416", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T12:59:38.444Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 1, + "unit_price": 179.07, + "subtotal": 179.07 + } + ], + "total_price": 179.07, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 16.77, + "expected_delivery": { + "$date": "2025-05-10T12:59:38.444Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.252Z" + } + }, + { + "order_id": "cb0573af-9a5f-47fe-9db1-3ebbbc119a1b", + "customer": { + "customer_id": "7215be0c-ab7e-4d84-bb2b-9fa3a89f3114", + "name": "Kayla Campos", + "email": "mramos@example.net", + "phone": "+1-323-866-7673x27411", + "address": { + "street": "46014 Hanson Villages", + "city": "Annborough", + "state": "Georgia", + "zip": "16257", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T08:43:14.995Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 169.86, + "subtotal": 339.72 + }, + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 134.46, + "subtotal": 268.92 + }, + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 174.57, + "subtotal": 349.14 + } + ], + "total_price": 957.78, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 7.76, + "expected_delivery": { + "$date": "2025-05-11T08:43:14.995Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.253Z" + } + }, + { + "order_id": "77794d30-7452-4bba-8bbf-48f7bf19dbaa", + "customer": { + "customer_id": "bbe3c7bb-056c-47b9-9f97-26f567eb293e", + "name": "Karen Salazar", + "email": "kpeterson@example.net", + "phone": "001-209-262-1665x0749", + "address": { + "street": "50104 Walker Extensions Suite 896", + "city": "Troyhaven", + "state": "Maine", + "zip": "33059", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T14:07:20.670Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 61.67, + "subtotal": 61.67 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 104.33, + "subtotal": 104.33 + } + ], + "total_price": 166.0, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 7.77, + "expected_delivery": { + "$date": "2025-05-11T14:07:20.670Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.253Z" + } + }, + { + "order_id": "720b400e-a39c-42b5-ae7e-884c8a41ecc6", + "customer": { + "customer_id": "ebb12ff8-faf8-4003-8129-c81711916d7e", + "name": "Sara Peters", + "email": "coledawn@example.org", + "phone": "847-790-4517x2956", + "address": { + "street": "984 Amanda Club Apt. 635", + "city": "Rhondatown", + "state": "Ohio", + "zip": "25649", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T02:24:56.993Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 144.84, + "subtotal": 144.84 + }, + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 147.91, + "subtotal": 147.91 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 168.47, + "subtotal": 168.47 + } + ], + "total_price": 461.22, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 18.94, + "expected_delivery": { + "$date": "2025-05-14T02:24:56.993Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.253Z" + } + }, + { + "order_id": "5d3a30ae-a40a-4249-aecc-dc426e0b695b", + "customer": { + "customer_id": "f9796096-0347-440d-ade7-d473adedaee2", + "name": "Ruth Odonnell", + "email": "woodsdenise@example.net", + "phone": "(377)251-3642", + "address": { + "street": "0425 Roberts Stream", + "city": "Traceyville", + "state": "Illinois", + "zip": "28563", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T06:50:50.166Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 122.78, + "subtotal": 245.56 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 102.78, + "subtotal": 205.56 + } + ], + "total_price": 451.12, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 13.15, + "expected_delivery": { + "$date": "2025-05-12T06:50:50.166Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.253Z" + } + }, + { + "order_id": "0924d1d6-21f1-4a23-b2fc-a22608cf77b9", + "customer": { + "customer_id": "40131b68-335a-4d72-b51e-0a12f5140c49", + "name": "Eric Miranda", + "email": "christophergraham@example.com", + "phone": "674.550.1418", + "address": { + "street": "9794 Myers Island Apt. 782", + "city": "Debbiehaven", + "state": "Minnesota", + "zip": "83157", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T15:06:18.496Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 2, + "unit_price": 115.14, + "subtotal": 230.28 + } + ], + "total_price": 230.28, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 8.9, + "expected_delivery": { + "$date": "2025-05-20T15:06:18.496Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.254Z" + } + }, + { + "order_id": "0b351030-5c05-4de1-baa3-9d7516ee839c", + "customer": { + "customer_id": "bd16206d-0528-4d87-9a3f-ed3e72891b39", + "name": "Adam Buck", + "email": "timothy28@example.com", + "phone": "776-260-9517x295", + "address": { + "street": "72875 Wendy Corners Apt. 855", + "city": "Lake Kathryn", + "state": "Arkansas", + "zip": "20085", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T04:48:12.909Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 85.48, + "subtotal": 85.48 + } + ], + "total_price": 85.48, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 16.25, + "expected_delivery": { + "$date": "2025-05-14T04:48:12.909Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.254Z" + } + }, + { + "order_id": "4b4e134f-9879-4c46-a467-6a4f23a52129", + "customer": { + "customer_id": "ae560f4f-223a-4505-b7e8-ee083baa0bc5", + "name": "Kathryn Mason", + "email": "tiffany57@example.net", + "phone": "7594475628", + "address": { + "street": "034 Hailey Mount Apt. 085", + "city": "Caldwellmouth", + "state": "Connecticut", + "zip": "27190", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T05:22:17.987Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 104.21, + "subtotal": 104.21 + }, + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 91.92, + "subtotal": 91.92 + } + ], + "total_price": 196.13, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 10.33, + "expected_delivery": { + "$date": "2025-05-14T05:22:17.987Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.254Z" + } + }, + { + "order_id": "cfebbb6a-a074-4863-8fbf-5fd5d5d24bb7", + "customer": { + "customer_id": "a8c7b212-4c5f-47ad-9b01-73b8f0eaa9a3", + "name": "Brandon Moore", + "email": "petersoneric@example.org", + "phone": "(282)620-8456", + "address": { + "street": "074 Joseph Plaza Suite 621", + "city": "Port Monica", + "state": "South Carolina", + "zip": "29469", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T06:37:05.645Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 146.34, + "subtotal": 146.34 + }, + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 177.93, + "subtotal": 177.93 + }, + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 100.1, + "subtotal": 200.2 + } + ], + "total_price": 524.47, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 19.71, + "expected_delivery": { + "$date": "2025-05-21T06:37:05.645Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.254Z" + } + }, + { + "order_id": "0fe0d283-d0e7-461a-bfd3-f79b8ff907f7", + "customer": { + "customer_id": "cfe8fa6b-0322-4bb5-83f2-e564cfd8c3f9", + "name": "Hannah Hall", + "email": "yateschristopher@example.com", + "phone": "+1-461-250-6447x509", + "address": { + "street": "428 Adams Vista", + "city": "South Desireemouth", + "state": "New Jersey", + "zip": "46989", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T02:32:23.765Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 1, + "unit_price": 75.17, + "subtotal": 75.17 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 89.99, + "subtotal": 179.98 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 77.19, + "subtotal": 154.38 + } + ], + "total_price": 409.53, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 7.77, + "expected_delivery": { + "$date": "2025-05-16T02:32:23.765Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.254Z" + } + }, + { + "order_id": "d5259321-376e-4ba1-9be9-acfbfb5443e1", + "customer": { + "customer_id": "5d94ca10-ba55-44ab-a0e7-5e5d8f0014ca", + "name": "Erica Johnson", + "email": "ashley12@example.org", + "phone": "001-246-411-3754x26469", + "address": { + "street": "415 Angela Village Suite 320", + "city": "South Stephaniechester", + "state": "Florida", + "zip": "70389", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T17:37:13.986Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 112.62, + "subtotal": 112.62 + } + ], + "total_price": 112.62, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 6.85, + "expected_delivery": { + "$date": "2025-05-08T17:37:13.986Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.255Z" + } + }, + { + "order_id": "b7ebd67e-5a61-444f-82d7-4ac9ecb3adae", + "customer": { + "customer_id": "0b2f853f-ce83-4298-a279-60b07636ceaf", + "name": "Joseph Price", + "email": "anthonygeorge@example.net", + "phone": "001-408-626-7999x71335", + "address": { + "street": "294 Maria Road", + "city": "West Ryan", + "state": "Kansas", + "zip": "06949", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T02:18:38.073Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 65.28, + "subtotal": 65.28 + }, + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 133.48, + "subtotal": 266.96 + }, + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 106.4, + "subtotal": 212.8 + } + ], + "total_price": 545.04, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 13.67, + "expected_delivery": { + "$date": "2025-05-19T02:18:38.073Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.255Z" + } + }, + { + "order_id": "93505b16-5d0b-4c29-b976-0011bfeeb549", + "customer": { + "customer_id": "c5676f97-dbc1-4448-be19-596a5f9189f7", + "name": "Breanna Barber", + "email": "meghan30@example.net", + "phone": "661-839-3877x670", + "address": { + "street": "269 Maldonado Place Apt. 241", + "city": "East Jeanette", + "state": "Kansas", + "zip": "31918", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T19:55:34.820Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 71.69, + "subtotal": 143.38 + } + ], + "total_price": 143.38, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 15.34, + "expected_delivery": { + "$date": "2025-05-19T19:55:34.820Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.255Z" + } + }, + { + "order_id": "4a77412e-af90-40e1-acdd-b6eb43c03b17", + "customer": { + "customer_id": "5077125e-194d-4fc0-9efe-25e1fe170fc9", + "name": "Dale Keith", + "email": "hawkinsmelinda@example.org", + "phone": "(634)393-9521x852", + "address": { + "street": "765 Carpenter Port Apt. 349", + "city": "Patelborough", + "state": "Ohio", + "zip": "38711", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T16:38:27.901Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 154.72, + "subtotal": 154.72 + } + ], + "total_price": 154.72, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 10.46, + "expected_delivery": { + "$date": "2025-05-21T16:38:27.901Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.255Z" + } + }, + { + "order_id": "ce06bf14-9646-4977-936c-8c147b968098", + "customer": { + "customer_id": "5d55ecca-5f1b-4e45-b513-e73c05361bf1", + "name": "Jennifer Ramos", + "email": "dorothyhuerta@example.org", + "phone": "001-268-575-2828x457", + "address": { + "street": "131 Amanda Islands", + "city": "Susantown", + "state": "North Dakota", + "zip": "05593", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T10:43:34.693Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 137.47, + "subtotal": 274.94 + }, + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 144.83, + "subtotal": 144.83 + } + ], + "total_price": 419.77, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 9.1, + "expected_delivery": { + "$date": "2025-05-14T10:43:34.693Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.256Z" + } + }, + { + "order_id": "fde618f6-9cef-4fb6-bef9-d1731d506051", + "customer": { + "customer_id": "3f5dfe41-e27d-46b9-b520-546f95f20dce", + "name": "Evelyn Weeks", + "email": "nguyenderrick@example.org", + "phone": "001-674-698-3755x8268", + "address": { + "street": "969 Cynthia Valley Suite 611", + "city": "New Shawnshire", + "state": "Alaska", + "zip": "66459", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T01:04:44.323Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 137.53, + "subtotal": 137.53 + } + ], + "total_price": 137.53, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 15.18, + "expected_delivery": { + "$date": "2025-05-17T01:04:44.323Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.256Z" + } + }, + { + "order_id": "95d2c5c5-81dd-485f-bcbf-f0e6e29439e6", + "customer": { + "customer_id": "6e6f363e-3527-4288-8b9c-f64c31fa4fa7", + "name": "Bobby Hall", + "email": "willisjames@example.org", + "phone": "+1-356-662-5577", + "address": { + "street": "34944 Howard Isle Apt. 013", + "city": "Wyattshire", + "state": "Rhode Island", + "zip": "46464", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T11:54:49.581Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 131.36, + "subtotal": 131.36 + }, + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 145.68, + "subtotal": 291.36 + } + ], + "total_price": 422.72, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 14.22, + "expected_delivery": { + "$date": "2025-05-19T11:54:49.581Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.256Z" + } + }, + { + "order_id": "8bec87f1-014d-446c-9587-30d39be06975", + "customer": { + "customer_id": "8fc282b4-1894-452a-89fc-ddcd1427807c", + "name": "Danielle Thomas", + "email": "johncole@example.net", + "phone": "001-336-886-8837x91794", + "address": { + "street": "45449 Brian Village", + "city": "Coxberg", + "state": "Alabama", + "zip": "19418", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T22:23:35.341Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 1, + "unit_price": 168.48, + "subtotal": 168.48 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 95.07, + "subtotal": 190.14 + }, + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 149.89, + "subtotal": 149.89 + } + ], + "total_price": 508.51, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 18.77, + "expected_delivery": { + "$date": "2025-05-18T22:23:35.341Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.256Z" + } + }, + { + "order_id": "63480994-96e5-410d-989f-74add7ba15b6", + "customer": { + "customer_id": "13f6d2ed-893f-4dea-8dab-a662db210b44", + "name": "Jeffrey Brown", + "email": "stewartchristopher@example.net", + "phone": "2616263743", + "address": { + "street": "204 Courtney Fords Suite 247", + "city": "East Anthonystad", + "state": "New Jersey", + "zip": "50489", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T19:45:11.733Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 75.02, + "subtotal": 150.04 + } + ], + "total_price": 150.04, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 8.74, + "expected_delivery": { + "$date": "2025-05-14T19:45:11.733Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.257Z" + } + }, + { + "order_id": "a5bbb355-c812-4d78-91fb-76708e2b15f8", + "customer": { + "customer_id": "7b750025-fe6e-4325-81bd-aaa049152ee7", + "name": "Kevin Scott", + "email": "smitheric@example.net", + "phone": "838.987.2786", + "address": { + "street": "01019 Sanders Views", + "city": "North Wesley", + "state": "Florida", + "zip": "93895", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T20:18:22.499Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 112.7, + "subtotal": 225.4 + } + ], + "total_price": 225.4, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 10.63, + "expected_delivery": { + "$date": "2025-05-11T20:18:22.499Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.257Z" + } + }, + { + "order_id": "341c7971-54d0-4b99-9c8a-45098a26e92a", + "customer": { + "customer_id": "3b183131-bde1-47f6-9504-7082eb56997c", + "name": "Christine Pugh", + "email": "stewartmiranda@example.org", + "phone": "+1-219-298-8689x36533", + "address": { + "street": "01233 Amanda Glens", + "city": "North Robert", + "state": "Connecticut", + "zip": "62051", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T22:59:31.998Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 86.29, + "subtotal": 172.58 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 120.29, + "subtotal": 120.29 + } + ], + "total_price": 292.87, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 6.12, + "expected_delivery": { + "$date": "2025-05-16T22:59:31.998Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.257Z" + } + }, + { + "order_id": "180638f2-0284-4b8d-8931-12e2260c745c", + "customer": { + "customer_id": "69b27245-3fe6-40cb-ab56-91d9fbfb20ec", + "name": "Jerry Mckinney", + "email": "stevensonlisa@example.org", + "phone": "900.304.0809", + "address": { + "street": "354 Chang Village", + "city": "Ortiztown", + "state": "Vermont", + "zip": "50110", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T16:56:39.917Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 133.74, + "subtotal": 133.74 + } + ], + "total_price": 133.74, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 13.29, + "expected_delivery": { + "$date": "2025-05-15T16:56:39.917Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.257Z" + } + }, + { + "order_id": "07d174fe-2730-462f-bc06-affbff564cba", + "customer": { + "customer_id": "fb98cc06-c17e-4708-aa36-27aa49992ec2", + "name": "Anthony Wyatt", + "email": "jacquelinejones@example.com", + "phone": "(958)395-5678x592", + "address": { + "street": "693 Vanessa Street", + "city": "North Joseph", + "state": "Hawaii", + "zip": "23428", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T19:54:50.935Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 98.64, + "subtotal": 98.64 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 147.06, + "subtotal": 294.12 + } + ], + "total_price": 392.76, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 10.4, + "expected_delivery": { + "$date": "2025-05-19T19:54:50.935Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.258Z" + } + }, + { + "order_id": "4cb17cf2-50c4-4fe0-9622-3420ac38607d", + "customer": { + "customer_id": "97e83ee9-cff0-4a98-9b75-35f9f05d0eea", + "name": "Dana Graham", + "email": "clarkchristina@example.net", + "phone": "911.600.8582", + "address": { + "street": "562 Eddie Spur Suite 472", + "city": "North Richardfurt", + "state": "Virginia", + "zip": "71941", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T03:57:23.339Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 163.87, + "subtotal": 327.74 + }, + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 1, + "unit_price": 82.79, + "subtotal": 82.79 + } + ], + "total_price": 410.53, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 16.09, + "expected_delivery": { + "$date": "2025-05-10T03:57:23.339Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.258Z" + } + }, + { + "order_id": "e6a49a51-3345-473a-88d7-e867c3bc756b", + "customer": { + "customer_id": "7761c835-482f-44c6-8e4b-5c56a7b54fd9", + "name": "Christopher Ross", + "email": "qfields@example.net", + "phone": "(493)512-8709x597", + "address": { + "street": "071 Beasley Fork", + "city": "Lesliefort", + "state": "North Carolina", + "zip": "80046", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T17:24:06.537Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 138.29, + "subtotal": 276.58 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 102.97, + "subtotal": 102.97 + } + ], + "total_price": 379.55, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 15.32, + "expected_delivery": { + "$date": "2025-05-18T17:24:06.537Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.258Z" + } + }, + { + "order_id": "2902afe6-366d-4190-aa95-d55db68b3073", + "customer": { + "customer_id": "37c11eae-4af5-4174-ab7a-1f3aeef8d797", + "name": "Victor Lee", + "email": "briggscynthia@example.net", + "phone": "+1-381-248-4746", + "address": { + "street": "9497 Price Green Suite 725", + "city": "Eddieland", + "state": "Wyoming", + "zip": "51820", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T15:14:42.485Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 155.39, + "subtotal": 310.78 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 167.17, + "subtotal": 167.17 + } + ], + "total_price": 477.95, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 15.8, + "expected_delivery": { + "$date": "2025-05-17T15:14:42.485Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.258Z" + } + }, + { + "order_id": "6f3bad3e-cd31-4985-876a-c98bec9ac435", + "customer": { + "customer_id": "0ec2c1ca-36e2-45cc-9282-6a918f78d3b1", + "name": "Sean Diaz", + "email": "nancy69@example.com", + "phone": "899.659.5329", + "address": { + "street": "6416 Mays Prairie", + "city": "Port Cody", + "state": "Wyoming", + "zip": "65203", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T15:19:47.986Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 171.65, + "subtotal": 171.65 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 145.84, + "subtotal": 291.68 + }, + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 135.09, + "subtotal": 135.09 + } + ], + "total_price": 598.42, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 18.16, + "expected_delivery": { + "$date": "2025-05-11T15:19:47.986Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.258Z" + } + }, + { + "order_id": "41b6a0c5-d45d-41e8-90c3-a8b5ee3c6c9d", + "customer": { + "customer_id": "ca64c991-da55-4d2a-993c-1a1eed108970", + "name": "Bryan Morris", + "email": "emilydouglas@example.net", + "phone": "+1-678-689-7178x5616", + "address": { + "street": "95447 Roberts Glen Apt. 060", + "city": "Candicestad", + "state": "Ohio", + "zip": "43884", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T18:25:28.122Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 170.31, + "subtotal": 170.31 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 82.94, + "subtotal": 165.88 + } + ], + "total_price": 336.19, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 13.84, + "expected_delivery": { + "$date": "2025-05-17T18:25:28.122Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.259Z" + } + }, + { + "order_id": "d6b2ec00-6b70-44c7-8bcc-2c614daafbc2", + "customer": { + "customer_id": "2f6feee3-ca12-4d3a-b840-678885d4328a", + "name": "Jonathan Weaver", + "email": "fisherhannah@example.org", + "phone": "+1-271-535-5477", + "address": { + "street": "11099 Dean Hills Suite 389", + "city": "Robertsshire", + "state": "North Dakota", + "zip": "46450", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T03:28:39.696Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 127.46, + "subtotal": 254.92 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 171.8, + "subtotal": 171.8 + } + ], + "total_price": 426.72, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 13.79, + "expected_delivery": { + "$date": "2025-05-10T03:28:39.696Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.259Z" + } + }, + { + "order_id": "8990c335-6611-4e18-b25b-9d40e3dc4307", + "customer": { + "customer_id": "c55354af-2025-421a-8c4c-ac83f0905b28", + "name": "Martha Perry", + "email": "vasquezbianca@example.com", + "phone": "001-945-923-8092x1812", + "address": { + "street": "6024 Hooper Circle", + "city": "Port Kerri", + "state": "Rhode Island", + "zip": "27934", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T09:20:11.065Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 115.36, + "subtotal": 230.72 + } + ], + "total_price": 230.72, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 7.2, + "expected_delivery": { + "$date": "2025-05-13T09:20:11.065Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.259Z" + } + }, + { + "order_id": "27b721e0-cc2a-43a9-8068-a98e09e93f0a", + "customer": { + "customer_id": "80d011a2-3163-4fcc-94c3-afbab9bc2ed9", + "name": "Cynthia Walton", + "email": "zmichael@example.net", + "phone": "817.994.3368x0738", + "address": { + "street": "6659 Fox Fords Suite 661", + "city": "Kellyfurt", + "state": "New Jersey", + "zip": "32622", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T08:43:52.202Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 135.35, + "subtotal": 135.35 + }, + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 171.36, + "subtotal": 171.36 + } + ], + "total_price": 306.71, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 9.9, + "expected_delivery": { + "$date": "2025-05-16T08:43:52.202Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.259Z" + } + }, + { + "order_id": "9da00328-df6c-46ca-b3a2-0620012f4955", + "customer": { + "customer_id": "46964f72-4498-4dcf-85d9-a7f0fb0cbd34", + "name": "Tabitha Erickson", + "email": "ustokes@example.org", + "phone": "(585)520-3312x611", + "address": { + "street": "87807 Cox Streets", + "city": "Lake James", + "state": "Maine", + "zip": "86383", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T22:44:13.752Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 152.85, + "subtotal": 305.7 + }, + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 2, + "unit_price": 119.16, + "subtotal": 238.32 + } + ], + "total_price": 544.02, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 15.26, + "expected_delivery": { + "$date": "2025-05-16T22:44:13.752Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.260Z" + } + }, + { + "order_id": "068e67b3-0f36-4e5e-ba38-ef65390e2984", + "customer": { + "customer_id": "38655ba6-e181-4519-8287-b268b98686f7", + "name": "Mrs. Gwendolyn Lopez", + "email": "grayjessica@example.org", + "phone": "(429)446-2516", + "address": { + "street": "670 Bush Mount", + "city": "Williamsport", + "state": "Colorado", + "zip": "75806", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T08:43:16.764Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 142.47, + "subtotal": 142.47 + }, + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 62.9, + "subtotal": 125.8 + } + ], + "total_price": 268.27, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 15.04, + "expected_delivery": { + "$date": "2025-05-17T08:43:16.764Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.260Z" + } + }, + { + "order_id": "2729499f-3ace-4b4f-a4c7-0a4249dc17d1", + "customer": { + "customer_id": "8f28a0a1-7ea8-402f-a7c6-75fb8296e154", + "name": "Christopher Munoz", + "email": "moodymike@example.com", + "phone": "(800)675-7906", + "address": { + "street": "1130 David Points Suite 374", + "city": "Deborahfort", + "state": "Colorado", + "zip": "26566", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T15:20:11.490Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 175.7, + "subtotal": 175.7 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 170.76, + "subtotal": 170.76 + } + ], + "total_price": 346.46, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 13.15, + "expected_delivery": { + "$date": "2025-05-18T15:20:11.490Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.260Z" + } + }, + { + "order_id": "d3dd3ad6-9542-4de3-87ac-d952a53b6a8c", + "customer": { + "customer_id": "82609a19-5a83-42eb-bfcf-38e458992653", + "name": "Andrew Turner", + "email": "stephanie95@example.com", + "phone": "657.769.7108x03414", + "address": { + "street": "180 Wiley Unions Suite 799", + "city": "North Phillip", + "state": "Nevada", + "zip": "21834", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T16:52:30.955Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 134.12, + "subtotal": 268.24 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 169.41, + "subtotal": 338.82 + }, + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 1, + "unit_price": 115.65, + "subtotal": 115.65 + } + ], + "total_price": 722.71, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 7.66, + "expected_delivery": { + "$date": "2025-05-14T16:52:30.955Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.260Z" + } + }, + { + "order_id": "a345b7b7-1160-4ded-a016-df77efe38e25", + "customer": { + "customer_id": "bfd41ac1-708c-4ebf-b846-9345581052a0", + "name": "Carl Cole", + "email": "marklloyd@example.org", + "phone": "(221)452-1727", + "address": { + "street": "5791 Sara Prairie", + "city": "New Debbieburgh", + "state": "Oregon", + "zip": "57308", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T11:38:36.905Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 167.68, + "subtotal": 335.36 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 118.9, + "subtotal": 237.8 + } + ], + "total_price": 573.16, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 7.88, + "expected_delivery": { + "$date": "2025-05-15T11:38:36.905Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.261Z" + } + }, + { + "order_id": "39d227ae-a39a-479d-a3e1-2920486790a1", + "customer": { + "customer_id": "9461c596-65d7-4489-93ce-ccdecb9075c3", + "name": "Dr. Rodney Le", + "email": "santosglenn@example.net", + "phone": "618-415-6744x339", + "address": { + "street": "144 James Square", + "city": "South Brandonborough", + "state": "Michigan", + "zip": "05772", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T06:11:15.864Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 97.97, + "subtotal": 195.94 + } + ], + "total_price": 195.94, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 5.43, + "expected_delivery": { + "$date": "2025-05-14T06:11:15.864Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.261Z" + } + }, + { + "order_id": "3477e862-0a77-400e-9470-fe93a1bf00d1", + "customer": { + "customer_id": "0cd200d8-5b3a-4c28-b964-7a4873dbe0c8", + "name": "Andrew Tran", + "email": "vmarsh@example.org", + "phone": "489-530-8035x17237", + "address": { + "street": "8166 Chad Manor", + "city": "New Kathrynport", + "state": "Arizona", + "zip": "13849", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T10:38:53.804Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 175.0, + "subtotal": 175.0 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 144.44, + "subtotal": 288.88 + } + ], + "total_price": 463.88, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 11.28, + "expected_delivery": { + "$date": "2025-05-11T10:38:53.804Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.261Z" + } + }, + { + "order_id": "ba77b95d-7344-4cf4-ab1a-3726f30a4b33", + "customer": { + "customer_id": "433de24a-cd80-4a59-9cb9-6c2a8b37878a", + "name": "Julie Young", + "email": "kristen52@example.org", + "phone": "(314)774-7268x5450", + "address": { + "street": "55620 Brittney Course Suite 639", + "city": "Port Douglasberg", + "state": "Massachusetts", + "zip": "44287", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T16:54:33.237Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 167.69, + "subtotal": 335.38 + }, + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 1, + "unit_price": 94.35, + "subtotal": 94.35 + }, + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 165.46, + "subtotal": 330.92 + } + ], + "total_price": 760.65, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 14.14, + "expected_delivery": { + "$date": "2025-05-12T16:54:33.237Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.261Z" + } + }, + { + "order_id": "de599702-038d-4c15-b443-4dbae6b0f1ce", + "customer": { + "customer_id": "77c8565e-b056-4cb9-94cc-f11480ffb9c3", + "name": "Michelle Ramsey", + "email": "james23@example.net", + "phone": "873.385.9169", + "address": { + "street": "1295 Phelps Loaf", + "city": "New Adriana", + "state": "Louisiana", + "zip": "85012", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T04:23:56.260Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 75.27, + "subtotal": 75.27 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 87.01, + "subtotal": 174.02 + }, + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 165.63, + "subtotal": 331.26 + } + ], + "total_price": 580.55, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 7.1, + "expected_delivery": { + "$date": "2025-05-15T04:23:56.260Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.262Z" + } + }, + { + "order_id": "4f4a0aa4-31c0-43bd-99a8-94b31c7d342e", + "customer": { + "customer_id": "b6aff7a4-bfc7-4b72-87d0-a5a7d6e0f251", + "name": "Kelly Thomas", + "email": "laracody@example.net", + "phone": "703-504-4730x485", + "address": { + "street": "5898 Jim Park Apt. 965", + "city": "New Bradleyland", + "state": "Maine", + "zip": "50045", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T02:21:51.279Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 109.98, + "subtotal": 109.98 + }, + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 122.24, + "subtotal": 122.24 + } + ], + "total_price": 232.22, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 7.38, + "expected_delivery": { + "$date": "2025-05-17T02:21:51.279Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.262Z" + } + }, + { + "order_id": "99e4fb5b-ad09-480f-940f-9ddb1948952d", + "customer": { + "customer_id": "ba4fe66b-46ec-4ff9-bee2-fcc8d8b7eecf", + "name": "Sean Smith", + "email": "timothybarry@example.com", + "phone": "331-229-5802", + "address": { + "street": "4410 Wright Locks", + "city": "Port Lisaberg", + "state": "Oklahoma", + "zip": "68601", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T23:27:50.304Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 142.79, + "subtotal": 142.79 + }, + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 102.49, + "subtotal": 102.49 + }, + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 106.01, + "subtotal": 212.02 + } + ], + "total_price": 457.3, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 19.27, + "expected_delivery": { + "$date": "2025-05-12T23:27:50.304Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.262Z" + } + }, + { + "order_id": "e2edb8df-1fa9-4a75-8670-0d0315fb96d8", + "customer": { + "customer_id": "5fd21c98-8cb3-4311-8e7e-1e4dbb193ae8", + "name": "James Lucas", + "email": "imorris@example.com", + "phone": "883-249-2449x3949", + "address": { + "street": "655 Christina Dam", + "city": "Williammouth", + "state": "Arkansas", + "zip": "48978", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T04:58:11.350Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 1, + "unit_price": 132.17, + "subtotal": 132.17 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 1, + "unit_price": 116.85, + "subtotal": 116.85 + }, + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 121.6, + "subtotal": 121.6 + } + ], + "total_price": 370.62, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 9.61, + "expected_delivery": { + "$date": "2025-05-18T04:58:11.350Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.262Z" + } + }, + { + "order_id": "04771cd6-0713-4ec8-8fa8-80e91e7408e6", + "customer": { + "customer_id": "1317b484-3292-465d-b1bd-3b3e0df20f90", + "name": "Stephen Stanley", + "email": "anthonylove@example.com", + "phone": "001-409-327-5320x0774", + "address": { + "street": "13847 Davis Place", + "city": "Mirandaville", + "state": "Mississippi", + "zip": "78168", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T13:29:37.495Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 63.92, + "subtotal": 63.92 + } + ], + "total_price": 63.92, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 16.0, + "expected_delivery": { + "$date": "2025-05-16T13:29:37.495Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.262Z" + } + }, + { + "order_id": "e0a20212-9922-4869-a41e-fd8398982797", + "customer": { + "customer_id": "78292e8a-59b5-405c-bbe8-1095ed8eafdc", + "name": "Ryan Torres", + "email": "lisariley@example.org", + "phone": "(955)659-3977x1028", + "address": { + "street": "44509 Thomas Lock Suite 832", + "city": "Stephanieport", + "state": "Arkansas", + "zip": "89662", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T08:11:10.142Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 93.35, + "subtotal": 186.7 + } + ], + "total_price": 186.7, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 13.31, + "expected_delivery": { + "$date": "2025-05-16T08:11:10.142Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.263Z" + } + }, + { + "order_id": "06f42ff7-fb6a-4277-be34-762bbb480d30", + "customer": { + "customer_id": "8d91b67d-338b-4065-b117-348046316db9", + "name": "Todd Burton", + "email": "leewillie@example.com", + "phone": "+1-895-533-3504x05844", + "address": { + "street": "84175 Allen Overpass Apt. 427", + "city": "West Krystal", + "state": "Idaho", + "zip": "63259", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T05:53:40.153Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 1, + "unit_price": 139.26, + "subtotal": 139.26 + } + ], + "total_price": 139.26, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 19.63, + "expected_delivery": { + "$date": "2025-05-13T05:53:40.153Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.263Z" + } + }, + { + "order_id": "f8418e6b-a7d9-4ddf-8e45-4e5ada007492", + "customer": { + "customer_id": "f4ce364b-e59f-4eb4-8ffa-e004015dff88", + "name": "Valerie Parks", + "email": "kimberly29@example.net", + "phone": "(637)589-9077", + "address": { + "street": "121 Daniel Squares", + "city": "New Christina", + "state": "Texas", + "zip": "93850", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T12:23:19.532Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 1, + "unit_price": 176.78, + "subtotal": 176.78 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 154.57, + "subtotal": 154.57 + } + ], + "total_price": 331.35, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 5.87, + "expected_delivery": { + "$date": "2025-05-12T12:23:19.532Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.263Z" + } + }, + { + "order_id": "20e5b1c5-b567-483c-a40e-b61456361b69", + "customer": { + "customer_id": "02a50833-a1bb-45a6-9539-07ffe8f920d4", + "name": "Jennifer Fleming", + "email": "ndoyle@example.net", + "phone": "890.453.1524x76667", + "address": { + "street": "012 Kara Road", + "city": "Port Holly", + "state": "Louisiana", + "zip": "34749", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T00:19:23.254Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 2, + "unit_price": 90.27, + "subtotal": 180.54 + } + ], + "total_price": 180.54, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 7.48, + "expected_delivery": { + "$date": "2025-05-19T00:19:23.254Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.263Z" + } + }, + { + "order_id": "e58fdbf6-ba0b-441f-ae71-805730121741", + "customer": { + "customer_id": "45199ed6-5d34-40ee-a39e-1d00a959e47c", + "name": "Paula Stewart", + "email": "tylerneal@example.com", + "phone": "001-839-209-7538x87644", + "address": { + "street": "678 Joseph Ville", + "city": "Lake Nicoleborough", + "state": "Tennessee", + "zip": "89031", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T01:22:01.198Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 179.4, + "subtotal": 358.8 + }, + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 160.61, + "subtotal": 160.61 + } + ], + "total_price": 519.41, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 12.95, + "expected_delivery": { + "$date": "2025-05-10T01:22:01.198Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.264Z" + } + }, + { + "order_id": "7b2cc056-4be2-4730-b56d-62ad9cbe0746", + "customer": { + "customer_id": "6b4ffde1-8f5b-47f7-b70d-d78c4d280e4f", + "name": "Jeremy Kelly", + "email": "theodorereid@example.com", + "phone": "481.435.2687", + "address": { + "street": "349 Simmons Rapid", + "city": "South Sharonfort", + "state": "Vermont", + "zip": "18325", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T19:14:25.193Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 126.39, + "subtotal": 126.39 + }, + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 2, + "unit_price": 136.05, + "subtotal": 272.1 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 125.15, + "subtotal": 250.3 + } + ], + "total_price": 648.79, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 15.07, + "expected_delivery": { + "$date": "2025-05-17T19:14:25.193Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.264Z" + } + }, + { + "order_id": "dd0ce539-0532-40c2-bc35-696f2457f1a8", + "customer": { + "customer_id": "8fc097b1-dc26-423e-b056-0fc9d056cd83", + "name": "Brittany Nguyen", + "email": "burchjonathan@example.net", + "phone": "2764132259", + "address": { + "street": "587 Ryan Point Apt. 815", + "city": "East Kimberly", + "state": "North Dakota", + "zip": "30727", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T11:10:18.914Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 2, + "unit_price": 131.05, + "subtotal": 262.1 + }, + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 71.74, + "subtotal": 143.48 + }, + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 73.02, + "subtotal": 146.04 + } + ], + "total_price": 551.62, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 11.55, + "expected_delivery": { + "$date": "2025-05-14T11:10:18.914Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.264Z" + } + }, + { + "order_id": "5cdf9614-53e6-4ab4-a2b3-4d37ac9946c1", + "customer": { + "customer_id": "30728a45-3d18-475a-950b-723677581af0", + "name": "Nathan Mitchell", + "email": "jenniferpalmer@example.net", + "phone": "+1-588-675-8303", + "address": { + "street": "28185 Joshua Shores", + "city": "Olsonfurt", + "state": "New Mexico", + "zip": "36074", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T15:13:54.994Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 139.62, + "subtotal": 139.62 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 127.69, + "subtotal": 255.38 + } + ], + "total_price": 395.0, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 6.48, + "expected_delivery": { + "$date": "2025-05-13T15:13:54.994Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.264Z" + } + }, + { + "order_id": "3b697f69-bbf6-494f-bce4-bd101477ae7e", + "customer": { + "customer_id": "d3004697-aa19-41a9-bf9b-da2bf32d913b", + "name": "Mary Price", + "email": "susanherrera@example.org", + "phone": "001-895-774-5288x55131", + "address": { + "street": "868 Angela Lodge Apt. 928", + "city": "Fullerview", + "state": "Massachusetts", + "zip": "82275", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T11:38:43.057Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 1, + "unit_price": 93.06, + "subtotal": 93.06 + } + ], + "total_price": 93.06, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 7.08, + "expected_delivery": { + "$date": "2025-05-11T11:38:43.057Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.265Z" + } + }, + { + "order_id": "8973589a-00f9-4951-8e1f-3f0038ccf875", + "customer": { + "customer_id": "34a23656-c3a6-4366-b987-4517bc228fa0", + "name": "Caleb Jackson", + "email": "jennifer44@example.net", + "phone": "+1-210-638-1055x8343", + "address": { + "street": "081 Davidson Freeway Suite 359", + "city": "New Lindseyside", + "state": "Missouri", + "zip": "62647", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T23:34:24.442Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 158.73, + "subtotal": 317.46 + } + ], + "total_price": 317.46, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 18.32, + "expected_delivery": { + "$date": "2025-05-15T23:34:24.442Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.265Z" + } + }, + { + "order_id": "33167e21-643c-4275-b914-b66d4227da7e", + "customer": { + "customer_id": "7bf6eb82-230e-4550-b57e-13461c388b06", + "name": "Samantha Riley", + "email": "coxrachel@example.org", + "phone": "721-940-7704x865", + "address": { + "street": "4888 Chelsea Knoll", + "city": "North Anthonyfurt", + "state": "South Carolina", + "zip": "59389", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T18:22:12.044Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 1, + "unit_price": 136.86, + "subtotal": 136.86 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 140.54, + "subtotal": 140.54 + } + ], + "total_price": 277.4, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 17.42, + "expected_delivery": { + "$date": "2025-05-13T18:22:12.044Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.265Z" + } + }, + { + "order_id": "9eeb1670-bd1a-49da-9105-d1f202ebe142", + "customer": { + "customer_id": "92a2f3e0-007b-48ed-b3c6-c7a9129f3a19", + "name": "Laurie Jensen", + "email": "mary45@example.net", + "phone": "+1-795-226-4640x1811", + "address": { + "street": "7840 Alvin Well Suite 457", + "city": "Nataliemouth", + "state": "Louisiana", + "zip": "79878", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T06:05:13.885Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 102.98, + "subtotal": 205.96 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 169.13, + "subtotal": 338.26 + } + ], + "total_price": 544.22, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 14.33, + "expected_delivery": { + "$date": "2025-05-19T06:05:13.885Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.265Z" + } + }, + { + "order_id": "cac9262e-45fc-44c6-a3d2-36c8912f2362", + "customer": { + "customer_id": "ab0c9bb2-8d48-4e2a-9b8e-7ecc06f03c29", + "name": "Patrick Wilson", + "email": "davidferguson@example.net", + "phone": "4853697389", + "address": { + "street": "14949 Joshua Road", + "city": "West Douglasfurt", + "state": "North Carolina", + "zip": "58664", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T10:11:26.995Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 1, + "unit_price": 157.06, + "subtotal": 157.06 + }, + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 114.28, + "subtotal": 114.28 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 171.87, + "subtotal": 343.74 + } + ], + "total_price": 615.08, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 7.33, + "expected_delivery": { + "$date": "2025-05-11T10:11:26.995Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.265Z" + } + }, + { + "order_id": "d7ff53c0-9d9d-49a4-b169-074496599bb4", + "customer": { + "customer_id": "a2e56cb3-7db1-4473-be44-ab321e7e15bd", + "name": "Timothy Evans", + "email": "bdowns@example.net", + "phone": "001-368-972-4471x487", + "address": { + "street": "2866 Jeffery Trail Apt. 245", + "city": "Lake Randallport", + "state": "North Dakota", + "zip": "56706", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T07:45:27.401Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 99.82, + "subtotal": 99.82 + }, + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 127.34, + "subtotal": 254.68 + } + ], + "total_price": 354.5, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 18.42, + "expected_delivery": { + "$date": "2025-05-18T07:45:27.401Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.266Z" + } + }, + { + "order_id": "4aaa1825-d11d-4d9c-8fd4-bb6b58ae23ed", + "customer": { + "customer_id": "e37b5423-b680-41b6-8b58-2de94f515cba", + "name": "David Le", + "email": "dawn93@example.net", + "phone": "571-313-6583", + "address": { + "street": "37612 Powell Parks Suite 158", + "city": "East Gina", + "state": "Texas", + "zip": "79713", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T07:12:37.682Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 163.47, + "subtotal": 326.94 + } + ], + "total_price": 326.94, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 9.08, + "expected_delivery": { + "$date": "2025-05-19T07:12:37.682Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.266Z" + } + }, + { + "order_id": "bae1be70-2a05-41d8-b8dc-ae0d417dc444", + "customer": { + "customer_id": "dd3337a1-d20e-42cd-ac66-0aeab5c2ba96", + "name": "John Bailey", + "email": "alexa67@example.com", + "phone": "7883406511", + "address": { + "street": "3639 Fuller Stream", + "city": "Smithhaven", + "state": "Kansas", + "zip": "10416", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T19:08:54.737Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 2, + "unit_price": 111.13, + "subtotal": 222.26 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 131.03, + "subtotal": 262.06 + }, + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 2, + "unit_price": 135.77, + "subtotal": 271.54 + } + ], + "total_price": 755.86, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 13.94, + "expected_delivery": { + "$date": "2025-05-09T19:08:54.737Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.266Z" + } + }, + { + "order_id": "47135573-ce1f-4644-92db-68e5459ce533", + "customer": { + "customer_id": "037fc7de-cbbb-413b-a9cf-6673cfd41a04", + "name": "Alexis Brooks", + "email": "bauerkimberly@example.com", + "phone": "+1-986-438-1121x23713", + "address": { + "street": "763 Long Vista", + "city": "Lake Douglasland", + "state": "Arizona", + "zip": "74889", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T19:55:02.700Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 159.8, + "subtotal": 159.8 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 76.46, + "subtotal": 152.92 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 67.19, + "subtotal": 67.19 + } + ], + "total_price": 379.91, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 10.97, + "expected_delivery": { + "$date": "2025-05-16T19:55:02.700Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.266Z" + } + }, + { + "order_id": "35d771a8-1518-48d6-9c26-54f9727fbecc", + "customer": { + "customer_id": "cc62cd79-f074-414e-82e8-210912eb85a8", + "name": "Traci Jones", + "email": "craig72@example.net", + "phone": "704-427-1291", + "address": { + "street": "51956 Alexa Flat", + "city": "Kathrynbury", + "state": "Nebraska", + "zip": "70611", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T04:01:30.143Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 159.6, + "subtotal": 319.2 + } + ], + "total_price": 319.2, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 14.62, + "expected_delivery": { + "$date": "2025-05-16T04:01:30.143Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.267Z" + } + }, + { + "order_id": "9eff76fe-5f87-4b09-b353-143e70ea1a4b", + "customer": { + "customer_id": "1e397f54-730b-496e-8931-6e8a49a55391", + "name": "Matthew Maxwell", + "email": "cgillespie@example.net", + "phone": "212-246-5054x1724", + "address": { + "street": "777 Jennifer Via Apt. 116", + "city": "East Jenna", + "state": "Maine", + "zip": "29745", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T18:10:24.409Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 75.49, + "subtotal": 75.49 + }, + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 1, + "unit_price": 157.05, + "subtotal": 157.05 + } + ], + "total_price": 232.54, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 15.99, + "expected_delivery": { + "$date": "2025-05-15T18:10:24.409Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.267Z" + } + }, + { + "order_id": "0bc576cb-b220-4f82-aac5-a31bf10719db", + "customer": { + "customer_id": "e1b64ea3-8596-4394-8520-0417300cf34b", + "name": "Jordan Thompson", + "email": "austincharles@example.org", + "phone": "+1-532-283-1161x5679", + "address": { + "street": "048 Jack Port", + "city": "South James", + "state": "Kansas", + "zip": "15944", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T08:42:23.797Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 121.74, + "subtotal": 121.74 + }, + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 2, + "unit_price": 159.83, + "subtotal": 319.66 + } + ], + "total_price": 441.4, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 9.39, + "expected_delivery": { + "$date": "2025-05-18T08:42:23.797Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.267Z" + } + }, + { + "order_id": "53697509-5937-451d-9371-168965d5aae8", + "customer": { + "customer_id": "acf294ba-2f12-43c3-b67c-93a40c7b40e2", + "name": "Jerry Campbell II", + "email": "anthonyflores@example.com", + "phone": "841.816.3536x33914", + "address": { + "street": "399 Kimberly Locks", + "city": "West Kendra", + "state": "Mississippi", + "zip": "67756", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T04:19:41.048Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 83.72, + "subtotal": 167.44 + } + ], + "total_price": 167.44, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 18.14, + "expected_delivery": { + "$date": "2025-05-16T04:19:41.048Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.267Z" + } + }, + { + "order_id": "ede975d0-d3d6-4641-82e2-96b3e818d9b2", + "customer": { + "customer_id": "d2c92225-278b-49a9-9469-239d4f45f6d7", + "name": "Gina Carpenter", + "email": "dustincole@example.net", + "phone": "219.570.0527", + "address": { + "street": "7287 Scott Mall Suite 451", + "city": "East William", + "state": "Alaska", + "zip": "12176", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T03:55:50.641Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 165.09, + "subtotal": 165.09 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 121.03, + "subtotal": 242.06 + } + ], + "total_price": 407.15, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 17.96, + "expected_delivery": { + "$date": "2025-05-10T03:55:50.641Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.268Z" + } + }, + { + "order_id": "8cb5fdb6-e7e3-4f60-8eed-5277a194bbc4", + "customer": { + "customer_id": "5ac0a3e8-faf2-4865-8d69-fd456dcc6b90", + "name": "David Carey", + "email": "fishermichael@example.net", + "phone": "935.442.8990x247", + "address": { + "street": "44225 Diana Flat Suite 652", + "city": "Huangshire", + "state": "Nevada", + "zip": "82412", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T21:56:25.852Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 91.87, + "subtotal": 183.74 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 120.03, + "subtotal": 120.03 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 137.12, + "subtotal": 274.24 + } + ], + "total_price": 578.01, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 8.52, + "expected_delivery": { + "$date": "2025-05-17T21:56:25.852Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.268Z" + } + }, + { + "order_id": "79f85374-c4aa-4a0f-8f6a-3e0e34a876aa", + "customer": { + "customer_id": "e9f79313-423d-4a73-a73f-e5c2dbb98d8c", + "name": "Stephanie Crawford", + "email": "jamescannon@example.net", + "phone": "001-729-555-7219x921", + "address": { + "street": "60466 Dawn Hill Suite 128", + "city": "Port Tanyachester", + "state": "North Carolina", + "zip": "04038", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T20:46:44.790Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 71.17, + "subtotal": 71.17 + } + ], + "total_price": 71.17, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 10.24, + "expected_delivery": { + "$date": "2025-05-19T20:46:44.790Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.268Z" + } + }, + { + "order_id": "66269831-e1de-4718-9d58-eb2865693849", + "customer": { + "customer_id": "cd3a5a64-c1fe-4965-981c-1b58dd823f90", + "name": "Catherine Smith", + "email": "elijah17@example.net", + "phone": "(367)426-6249", + "address": { + "street": "920 Jennifer Lakes Apt. 836", + "city": "Wilsontown", + "state": "Alaska", + "zip": "56211", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T13:34:40.443Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 143.89, + "subtotal": 287.78 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 124.68, + "subtotal": 249.36 + }, + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 1, + "unit_price": 136.71, + "subtotal": 136.71 + } + ], + "total_price": 673.85, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 18.45, + "expected_delivery": { + "$date": "2025-05-12T13:34:40.443Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.268Z" + } + }, + { + "order_id": "36f28079-5df5-4089-b69c-8f4ce9d99179", + "customer": { + "customer_id": "384f8abd-3672-4ea9-8745-31596bd9105f", + "name": "Joseph Braun", + "email": "robertallen@example.org", + "phone": "+1-772-268-3711x385", + "address": { + "street": "1744 Russell Estates", + "city": "Anthonyberg", + "state": "North Carolina", + "zip": "71845", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T02:51:15.219Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 68.73, + "subtotal": 137.46 + }, + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 1, + "unit_price": 112.6, + "subtotal": 112.6 + } + ], + "total_price": 250.06, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 14.92, + "expected_delivery": { + "$date": "2025-05-12T02:51:15.219Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.268Z" + } + }, + { + "order_id": "529d8716-d917-49ea-81cc-d4d94feb2767", + "customer": { + "customer_id": "58f42d71-0ec6-46ad-867b-bea2e4bb539f", + "name": "Deborah Gonzalez", + "email": "michaelphillips@example.org", + "phone": "001-638-272-5528", + "address": { + "street": "2417 Albert Vista", + "city": "Port Amber", + "state": "Maine", + "zip": "42020", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T17:53:25.138Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 78.63, + "subtotal": 157.26 + } + ], + "total_price": 157.26, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 16.18, + "expected_delivery": { + "$date": "2025-05-14T17:53:25.138Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.269Z" + } + }, + { + "order_id": "3f99f34c-d0ac-46fd-8c23-b1bffb01c5f5", + "customer": { + "customer_id": "346788e5-5056-4a9b-b50e-eba83af7e089", + "name": "Michelle Mccarthy", + "email": "goodwincarrie@example.net", + "phone": "+1-231-271-3505", + "address": { + "street": "901 Denise Fords", + "city": "Hallside", + "state": "Vermont", + "zip": "80064", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T02:42:54.354Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 1, + "unit_price": 125.24, + "subtotal": 125.24 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 107.68, + "subtotal": 107.68 + }, + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 2, + "unit_price": 96.23, + "subtotal": 192.46 + } + ], + "total_price": 425.38, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 19.42, + "expected_delivery": { + "$date": "2025-05-13T02:42:54.354Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.269Z" + } + }, + { + "order_id": "d87d3af2-8199-48f2-b8fc-5c33bf93875e", + "customer": { + "customer_id": "a691aa6c-5023-4b80-9799-62049bd14193", + "name": "Kevin Carter", + "email": "brandonrodriguez@example.com", + "phone": "666.659.5520x53309", + "address": { + "street": "23807 Aguilar Island", + "city": "West Lisaburgh", + "state": "Missouri", + "zip": "09823", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T09:36:38.842Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 170.55, + "subtotal": 341.1 + } + ], + "total_price": 341.1, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 10.13, + "expected_delivery": { + "$date": "2025-05-11T09:36:38.842Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.269Z" + } + }, + { + "order_id": "a69012a8-c5bc-4d3c-bd0d-5b5dda59d5e7", + "customer": { + "customer_id": "d7aba362-9322-41c5-9533-912e708eacb2", + "name": "Justin Howard", + "email": "pattersonpaige@example.org", + "phone": "(555)608-0063x92570", + "address": { + "street": "56619 James Path", + "city": "Lake Marytown", + "state": "Oklahoma", + "zip": "67233", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T16:57:35.579Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 2, + "unit_price": 117.28, + "subtotal": 234.56 + }, + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 167.68, + "subtotal": 167.68 + } + ], + "total_price": 402.24, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 8.91, + "expected_delivery": { + "$date": "2025-05-15T16:57:35.579Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.269Z" + } + }, + { + "order_id": "1950a1b8-38b4-40c7-aa85-1951bbad8c27", + "customer": { + "customer_id": "b1687977-4430-4883-99cf-dfa4bc9027dc", + "name": "Brittany Valdez", + "email": "daniel83@example.net", + "phone": "001-345-210-1320", + "address": { + "street": "33645 Joseph Island Suite 709", + "city": "Valerieland", + "state": "New Hampshire", + "zip": "88629", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T22:17:24.452Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 1, + "unit_price": 88.34, + "subtotal": 88.34 + } + ], + "total_price": 88.34, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 14.11, + "expected_delivery": { + "$date": "2025-05-17T22:17:24.452Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.270Z" + } + }, + { + "order_id": "d8a137b1-0cb5-4e0b-a30e-412855570b92", + "customer": { + "customer_id": "b3afee72-5e6e-4d14-b5d5-7e4393e7c265", + "name": "Jonathan Barrett", + "email": "david42@example.org", + "phone": "207-341-7436", + "address": { + "street": "23399 Stanton Junctions Apt. 271", + "city": "South Erin", + "state": "West Virginia", + "zip": "75867", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T03:48:54.462Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 156.25, + "subtotal": 156.25 + }, + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 1, + "unit_price": 165.17, + "subtotal": 165.17 + } + ], + "total_price": 321.42, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 17.07, + "expected_delivery": { + "$date": "2025-05-15T03:48:54.462Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.270Z" + } + }, + { + "order_id": "41926c73-1cac-4b6c-9f36-51f1a87a0c57", + "customer": { + "customer_id": "1fb516aa-1362-496f-9b37-61ffdeb99fd9", + "name": "Katherine Morgan", + "email": "andersenkrista@example.org", + "phone": "001-905-354-5801x76413", + "address": { + "street": "47051 Philip Isle", + "city": "Suestad", + "state": "West Virginia", + "zip": "63331", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T02:56:37.436Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 72.13, + "subtotal": 144.26 + } + ], + "total_price": 144.26, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 6.55, + "expected_delivery": { + "$date": "2025-05-16T02:56:37.436Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.270Z" + } + }, + { + "order_id": "2eaa2338-f929-4e04-b27e-1a7ba818b655", + "customer": { + "customer_id": "7ac0971b-e649-40f0-8aa6-a9e91443b089", + "name": "Ann Flores", + "email": "hernandezhunter@example.com", + "phone": "001-521-302-0689", + "address": { + "street": "960 Chad Inlet", + "city": "Georgeland", + "state": "South Carolina", + "zip": "93936", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T06:41:23.926Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 106.97, + "subtotal": 106.97 + }, + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 1, + "unit_price": 100.56, + "subtotal": 100.56 + } + ], + "total_price": 207.53, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 17.35, + "expected_delivery": { + "$date": "2025-05-12T06:41:23.926Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.270Z" + } + }, + { + "order_id": "bc358896-7d7d-4407-b44c-f777342a4120", + "customer": { + "customer_id": "db12b17b-3dcb-4604-92b8-403c8f667d21", + "name": "James Jackson", + "email": "murraygloria@example.net", + "phone": "4199496290", + "address": { + "street": "391 Wilkinson Ridges Suite 058", + "city": "Birdland", + "state": "Michigan", + "zip": "08597", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T05:38:18.173Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 137.62, + "subtotal": 137.62 + }, + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 141.68, + "subtotal": 141.68 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 148.97, + "subtotal": 297.94 + } + ], + "total_price": 577.24, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 17.86, + "expected_delivery": { + "$date": "2025-05-20T05:38:18.173Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.271Z" + } + }, + { + "order_id": "94116423-28b2-4c5a-b048-6f631a5528f1", + "customer": { + "customer_id": "e8f3bc91-127f-469b-82e2-0a3fc0f9e7a7", + "name": "Tracey Wilson", + "email": "ryan17@example.org", + "phone": "+1-655-476-8873x830", + "address": { + "street": "2512 Shelley Points Suite 091", + "city": "Brettborough", + "state": "North Carolina", + "zip": "05412", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T09:00:16.721Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 1, + "unit_price": 111.44, + "subtotal": 111.44 + }, + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 89.69, + "subtotal": 89.69 + }, + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 76.21, + "subtotal": 152.42 + } + ], + "total_price": 353.55, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 11.3, + "expected_delivery": { + "$date": "2025-05-17T09:00:16.721Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.271Z" + } + }, + { + "order_id": "484050a8-ac8b-49a6-9eb7-8363f3f5452b", + "customer": { + "customer_id": "171fe4be-8e4d-4717-b00b-bc2e220665a5", + "name": "Connor Wright", + "email": "briannalove@example.com", + "phone": "001-905-636-6777", + "address": { + "street": "048 Benjamin Spur Apt. 962", + "city": "North Kristenside", + "state": "Vermont", + "zip": "90295", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T14:19:36.915Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 128.07, + "subtotal": 128.07 + } + ], + "total_price": 128.07, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 17.19, + "expected_delivery": { + "$date": "2025-05-16T14:19:36.915Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.271Z" + } + }, + { + "order_id": "39d06c0f-f8bd-47ff-8769-c68655b28cd9", + "customer": { + "customer_id": "ff35f342-4626-4307-9226-a1fd892edb54", + "name": "Stephanie Henderson", + "email": "anna96@example.org", + "phone": "3038584227", + "address": { + "street": "3498 Jacqueline Rapids Suite 821", + "city": "Brittanytown", + "state": "Alaska", + "zip": "38424", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T20:41:24.323Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 1, + "unit_price": 103.73, + "subtotal": 103.73 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 115.33, + "subtotal": 115.33 + }, + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 140.17, + "subtotal": 280.34 + } + ], + "total_price": 499.4, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 14.83, + "expected_delivery": { + "$date": "2025-05-18T20:41:24.323Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.271Z" + } + }, + { + "order_id": "64505032-2481-469a-ad98-9cacd4e98576", + "customer": { + "customer_id": "616f3c5b-d583-4085-afa2-262813c325ac", + "name": "Virginia Morales", + "email": "awheeler@example.com", + "phone": "001-824-377-6590x5287", + "address": { + "street": "6920 Harrison Passage", + "city": "Seanfurt", + "state": "Illinois", + "zip": "93481", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T05:18:57.113Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 1, + "unit_price": 85.29, + "subtotal": 85.29 + } + ], + "total_price": 85.29, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 18.87, + "expected_delivery": { + "$date": "2025-05-14T05:18:57.113Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.272Z" + } + }, + { + "order_id": "8e238c1a-fe45-44e3-89fe-dcbba06316f9", + "customer": { + "customer_id": "b6521158-7caf-4ce2-be49-46aefe1c308a", + "name": "Ms. Lisa Long", + "email": "pzamora@example.net", + "phone": "001-493-627-9312x136", + "address": { + "street": "350 Jane Flats", + "city": "Lake Oscarfurt", + "state": "Florida", + "zip": "92397", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T07:12:21.632Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 71.46, + "subtotal": 142.92 + } + ], + "total_price": 142.92, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 10.35, + "expected_delivery": { + "$date": "2025-05-12T07:12:21.632Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.272Z" + } + }, + { + "order_id": "a5b092f0-acbb-461f-bc1a-62c035b8c290", + "customer": { + "customer_id": "b940becf-6e14-4812-8e35-2c2eb648ae4f", + "name": "Kathryn French", + "email": "jasmine28@example.com", + "phone": "232.624.7579", + "address": { + "street": "778 Payne Forks", + "city": "Colonville", + "state": "California", + "zip": "12321", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T07:50:19.232Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 75.93, + "subtotal": 151.86 + }, + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 2, + "unit_price": 178.97, + "subtotal": 357.94 + } + ], + "total_price": 509.8, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 6.47, + "expected_delivery": { + "$date": "2025-05-16T07:50:19.232Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.272Z" + } + }, + { + "order_id": "12522092-7099-4fe6-adb1-a993178dfa6b", + "customer": { + "customer_id": "b4c1c39c-7476-4a58-ae7d-d56859f1d251", + "name": "Joseph Smith", + "email": "pnelson@example.com", + "phone": "324.617.3354x1488", + "address": { + "street": "546 Gerald Pine", + "city": "Johnshire", + "state": "Maryland", + "zip": "74621", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T18:18:00.552Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 172.91, + "subtotal": 345.82 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 70.09, + "subtotal": 70.09 + }, + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 129.66, + "subtotal": 129.66 + } + ], + "total_price": 545.57, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 13.39, + "expected_delivery": { + "$date": "2025-05-17T18:18:00.552Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.272Z" + } + }, + { + "order_id": "c772459c-a7f9-4160-a7b6-35a500cf6cd4", + "customer": { + "customer_id": "e3fc652a-8bcd-437c-9f2e-0189f94d81bc", + "name": "Andrew Pearson", + "email": "qmoyer@example.net", + "phone": "(770)878-5311", + "address": { + "street": "328 Patel Fork", + "city": "New Jessica", + "state": "Vermont", + "zip": "09017", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T17:27:49.631Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 150.43, + "subtotal": 300.86 + }, + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 85.96, + "subtotal": 171.92 + } + ], + "total_price": 472.78, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 17.21, + "expected_delivery": { + "$date": "2025-05-12T17:27:49.631Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.272Z" + } + }, + { + "order_id": "9bebcbbd-42ff-43aa-aeb0-383e3fc71178", + "customer": { + "customer_id": "d784fdca-6294-483f-83e7-3add4d3686eb", + "name": "Mrs. Linda Wagner DDS", + "email": "theresarush@example.net", + "phone": "715.869.8390", + "address": { + "street": "707 Shawn Viaduct", + "city": "Matthewberg", + "state": "Missouri", + "zip": "83938", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T13:39:26.153Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 112.86, + "subtotal": 225.72 + }, + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 176.36, + "subtotal": 176.36 + } + ], + "total_price": 402.08, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 18.95, + "expected_delivery": { + "$date": "2025-05-14T13:39:26.153Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.273Z" + } + }, + { + "order_id": "996b1636-b2c0-45c4-a00c-1d9a3aeab05d", + "customer": { + "customer_id": "532493d7-73df-4d39-b572-ef0cf858e77f", + "name": "Amy Tate", + "email": "owinters@example.net", + "phone": "6414833167", + "address": { + "street": "46975 Mann Motorway", + "city": "North Sheena", + "state": "New York", + "zip": "53435", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T15:26:02.568Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 1, + "unit_price": 155.15, + "subtotal": 155.15 + }, + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 111.83, + "subtotal": 111.83 + }, + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 2, + "unit_price": 112.88, + "subtotal": 225.76 + } + ], + "total_price": 492.74, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 11.65, + "expected_delivery": { + "$date": "2025-05-16T15:26:02.568Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.273Z" + } + }, + { + "order_id": "4cebc3b3-984d-44dd-9176-9f770ea51590", + "customer": { + "customer_id": "91734c6f-7eb4-4799-8d60-8c2ceafd3148", + "name": "Thomas Martin", + "email": "nelsonjasmine@example.org", + "phone": "001-869-386-1810x36204", + "address": { + "street": "6108 Christopher Lodge", + "city": "New Anthonymouth", + "state": "Oklahoma", + "zip": "69941", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T14:01:33.066Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 89.24, + "subtotal": 178.48 + }, + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 89.51, + "subtotal": 179.02 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 63.32, + "subtotal": 63.32 + } + ], + "total_price": 420.82, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 14.77, + "expected_delivery": { + "$date": "2025-05-11T14:01:33.066Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.273Z" + } + }, + { + "order_id": "ecb2161e-3e0e-4f07-ac15-fb7c3fcfbd8a", + "customer": { + "customer_id": "c4ed95cb-3ea5-46e1-90aa-ee04f91bfaf5", + "name": "David Moore", + "email": "wle@example.net", + "phone": "621.814.7535", + "address": { + "street": "4546 Levine Plains", + "city": "New Ashley", + "state": "Indiana", + "zip": "10538", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T07:22:51.663Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 1, + "unit_price": 166.97, + "subtotal": 166.97 + }, + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 92.86, + "subtotal": 185.72 + } + ], + "total_price": 352.69, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 16.8, + "expected_delivery": { + "$date": "2025-05-12T07:22:51.663Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.273Z" + } + }, + { + "order_id": "fb782cdd-e436-4075-948c-65a272fa661e", + "customer": { + "customer_id": "a7e41e08-788d-4a36-a11e-1001e738cf44", + "name": "Derek Horton", + "email": "hchen@example.org", + "phone": "(525)331-4160x8015", + "address": { + "street": "01290 David Forges Apt. 773", + "city": "Davischester", + "state": "Nevada", + "zip": "32527", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T15:10:41.528Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 91.86, + "subtotal": 183.72 + } + ], + "total_price": 183.72, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 11.43, + "expected_delivery": { + "$date": "2025-05-17T15:10:41.528Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.274Z" + } + }, + { + "order_id": "5846f216-94de-4dfd-8e55-ee226e60897c", + "customer": { + "customer_id": "ccf62b00-1aea-4609-87ee-88cc9e312f29", + "name": "Keith Jenkins", + "email": "stephendominguez@example.net", + "phone": "620-319-0865x453", + "address": { + "street": "6304 Smith Point", + "city": "West Jennifer", + "state": "Wyoming", + "zip": "94218", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T23:21:11.518Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 164.96, + "subtotal": 164.96 + }, + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 2, + "unit_price": 91.15, + "subtotal": 182.3 + }, + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 86.45, + "subtotal": 172.9 + } + ], + "total_price": 520.16, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 6.64, + "expected_delivery": { + "$date": "2025-05-08T23:21:11.518Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.274Z" + } + }, + { + "order_id": "0e045b20-ecab-4a12-bcf6-696ce061ed25", + "customer": { + "customer_id": "be02aa45-5972-4bc1-8288-16d692066941", + "name": "Betty Hill", + "email": "haley92@example.net", + "phone": "225-491-3301x271", + "address": { + "street": "25467 Tara Bridge", + "city": "Brownside", + "state": "Kansas", + "zip": "93746", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T10:01:40.233Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 2, + "unit_price": 174.73, + "subtotal": 349.46 + } + ], + "total_price": 349.46, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 5.29, + "expected_delivery": { + "$date": "2025-05-11T10:01:40.233Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.274Z" + } + }, + { + "order_id": "86a57349-c91f-4ea9-a86c-31b9961fc2f4", + "customer": { + "customer_id": "26b2c5c4-67db-467f-91df-dfa502daf801", + "name": "Ryan Harris", + "email": "xsalinas@example.com", + "phone": "7038190569", + "address": { + "street": "3080 Rogers Trail", + "city": "New Chad", + "state": "Georgia", + "zip": "35030", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T21:18:59.700Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 174.5, + "subtotal": 174.5 + }, + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 135.76, + "subtotal": 135.76 + }, + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 2, + "unit_price": 158.54, + "subtotal": 317.08 + } + ], + "total_price": 627.34, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 6.06, + "expected_delivery": { + "$date": "2025-05-13T21:18:59.700Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.274Z" + } + }, + { + "order_id": "32b057e9-a792-4395-a45f-32e88ff1af2b", + "customer": { + "customer_id": "98b7eb08-f221-4976-9011-e1e8158a4d86", + "name": "Terri Martinez", + "email": "lturner@example.net", + "phone": "001-829-325-4079x589", + "address": { + "street": "063 Williams Summit Apt. 870", + "city": "New Wandatown", + "state": "Oklahoma", + "zip": "11967", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T22:03:55.131Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 167.9, + "subtotal": 167.9 + }, + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 2, + "unit_price": 178.78, + "subtotal": 357.56 + }, + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 1, + "unit_price": 158.17, + "subtotal": 158.17 + } + ], + "total_price": 683.63, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 15.14, + "expected_delivery": { + "$date": "2025-05-21T22:03:55.131Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.274Z" + } + }, + { + "order_id": "46f545d8-2cb9-41c4-aa76-66d1bd558c9a", + "customer": { + "customer_id": "2f5fb91b-9ff7-464c-9fc8-abd8c5c5c4c3", + "name": "Cynthia Rasmussen", + "email": "kevinray@example.org", + "phone": "947-502-6655x949", + "address": { + "street": "78509 Miles Oval Apt. 949", + "city": "Gregoryhaven", + "state": "Colorado", + "zip": "11294", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T21:05:12.405Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 92.02, + "subtotal": 184.04 + }, + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 149.02, + "subtotal": 298.04 + }, + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 78.8, + "subtotal": 78.8 + } + ], + "total_price": 560.88, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 8.67, + "expected_delivery": { + "$date": "2025-05-19T21:05:12.405Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.275Z" + } + }, + { + "order_id": "eb297e63-eaff-42b7-b49f-a18c0021f2d8", + "customer": { + "customer_id": "a1a22015-45c7-4fc6-a537-89cb631a8ad3", + "name": "Austin Holt", + "email": "jenniferdennis@example.net", + "phone": "804.999.9956", + "address": { + "street": "60841 Gonzalez Road", + "city": "New Angelaburgh", + "state": "Wisconsin", + "zip": "97248", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T12:18:48.885Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 1, + "unit_price": 147.03, + "subtotal": 147.03 + } + ], + "total_price": 147.03, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 7.17, + "expected_delivery": { + "$date": "2025-05-09T12:18:48.885Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.275Z" + } + }, + { + "order_id": "2b767845-12d4-4cb4-8850-398ed6b1c664", + "customer": { + "customer_id": "1b0981d5-814b-414c-9126-47cbdc69c767", + "name": "Rebecca Lewis", + "email": "schmittelizabeth@example.org", + "phone": "403.800.1032x5604", + "address": { + "street": "90505 Alexander Ridges Suite 094", + "city": "Johnsonview", + "state": "South Carolina", + "zip": "34503", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T09:54:56.811Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 2, + "unit_price": 136.5, + "subtotal": 273.0 + } + ], + "total_price": 273.0, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 7.04, + "expected_delivery": { + "$date": "2025-05-13T09:54:56.811Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.275Z" + } + }, + { + "order_id": "2ca8b2bf-bdd1-4a7a-b219-bdeac5322d5a", + "customer": { + "customer_id": "638a67a1-e852-4f72-a036-48b557a58e4f", + "name": "Melissa Petersen", + "email": "michellestanley@example.org", + "phone": "(952)557-2315x5947", + "address": { + "street": "84235 Connie Lodge Suite 477", + "city": "South Donaldside", + "state": "Arkansas", + "zip": "03323", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T04:23:25.114Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 2, + "unit_price": 98.75, + "subtotal": 197.5 + }, + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 1, + "unit_price": 139.49, + "subtotal": 139.49 + } + ], + "total_price": 336.99, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 15.7, + "expected_delivery": { + "$date": "2025-05-09T04:23:25.114Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.275Z" + } + }, + { + "order_id": "0472638a-27fc-4836-baa4-cdccdd98a45b", + "customer": { + "customer_id": "971c13c2-7a69-407d-a862-fd7593920d4e", + "name": "Molly Franklin", + "email": "klewis@example.net", + "phone": "803-410-8404", + "address": { + "street": "80723 Reed Court", + "city": "North Melindahaven", + "state": "Hawaii", + "zip": "79703", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T23:10:16.448Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 65.52, + "subtotal": 65.52 + } + ], + "total_price": 65.52, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 6.4, + "expected_delivery": { + "$date": "2025-05-14T23:10:16.448Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.276Z" + } + }, + { + "order_id": "7509d2d0-0b84-4bde-b5f8-b2b511374532", + "customer": { + "customer_id": "394f2c56-9e8c-4faa-bc3c-4580a5e0399b", + "name": "Ryan Jensen", + "email": "matthewsaunders@example.net", + "phone": "664.865.6051", + "address": { + "street": "97187 Mark Mission Suite 898", + "city": "East Mary", + "state": "Montana", + "zip": "60022", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T14:30:33.427Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 1, + "unit_price": 141.94, + "subtotal": 141.94 + }, + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 138.84, + "subtotal": 138.84 + }, + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 173.42, + "subtotal": 346.84 + } + ], + "total_price": 627.62, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 12.92, + "expected_delivery": { + "$date": "2025-05-11T14:30:33.427Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.276Z" + } + }, + { + "order_id": "e2c5b97d-c5cd-4103-8ac5-31c946883b8b", + "customer": { + "customer_id": "7fd34f70-8c89-4643-bfa0-0aac6cc68be3", + "name": "Brianna Daniel", + "email": "ericfreeman@example.com", + "phone": "599.714.1262", + "address": { + "street": "10935 Ashley Lakes", + "city": "Brownborough", + "state": "Alabama", + "zip": "34219", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T12:49:29.571Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 64.76, + "subtotal": 129.52 + }, + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 114.02, + "subtotal": 228.04 + } + ], + "total_price": 357.56, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 15.51, + "expected_delivery": { + "$date": "2025-05-17T12:49:29.571Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.276Z" + } + }, + { + "order_id": "57aee1a8-23da-4839-907f-2363219dacf9", + "customer": { + "customer_id": "d446db08-7fb7-4590-bc8d-dda74211d92c", + "name": "Michael Silva", + "email": "ryan45@example.org", + "phone": "778-297-8969", + "address": { + "street": "275 Lee Run Suite 904", + "city": "North Kelli", + "state": "Louisiana", + "zip": "09208", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T12:30:30.656Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 81.56, + "subtotal": 163.12 + }, + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 163.82, + "subtotal": 327.64 + } + ], + "total_price": 490.76, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 9.31, + "expected_delivery": { + "$date": "2025-05-16T12:30:30.656Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.276Z" + } + }, + { + "order_id": "7e8bc9e1-734e-4539-a071-e30c341c3c3f", + "customer": { + "customer_id": "b0383e7d-e909-4368-9c5f-13c81f3129bf", + "name": "Steven Daniels", + "email": "charlespatrick@example.org", + "phone": "4743994328", + "address": { + "street": "9011 Sanchez Club", + "city": "East Barbara", + "state": "Massachusetts", + "zip": "47542", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T11:16:13.830Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 126.61, + "subtotal": 126.61 + }, + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 129.58, + "subtotal": 129.58 + }, + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 118.31, + "subtotal": 236.62 + } + ], + "total_price": 492.81, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 6.43, + "expected_delivery": { + "$date": "2025-05-11T11:16:13.830Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.277Z" + } + }, + { + "order_id": "400906df-7007-469b-9ae8-d3ffdf92b883", + "customer": { + "customer_id": "48acfd03-ab1d-460b-a477-e0fd948f7511", + "name": "Rodney Atkinson", + "email": "jeffery25@example.net", + "phone": "(968)568-0386x1905", + "address": { + "street": "838 Jennifer View Apt. 566", + "city": "Robertstad", + "state": "Texas", + "zip": "43547", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T16:19:29.602Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 144.09, + "subtotal": 144.09 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 70.41, + "subtotal": 140.82 + }, + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 165.85, + "subtotal": 165.85 + } + ], + "total_price": 450.76, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 18.3, + "expected_delivery": { + "$date": "2025-05-12T16:19:29.602Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.277Z" + } + }, + { + "order_id": "d5534fad-2adf-4870-a86a-332ce7daab19", + "customer": { + "customer_id": "a791e8d1-d89c-4290-be69-96fbc9cac887", + "name": "Gabrielle Phillips", + "email": "jessicasmith@example.net", + "phone": "293.666.2715x6249", + "address": { + "street": "61170 Thomas Key", + "city": "East Dale", + "state": "New York", + "zip": "79589", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T06:13:23.353Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 107.51, + "subtotal": 215.02 + }, + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 172.77, + "subtotal": 172.77 + } + ], + "total_price": 387.79, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 13.69, + "expected_delivery": { + "$date": "2025-05-16T06:13:23.353Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.277Z" + } + }, + { + "order_id": "0a82af92-6b12-4969-8038-0794faafb78c", + "customer": { + "customer_id": "41f783a3-4f20-42f8-bb3e-a34bb840eb76", + "name": "Kathy Gonzalez", + "email": "jessica08@example.net", + "phone": "472.781.9607x258", + "address": { + "street": "276 Tanner Prairie Apt. 225", + "city": "Lake Jasonview", + "state": "Ohio", + "zip": "12561", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T07:31:05.951Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 88.7, + "subtotal": 88.7 + } + ], + "total_price": 88.7, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 8.95, + "expected_delivery": { + "$date": "2025-05-13T07:31:05.951Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.277Z" + } + }, + { + "order_id": "bd00ce0c-9544-444e-addb-6021633f20f8", + "customer": { + "customer_id": "3ae23cfb-7974-4868-ad85-597ab0e80abd", + "name": "Connie Stewart", + "email": "ypatterson@example.com", + "phone": "931-585-9744x1015", + "address": { + "street": "65191 Sullivan Trace", + "city": "Sanchezfort", + "state": "California", + "zip": "04358", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T20:53:41.331Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 74.69, + "subtotal": 74.69 + }, + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 102.85, + "subtotal": 205.7 + } + ], + "total_price": 280.39, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 6.98, + "expected_delivery": { + "$date": "2025-05-14T20:53:41.331Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.277Z" + } + }, + { + "order_id": "68fc4c9b-9f40-4ac7-b002-ac19b41f55f5", + "customer": { + "customer_id": "7c5a074f-09e9-4628-ac25-edd3e52ff5b5", + "name": "Jonathan Collins", + "email": "qhunt@example.net", + "phone": "994.344.6383", + "address": { + "street": "717 Simmons Lodge Suite 664", + "city": "Kathleenberg", + "state": "Oklahoma", + "zip": "49966", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T14:35:07.220Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 117.23, + "subtotal": 117.23 + } + ], + "total_price": 117.23, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 6.7, + "expected_delivery": { + "$date": "2025-05-14T14:35:07.220Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.278Z" + } + }, + { + "order_id": "4603b18f-95ca-4121-a0dd-09dc521fe009", + "customer": { + "customer_id": "0d2fa355-d5f8-490b-a783-f44d8bb4ecff", + "name": "Jermaine Miller", + "email": "woodsjessica@example.com", + "phone": "260.996.5168x426", + "address": { + "street": "150 Christopher Loaf", + "city": "Lake Sarahburgh", + "state": "West Virginia", + "zip": "68633", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T09:18:32.661Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 156.27, + "subtotal": 312.54 + }, + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 1, + "unit_price": 85.75, + "subtotal": 85.75 + }, + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 102.29, + "subtotal": 204.58 + } + ], + "total_price": 602.87, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 10.91, + "expected_delivery": { + "$date": "2025-05-17T09:18:32.661Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.278Z" + } + }, + { + "order_id": "b1ca77ac-6d6d-4693-8890-09ddd80a89c5", + "customer": { + "customer_id": "b82cd61a-6e3d-446d-ba43-9687a903c887", + "name": "Bethany Reyes", + "email": "williamsbradley@example.net", + "phone": "+1-670-627-8317", + "address": { + "street": "136 Mccormick Stream Suite 203", + "city": "Bethville", + "state": "New Mexico", + "zip": "09928", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T16:35:51.556Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 144.22, + "subtotal": 144.22 + } + ], + "total_price": 144.22, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 19.11, + "expected_delivery": { + "$date": "2025-05-12T16:35:51.556Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.278Z" + } + }, + { + "order_id": "b34e6732-8982-4950-b904-e96816175326", + "customer": { + "customer_id": "4efc180b-1240-413a-9362-03515ddef874", + "name": "Stephanie Martinez", + "email": "catherine71@example.org", + "phone": "836-849-9451x04208", + "address": { + "street": "4304 Larsen Rapid", + "city": "North Bryanfort", + "state": "Washington", + "zip": "48791", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T21:39:54.758Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 60.82, + "subtotal": 60.82 + }, + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 1, + "unit_price": 171.26, + "subtotal": 171.26 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 140.97, + "subtotal": 281.94 + } + ], + "total_price": 514.02, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 6.34, + "expected_delivery": { + "$date": "2025-05-15T21:39:54.758Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.278Z" + } + }, + { + "order_id": "3c6943ca-1377-4682-bd30-06c53e6fc49b", + "customer": { + "customer_id": "a3b23238-6a15-4f06-ae48-93cfe6131415", + "name": "Jennifer Murphy", + "email": "edurham@example.net", + "phone": "(994)262-6081", + "address": { + "street": "6207 Aaron Ranch", + "city": "Kaitlynton", + "state": "Arkansas", + "zip": "70911", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T03:40:23.896Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 166.46, + "subtotal": 166.46 + } + ], + "total_price": 166.46, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 9.74, + "expected_delivery": { + "$date": "2025-05-21T03:40:23.896Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.279Z" + } + }, + { + "order_id": "525a1746-fd12-4277-9c09-8e8df0f1f8d5", + "customer": { + "customer_id": "42f8120c-c29f-4504-b95f-33b8823b9f55", + "name": "Billy Carlson", + "email": "wfrey@example.com", + "phone": "+1-294-728-8032x8761", + "address": { + "street": "6316 Smith Fort", + "city": "South Jessicaside", + "state": "West Virginia", + "zip": "31196", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T17:50:34.215Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 128.22, + "subtotal": 256.44 + } + ], + "total_price": 256.44, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 5.38, + "expected_delivery": { + "$date": "2025-05-13T17:50:34.215Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.279Z" + } + }, + { + "order_id": "ab4104b9-5c47-4d14-9b64-22c9ff5cd23e", + "customer": { + "customer_id": "371a04d1-a314-407b-8245-d3858dc8733c", + "name": "Steven Flynn", + "email": "simpsoncynthia@example.org", + "phone": "(727)839-6184x962", + "address": { + "street": "06625 Adam Lodge", + "city": "Lake Brianashire", + "state": "Nevada", + "zip": "18749", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T16:50:30.728Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 141.59, + "subtotal": 141.59 + } + ], + "total_price": 141.59, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 16.93, + "expected_delivery": { + "$date": "2025-05-09T16:50:30.728Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.279Z" + } + }, + { + "order_id": "d32ce35d-c82f-404a-bc56-ff95bb518063", + "customer": { + "customer_id": "1f0fe0ef-e6e6-493a-b999-7332a74a84e2", + "name": "Jennifer Bryant", + "email": "msingh@example.org", + "phone": "892.550.1303x313", + "address": { + "street": "3633 Christopher Stravenue Apt. 439", + "city": "Donaldstad", + "state": "Indiana", + "zip": "77819", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T13:34:13.658Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 112.12, + "subtotal": 224.24 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 98.68, + "subtotal": 197.36 + } + ], + "total_price": 421.6, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 14.25, + "expected_delivery": { + "$date": "2025-05-16T13:34:13.658Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.279Z" + } + }, + { + "order_id": "32a9a254-98ac-4709-8976-eeb3db6b0c1b", + "customer": { + "customer_id": "373ab1e9-1675-4ed5-9267-842804143f51", + "name": "Kimberly Rosario", + "email": "jonathan60@example.org", + "phone": "612-233-7585", + "address": { + "street": "61353 Roberts Estate Apt. 804", + "city": "South Brandonside", + "state": "New York", + "zip": "82575", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T08:37:56.244Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 76.56, + "subtotal": 153.12 + } + ], + "total_price": 153.12, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 16.66, + "expected_delivery": { + "$date": "2025-05-18T08:37:56.244Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.280Z" + } + }, + { + "order_id": "92ae16ca-c22a-4be2-a003-95df1ef2d60f", + "customer": { + "customer_id": "2c56d5e6-daff-4bdc-a109-f5df8a341132", + "name": "Dr. Courtney Carson DVM", + "email": "davidreed@example.org", + "phone": "267-795-5492", + "address": { + "street": "412 Parker Road Apt. 234", + "city": "Danielfort", + "state": "Kansas", + "zip": "98958", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T04:10:03.702Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 169.68, + "subtotal": 169.68 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 168.19, + "subtotal": 336.38 + }, + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 83.78, + "subtotal": 167.56 + } + ], + "total_price": 673.62, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 19.27, + "expected_delivery": { + "$date": "2025-05-16T04:10:03.702Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.280Z" + } + }, + { + "order_id": "546ed35f-b72d-40b8-becd-85d501ef7317", + "customer": { + "customer_id": "c5b6113c-04c2-4785-a9fa-720271ffd08a", + "name": "Jennifer Washington", + "email": "youngheather@example.org", + "phone": "(332)523-2012", + "address": { + "street": "7653 Moore Tunnel Suite 167", + "city": "Turnerhaven", + "state": "New Jersey", + "zip": "86674", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T17:20:05.934Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 97.47, + "subtotal": 194.94 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 165.26, + "subtotal": 330.52 + } + ], + "total_price": 525.46, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 13.07, + "expected_delivery": { + "$date": "2025-05-15T17:20:05.934Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.280Z" + } + }, + { + "order_id": "df634b25-8a01-4c5a-97c3-2220f33ad86e", + "customer": { + "customer_id": "e1677419-f3f4-4436-81be-0ca9add8adb4", + "name": "Hayden Fernandez", + "email": "ffernandez@example.net", + "phone": "001-411-275-2689x128", + "address": { + "street": "0723 Angela Trail Apt. 555", + "city": "Gentryshire", + "state": "Washington", + "zip": "14102", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T18:10:34.975Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 141.77, + "subtotal": 283.54 + } + ], + "total_price": 283.54, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 10.07, + "expected_delivery": { + "$date": "2025-05-16T18:10:34.975Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.280Z" + } + }, + { + "order_id": "04dc00ce-6d21-4a1e-8dd6-a0cd2ef12d42", + "customer": { + "customer_id": "eb0b894a-feaa-4ecd-8ab0-0ccec0366fb9", + "name": "Brandon Wallace", + "email": "aaronmartinez@example.org", + "phone": "001-790-265-9205x3779", + "address": { + "street": "33340 Ellis Green", + "city": "Lisaport", + "state": "Nebraska", + "zip": "60254", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T04:13:00.320Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 157.03, + "subtotal": 314.06 + } + ], + "total_price": 314.06, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 13.15, + "expected_delivery": { + "$date": "2025-05-15T04:13:00.320Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.281Z" + } + }, + { + "order_id": "b120f15a-5766-4424-a6bd-f90b6334391f", + "customer": { + "customer_id": "69eaef2c-8b66-47d5-9986-cc9fd38c69bf", + "name": "Amanda Schmitt", + "email": "juan51@example.net", + "phone": "+1-930-630-5121x266", + "address": { + "street": "51277 Lauren Throughway Suite 386", + "city": "Walkershire", + "state": "Connecticut", + "zip": "63638", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T06:04:44.002Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 1, + "unit_price": 126.49, + "subtotal": 126.49 + }, + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 166.61, + "subtotal": 166.61 + } + ], + "total_price": 293.1, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 6.08, + "expected_delivery": { + "$date": "2025-05-13T06:04:44.002Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.281Z" + } + }, + { + "order_id": "00d9e996-a98a-4e9a-ae81-cbe23ffa1064", + "customer": { + "customer_id": "4bfa52a0-2da6-4234-8ad2-3111a9ca994a", + "name": "Joseph Cole", + "email": "qsmith@example.com", + "phone": "6505620568", + "address": { + "street": "6243 Matthew Mall Apt. 791", + "city": "Harryberg", + "state": "Massachusetts", + "zip": "88243", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T00:01:55.888Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 163.8, + "subtotal": 327.6 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 146.37, + "subtotal": 292.74 + } + ], + "total_price": 620.34, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 17.42, + "expected_delivery": { + "$date": "2025-05-13T00:01:55.888Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.281Z" + } + }, + { + "order_id": "528e4077-ca15-49d6-8fce-319607ab1f21", + "customer": { + "customer_id": "1b6c4b2d-6620-4413-997f-1f3bcb13b13b", + "name": "Charles Jones II", + "email": "normajenkins@example.net", + "phone": "(793)250-4319x233", + "address": { + "street": "904 Steven Fords", + "city": "Jillville", + "state": "Kansas", + "zip": "77892", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T08:25:18.540Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 1, + "unit_price": 128.36, + "subtotal": 128.36 + }, + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 1, + "unit_price": 118.79, + "subtotal": 118.79 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 118.84, + "subtotal": 118.84 + } + ], + "total_price": 365.99, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 6.02, + "expected_delivery": { + "$date": "2025-05-11T08:25:18.540Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.281Z" + } + }, + { + "order_id": "5fce6fa9-ecc1-4b13-ba97-d681f072969a", + "customer": { + "customer_id": "ee1fee41-18bf-44f1-a3a0-1d2bf4e00967", + "name": "David Edwards", + "email": "robinsonashley@example.org", + "phone": "227.996.3225", + "address": { + "street": "8058 Taylor Road", + "city": "East Maureen", + "state": "Maryland", + "zip": "39154", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T07:49:55.169Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 1, + "unit_price": 157.58, + "subtotal": 157.58 + } + ], + "total_price": 157.58, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 14.42, + "expected_delivery": { + "$date": "2025-05-21T07:49:55.169Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.282Z" + } + }, + { + "order_id": "c77f9c10-c854-4679-b5e6-125d7082bbd8", + "customer": { + "customer_id": "efa03251-176c-4b23-82c9-5fb8bff328a7", + "name": "Eric Austin MD", + "email": "cherryjanet@example.net", + "phone": "+1-510-294-7050x973", + "address": { + "street": "2579 Koch Lights Apt. 536", + "city": "Maryburgh", + "state": "Maine", + "zip": "15627", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T09:41:00.519Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 90.97, + "subtotal": 90.97 + }, + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 147.64, + "subtotal": 147.64 + }, + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 78.63, + "subtotal": 157.26 + } + ], + "total_price": 395.87, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 18.43, + "expected_delivery": { + "$date": "2025-05-14T09:41:00.519Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.282Z" + } + }, + { + "order_id": "de1c0c27-6156-4507-a4b6-ae37d1fe4e66", + "customer": { + "customer_id": "fc1f2e5b-c13b-45a8-bfe8-bfa5c331f8fc", + "name": "Steve Harper", + "email": "courtneyhatfield@example.org", + "phone": "750.986.2254x59799", + "address": { + "street": "915 Tiffany Mountains", + "city": "Boyletown", + "state": "North Carolina", + "zip": "89251", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T19:04:42.266Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 110.71, + "subtotal": 221.42 + }, + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 160.21, + "subtotal": 320.42 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 176.77, + "subtotal": 353.54 + } + ], + "total_price": 895.38, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 15.48, + "expected_delivery": { + "$date": "2025-05-15T19:04:42.266Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.282Z" + } + }, + { + "order_id": "0f298989-2efb-4134-9306-e7ea44f30e82", + "customer": { + "customer_id": "8a0bbd52-0769-4338-be06-e849776da7e8", + "name": "Colleen Davis", + "email": "michaelmartinez@example.net", + "phone": "001-991-361-2964", + "address": { + "street": "08022 Waller Gateway", + "city": "Lake Johnbury", + "state": "Nebraska", + "zip": "90985", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T17:58:45.284Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 129.06, + "subtotal": 258.12 + }, + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 1, + "unit_price": 98.54, + "subtotal": 98.54 + }, + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 2, + "unit_price": 173.6, + "subtotal": 347.2 + } + ], + "total_price": 703.86, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 20.0, + "expected_delivery": { + "$date": "2025-05-10T17:58:45.284Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.282Z" + } + }, + { + "order_id": "3366146a-407a-48fb-b9c1-08b3cefabd26", + "customer": { + "customer_id": "fa8d8902-2b8d-48a1-94d4-bb217ee0b91a", + "name": "Stephanie Wagner", + "email": "mendozaemily@example.com", + "phone": "001-258-304-6963x039", + "address": { + "street": "32735 Freeman Meadow", + "city": "Simpsonshire", + "state": "South Dakota", + "zip": "51561", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T06:28:29.792Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 86.51, + "subtotal": 173.02 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 103.58, + "subtotal": 103.58 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 1, + "unit_price": 167.37, + "subtotal": 167.37 + } + ], + "total_price": 443.97, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 17.01, + "expected_delivery": { + "$date": "2025-05-15T06:28:29.792Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.282Z" + } + }, + { + "order_id": "35f656a4-8186-468b-8bfa-f2970da1535b", + "customer": { + "customer_id": "97d3d7eb-abbe-4170-81f8-4bd8bbbd3238", + "name": "Jeffrey Cardenas", + "email": "jstark@example.org", + "phone": "001-228-353-1166x600", + "address": { + "street": "4408 Ali Hill", + "city": "Lake Teresa", + "state": "Indiana", + "zip": "54480", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T08:33:15.048Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 81.28, + "subtotal": 162.56 + }, + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 175.14, + "subtotal": 175.14 + }, + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 165.81, + "subtotal": 331.62 + } + ], + "total_price": 669.32, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 16.99, + "expected_delivery": { + "$date": "2025-05-18T08:33:15.048Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.283Z" + } + }, + { + "order_id": "4c816b3c-12a1-4947-bd1b-0b58fd8011f9", + "customer": { + "customer_id": "25cded7b-9fc2-45a1-b953-1082c091fb40", + "name": "Donald Murphy", + "email": "macdonaldlaura@example.org", + "phone": "+1-975-717-8779x9570", + "address": { + "street": "553 Simmons Estate Suite 401", + "city": "Matthewsside", + "state": "Delaware", + "zip": "47122", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T09:40:26.795Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 176.92, + "subtotal": 176.92 + }, + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 179.98, + "subtotal": 359.96 + }, + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 136.88, + "subtotal": 136.88 + } + ], + "total_price": 673.76, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 11.69, + "expected_delivery": { + "$date": "2025-05-20T09:40:26.795Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.283Z" + } + }, + { + "order_id": "f4356ff2-f530-46c3-a3e9-cf05cd25a992", + "customer": { + "customer_id": "2a2378aa-42ae-4c82-84b6-e9524a08703a", + "name": "Amanda Garrett", + "email": "gabriellevasquez@example.com", + "phone": "001-284-264-3716", + "address": { + "street": "20013 Cooley Street Apt. 489", + "city": "Cuevasville", + "state": "Florida", + "zip": "71008", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T02:42:46.718Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 126.51, + "subtotal": 253.02 + } + ], + "total_price": 253.02, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 9.07, + "expected_delivery": { + "$date": "2025-05-15T02:42:46.718Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.283Z" + } + }, + { + "order_id": "3ab71486-f4d5-4aa4-8962-8a551888f264", + "customer": { + "customer_id": "84c67c09-85bc-42d1-aece-a6b18181ff89", + "name": "Jessica Christian", + "email": "ritale@example.org", + "phone": "482.960.9188x7741", + "address": { + "street": "610 Cheryl Prairie", + "city": "South Arthurborough", + "state": "New Mexico", + "zip": "03041", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T23:05:32.234Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 2, + "unit_price": 166.28, + "subtotal": 332.56 + }, + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 128.68, + "subtotal": 257.36 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 179.44, + "subtotal": 358.88 + } + ], + "total_price": 948.8, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 16.88, + "expected_delivery": { + "$date": "2025-05-19T23:05:32.234Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.283Z" + } + }, + { + "order_id": "689dd295-8191-4ec4-861a-8a546b6fd503", + "customer": { + "customer_id": "67ea9ac6-7983-4c81-a386-ef935a36519f", + "name": "Kayla Waters", + "email": "tschneider@example.net", + "phone": "(582)726-4571x55735", + "address": { + "street": "41348 Walsh Drive", + "city": "South Breanna", + "state": "Kansas", + "zip": "21250", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T04:12:21.495Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 110.44, + "subtotal": 220.88 + } + ], + "total_price": 220.88, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 16.81, + "expected_delivery": { + "$date": "2025-05-18T04:12:21.495Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.284Z" + } + }, + { + "order_id": "efd138ad-3a3b-4804-b14e-ed82f31e0816", + "customer": { + "customer_id": "f5d0c500-1b92-464a-afeb-56841e07e0cf", + "name": "James Day", + "email": "davisapril@example.org", + "phone": "793.377.0265", + "address": { + "street": "7053 Hicks Shore Suite 302", + "city": "East Donnafort", + "state": "Arizona", + "zip": "67052", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T15:25:59.413Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 153.73, + "subtotal": 153.73 + }, + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 86.74, + "subtotal": 173.48 + } + ], + "total_price": 327.21, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 6.78, + "expected_delivery": { + "$date": "2025-05-12T15:25:59.413Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.284Z" + } + }, + { + "order_id": "aeca580f-1e50-494d-9630-c18e36e68788", + "customer": { + "customer_id": "1645c3f9-4ffa-4515-95aa-9c46c2c90102", + "name": "Steven Smith", + "email": "bradytina@example.com", + "phone": "+1-226-738-0671x2279", + "address": { + "street": "79257 George Vista", + "city": "Zacharytown", + "state": "Idaho", + "zip": "99710", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T01:09:38.050Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 63.47, + "subtotal": 63.47 + } + ], + "total_price": 63.47, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 5.12, + "expected_delivery": { + "$date": "2025-05-19T01:09:38.050Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.284Z" + } + }, + { + "order_id": "6fd4a628-356c-48be-ab92-9a51d91b08d5", + "customer": { + "customer_id": "453babe4-da08-4048-8f52-17ad16550355", + "name": "Dylan Smith", + "email": "luke66@example.net", + "phone": "(901)413-8407x907", + "address": { + "street": "991 Hall Radial", + "city": "North Robert", + "state": "Nebraska", + "zip": "98605", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T07:41:53.955Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 1, + "unit_price": 77.46, + "subtotal": 77.46 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 62.28, + "subtotal": 62.28 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 130.09, + "subtotal": 260.18 + } + ], + "total_price": 399.92, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 16.44, + "expected_delivery": { + "$date": "2025-05-15T07:41:53.955Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.284Z" + } + }, + { + "order_id": "9cb542ef-c4ec-42ab-ac16-193d04000de1", + "customer": { + "customer_id": "842cf7a0-6722-4cbf-8026-3b0b1843e949", + "name": "Michael Butler", + "email": "jamesvazquez@example.org", + "phone": "6367246996", + "address": { + "street": "8900 Dawn Terrace Apt. 697", + "city": "Maryburgh", + "state": "Utah", + "zip": "28541", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T13:28:23.339Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 145.93, + "subtotal": 145.93 + } + ], + "total_price": 145.93, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 17.39, + "expected_delivery": { + "$date": "2025-05-11T13:28:23.339Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.285Z" + } + }, + { + "order_id": "3e3202a0-52f3-44dc-9e6a-a80e9bff10e5", + "customer": { + "customer_id": "28ba86fb-ff77-4e7e-b314-9749c1dccc6b", + "name": "Amy Williams", + "email": "petersonelizabeth@example.net", + "phone": "(882)672-3999", + "address": { + "street": "3590 Curry Corners Suite 578", + "city": "Fordside", + "state": "Illinois", + "zip": "53964", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T16:28:37.502Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 152.12, + "subtotal": 152.12 + } + ], + "total_price": 152.12, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 12.65, + "expected_delivery": { + "$date": "2025-05-18T16:28:37.502Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.285Z" + } + }, + { + "order_id": "688f588b-298b-4faa-920f-1f4fcf1e1d96", + "customer": { + "customer_id": "b5cdfdd1-d824-4f92-a379-ed9ee9cf222e", + "name": "Renee Davis", + "email": "elizabethowens@example.org", + "phone": "914.711.7388x3681", + "address": { + "street": "248 Colon Inlet", + "city": "North Sandra", + "state": "Texas", + "zip": "54591", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T04:38:35.726Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 145.68, + "subtotal": 291.36 + }, + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 66.22, + "subtotal": 132.44 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 107.31, + "subtotal": 107.31 + } + ], + "total_price": 531.11, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 7.12, + "expected_delivery": { + "$date": "2025-05-21T04:38:35.726Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.285Z" + } + }, + { + "order_id": "b03c9f79-321a-4730-9cf1-7885b071a833", + "customer": { + "customer_id": "4c386ec0-7753-4571-9fa8-0af57f85ca0d", + "name": "Edward Mcdowell", + "email": "shawnharris@example.org", + "phone": "(606)216-8357", + "address": { + "street": "310 Hicks Ridge Suite 248", + "city": "Richardsonshire", + "state": "Arkansas", + "zip": "77789", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T00:08:58.284Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 163.24, + "subtotal": 326.48 + }, + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 81.33, + "subtotal": 81.33 + }, + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 120.88, + "subtotal": 120.88 + } + ], + "total_price": 528.69, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 15.95, + "expected_delivery": { + "$date": "2025-05-19T00:08:58.284Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.285Z" + } + }, + { + "order_id": "abb42bd9-1c6b-433c-b809-64062fe9442d", + "customer": { + "customer_id": "cd5533c9-1f35-4fbc-a194-cd07b29929d3", + "name": "Jessica Mckinney", + "email": "miketran@example.net", + "phone": "001-282-292-4994x9159", + "address": { + "street": "89121 Galvan Cape Suite 629", + "city": "West Debraside", + "state": "Oklahoma", + "zip": "21512", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T17:09:53.080Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 156.43, + "subtotal": 156.43 + } + ], + "total_price": 156.43, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 17.33, + "expected_delivery": { + "$date": "2025-05-13T17:09:53.080Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.286Z" + } + }, + { + "order_id": "ef3dcfe3-1e0f-4cb3-9291-c1cadf0b019e", + "customer": { + "customer_id": "25abd931-6e4d-4def-b1be-63b58958220b", + "name": "Robert Whitaker", + "email": "osalazar@example.net", + "phone": "(213)702-6375x1864", + "address": { + "street": "4738 Parker Village Suite 648", + "city": "Robinsonview", + "state": "Arkansas", + "zip": "17450", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T06:03:28.746Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 160.81, + "subtotal": 321.62 + } + ], + "total_price": 321.62, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 19.79, + "expected_delivery": { + "$date": "2025-05-12T06:03:28.746Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.286Z" + } + }, + { + "order_id": "1803c375-ec13-41ac-bae1-75615f0aa280", + "customer": { + "customer_id": "8a4952aa-5b3b-4837-803f-ad03a0b32c15", + "name": "Amy Chandler", + "email": "brownmichael@example.net", + "phone": "616.391.5425x073", + "address": { + "street": "2482 Woods Glen Apt. 635", + "city": "North Michael", + "state": "Nevada", + "zip": "16692", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T10:05:17.667Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 75.2, + "subtotal": 150.4 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 103.55, + "subtotal": 207.1 + } + ], + "total_price": 357.5, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 14.56, + "expected_delivery": { + "$date": "2025-05-20T10:05:17.667Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.286Z" + } + }, + { + "order_id": "0c612d42-2a65-4532-ba4a-b5a6e5f8a0f6", + "customer": { + "customer_id": "e8893327-3ad3-4f54-a417-a0fc5afabedc", + "name": "Karina Carr", + "email": "qwillis@example.org", + "phone": "648-261-1444", + "address": { + "street": "658 Marissa Well Apt. 202", + "city": "Neilmouth", + "state": "Nevada", + "zip": "95469", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T11:00:57.910Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 68.57, + "subtotal": 137.14 + } + ], + "total_price": 137.14, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 16.43, + "expected_delivery": { + "$date": "2025-05-14T11:00:57.910Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.286Z" + } + }, + { + "order_id": "0b6d0a0c-0114-41b4-bb50-58366c3cefb6", + "customer": { + "customer_id": "49277d71-13b7-44f2-865b-f440d151f301", + "name": "Brandy Elliott", + "email": "rachelflores@example.com", + "phone": "5783246001", + "address": { + "street": "998 Lee Ferry Apt. 119", + "city": "Mcclainshire", + "state": "Wisconsin", + "zip": "00948", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T02:06:45.548Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 62.97, + "subtotal": 125.94 + }, + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 94.93, + "subtotal": 189.86 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 142.82, + "subtotal": 142.82 + } + ], + "total_price": 458.62, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 15.35, + "expected_delivery": { + "$date": "2025-05-14T02:06:45.548Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.287Z" + } + }, + { + "order_id": "06d85853-dee1-4231-a4c4-507659a09d48", + "customer": { + "customer_id": "138ebbe1-efa2-4862-8946-6c5106fd4056", + "name": "Joseph Avila", + "email": "riosjanet@example.net", + "phone": "001-258-366-3437x879", + "address": { + "street": "68927 Edwards Cliffs Suite 423", + "city": "Amandabury", + "state": "Pennsylvania", + "zip": "72875", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T04:26:31.096Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 134.19, + "subtotal": 268.38 + } + ], + "total_price": 268.38, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 16.12, + "expected_delivery": { + "$date": "2025-05-12T04:26:31.096Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.287Z" + } + }, + { + "order_id": "4311bb67-af87-4532-b160-28f5dce81cf3", + "customer": { + "customer_id": "004f0bbd-3f2c-45ad-a391-5f711452bc3e", + "name": "Kelsey Thomas", + "email": "jason54@example.com", + "phone": "589-856-4678", + "address": { + "street": "583 Amanda Way Suite 432", + "city": "Andersontown", + "state": "West Virginia", + "zip": "81297", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T13:15:12.893Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 77.72, + "subtotal": 155.44 + }, + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 79.61, + "subtotal": 159.22 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 74.27, + "subtotal": 74.27 + } + ], + "total_price": 388.93, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 18.41, + "expected_delivery": { + "$date": "2025-05-11T13:15:12.893Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.287Z" + } + }, + { + "order_id": "81ec6e1b-0fba-47b4-b210-907cdf25a1a7", + "customer": { + "customer_id": "ba67fffb-4e55-4d14-b70b-4a10d535a136", + "name": "Laura Brown", + "email": "vasquezabigail@example.com", + "phone": "3149846520", + "address": { + "street": "12650 Brady Branch", + "city": "Cartermouth", + "state": "Arizona", + "zip": "56061", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T13:41:43.761Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 2, + "unit_price": 132.46, + "subtotal": 264.92 + } + ], + "total_price": 264.92, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 8.03, + "expected_delivery": { + "$date": "2025-05-14T13:41:43.761Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.287Z" + } + }, + { + "order_id": "3fca1368-c72d-452e-8265-c2719ae23fa2", + "customer": { + "customer_id": "0083335f-1409-4602-820c-b0c4127b3d78", + "name": "Joseph Haynes", + "email": "billy74@example.org", + "phone": "598.547.8883x183", + "address": { + "street": "2899 Cisneros Park", + "city": "South John", + "state": "Oregon", + "zip": "45048", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T16:56:33.769Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 88.43, + "subtotal": 88.43 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 175.77, + "subtotal": 351.54 + }, + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 1, + "unit_price": 173.39, + "subtotal": 173.39 + } + ], + "total_price": 613.36, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 7.41, + "expected_delivery": { + "$date": "2025-05-13T16:56:33.769Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.288Z" + } + }, + { + "order_id": "b899f121-67b1-420b-b61b-34128d7a6b2a", + "customer": { + "customer_id": "dd876b29-6bf0-4d30-8bb8-54f4d7e79f59", + "name": "Regina Brock", + "email": "alexandergary@example.org", + "phone": "001-359-692-2803x6196", + "address": { + "street": "02471 Rebecca Inlet", + "city": "Jonesmouth", + "state": "Montana", + "zip": "51963", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T16:03:12.959Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 177.91, + "subtotal": 355.82 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 179.13, + "subtotal": 358.26 + }, + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 62.85, + "subtotal": 62.85 + } + ], + "total_price": 776.93, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 6.13, + "expected_delivery": { + "$date": "2025-05-12T16:03:12.959Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.288Z" + } + }, + { + "order_id": "a7f55889-3a8f-46fc-8560-b4ede970ef9d", + "customer": { + "customer_id": "3f182471-7844-43c5-b931-b48965674b81", + "name": "Sean Glass", + "email": "kevin22@example.net", + "phone": "(316)607-9229", + "address": { + "street": "58223 Cruz Passage", + "city": "New Elizabeth", + "state": "Iowa", + "zip": "94240", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T08:29:11.069Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 147.17, + "subtotal": 147.17 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 167.47, + "subtotal": 167.47 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 148.92, + "subtotal": 148.92 + } + ], + "total_price": 463.56, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 15.29, + "expected_delivery": { + "$date": "2025-05-13T08:29:11.069Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.288Z" + } + }, + { + "order_id": "3175f52e-b483-4f5e-8cc4-298d512293b4", + "customer": { + "customer_id": "be5f6fd5-092d-4d3a-a304-fd8395a9d111", + "name": "Jennifer Rodriguez", + "email": "jmiddleton@example.org", + "phone": "866.530.5728x0675", + "address": { + "street": "3732 Turner Road", + "city": "Maddenside", + "state": "New Jersey", + "zip": "08801", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T00:03:04.368Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 130.87, + "subtotal": 261.74 + } + ], + "total_price": 261.74, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 8.56, + "expected_delivery": { + "$date": "2025-05-19T00:03:04.368Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.288Z" + } + }, + { + "order_id": "90d4a224-50dd-4086-9202-022f981acfa8", + "customer": { + "customer_id": "8b17634f-73a0-40bf-b665-974967553c7e", + "name": "Elizabeth Haley", + "email": "acaldwell@example.org", + "phone": "601-880-8948", + "address": { + "street": "654 Rubio Forest Apt. 842", + "city": "Port Travisbury", + "state": "Florida", + "zip": "59624", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T22:15:29.275Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 1, + "unit_price": 112.67, + "subtotal": 112.67 + } + ], + "total_price": 112.67, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 7.04, + "expected_delivery": { + "$date": "2025-05-13T22:15:29.275Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.289Z" + } + }, + { + "order_id": "d6ff77f1-afb0-43ce-adaf-329d07e40fe4", + "customer": { + "customer_id": "2959ac8f-2398-4da3-9994-2e80dd9de2e6", + "name": "Alan Garcia", + "email": "uingram@example.org", + "phone": "+1-698-724-9656x248", + "address": { + "street": "8958 Jordan Spurs", + "city": "Fritzshire", + "state": "Michigan", + "zip": "95798", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T15:32:05.860Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 68.02, + "subtotal": 136.04 + } + ], + "total_price": 136.04, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 15.82, + "expected_delivery": { + "$date": "2025-05-12T15:32:05.860Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.289Z" + } + }, + { + "order_id": "8c4d4ee9-18f4-417f-9f1c-a9329df8d383", + "customer": { + "customer_id": "360e4a5d-8ac0-4f4c-9954-9bb964c07b5a", + "name": "Tricia Contreras", + "email": "kduncan@example.com", + "phone": "937.279.7659x974", + "address": { + "street": "556 Alexander Fort", + "city": "East Samantha", + "state": "Wisconsin", + "zip": "82214", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T10:02:11.300Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 134.7, + "subtotal": 134.7 + }, + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 138.63, + "subtotal": 138.63 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 179.35, + "subtotal": 358.7 + } + ], + "total_price": 632.03, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 15.49, + "expected_delivery": { + "$date": "2025-05-16T10:02:11.300Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.289Z" + } + }, + { + "order_id": "7eba5c90-6291-4dfd-b4f0-c163ba759338", + "customer": { + "customer_id": "05ac57a8-7f6b-4efe-a114-a4fbf474e363", + "name": "Todd Murphy", + "email": "jamesstone@example.com", + "phone": "386.331.6192x931", + "address": { + "street": "561 Johnson Inlet", + "city": "North Erikmouth", + "state": "New Mexico", + "zip": "15443", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T19:36:10.336Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 134.35, + "subtotal": 268.7 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 67.05, + "subtotal": 67.05 + } + ], + "total_price": 335.75, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 11.41, + "expected_delivery": { + "$date": "2025-05-14T19:36:10.336Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.289Z" + } + }, + { + "order_id": "5284e4db-9d27-4726-a32b-8dc473f3192d", + "customer": { + "customer_id": "7a2c9511-2b2d-45dc-aea3-924efbf023be", + "name": "Warren Moore", + "email": "robinmerritt@example.net", + "phone": "370-636-4097x02214", + "address": { + "street": "87647 Jacob Course Suite 327", + "city": "Port Joseph", + "state": "South Dakota", + "zip": "60760", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T04:07:28.961Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 155.99, + "subtotal": 311.98 + } + ], + "total_price": 311.98, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 18.22, + "expected_delivery": { + "$date": "2025-05-15T04:07:28.961Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.289Z" + } + }, + { + "order_id": "0f034a5f-4762-4840-bbaf-d415392b1a16", + "customer": { + "customer_id": "55f4dbf7-5f25-4575-befe-a6316b206019", + "name": "Mary Bryant", + "email": "qlong@example.org", + "phone": "001-621-905-5291x97467", + "address": { + "street": "68690 Melissa Union Suite 192", + "city": "Robintown", + "state": "Kansas", + "zip": "26639", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T17:02:43.891Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 110.31, + "subtotal": 220.62 + }, + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 152.21, + "subtotal": 152.21 + }, + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 98.87, + "subtotal": 98.87 + } + ], + "total_price": 471.7, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 16.02, + "expected_delivery": { + "$date": "2025-05-22T17:02:43.891Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.290Z" + } + }, + { + "order_id": "b14b287e-36b6-4d89-adb3-fda16d9ece7b", + "customer": { + "customer_id": "bef6fcb7-2f7e-4246-8524-400c95475647", + "name": "Kendra Burns", + "email": "luis70@example.net", + "phone": "001-724-823-9665x44786", + "address": { + "street": "637 William Ranch Apt. 732", + "city": "Port Melissastad", + "state": "Maryland", + "zip": "82794", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T21:27:26.875Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 1, + "unit_price": 179.92, + "subtotal": 179.92 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 85.89, + "subtotal": 85.89 + }, + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 147.69, + "subtotal": 147.69 + } + ], + "total_price": 413.5, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 5.61, + "expected_delivery": { + "$date": "2025-05-13T21:27:26.875Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.290Z" + } + }, + { + "order_id": "ec7b5b28-4e2d-4684-a7e4-ffd3a4e1261f", + "customer": { + "customer_id": "b5417fc1-8cfd-46c6-83ce-13e7b3d86989", + "name": "Taylor Berry", + "email": "williamskathleen@example.org", + "phone": "001-330-271-9366x7836", + "address": { + "street": "3774 Terry Ford Suite 641", + "city": "South Christian", + "state": "Maryland", + "zip": "24413", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T05:30:25.589Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 97.68, + "subtotal": 195.36 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 137.47, + "subtotal": 137.47 + } + ], + "total_price": 332.83, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 19.47, + "expected_delivery": { + "$date": "2025-05-13T05:30:25.589Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.290Z" + } + }, + { + "order_id": "dd5f9553-0422-44a5-9e03-68c3c7a7a3c5", + "customer": { + "customer_id": "cf332355-0a23-4797-9e20-c4f9cf46e341", + "name": "Michelle Cardenas", + "email": "skinnerkelly@example.net", + "phone": "855.724.0771", + "address": { + "street": "6255 Raymond Mall Apt. 323", + "city": "West Douglaston", + "state": "Maryland", + "zip": "49666", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T10:10:17.971Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 162.74, + "subtotal": 162.74 + } + ], + "total_price": 162.74, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 7.71, + "expected_delivery": { + "$date": "2025-05-18T10:10:17.971Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.290Z" + } + }, + { + "order_id": "7e43ac32-1437-45f9-aaf6-7095d1f503b2", + "customer": { + "customer_id": "0a91efdf-84d2-4d13-aee1-48e302e6eb02", + "name": "Renee Kelly", + "email": "heather83@example.com", + "phone": "716.357.4255", + "address": { + "street": "6548 Gary Viaduct Suite 237", + "city": "Chaneystad", + "state": "Oregon", + "zip": "69611", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T20:46:14.399Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 131.21, + "subtotal": 262.42 + } + ], + "total_price": 262.42, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 13.09, + "expected_delivery": { + "$date": "2025-05-17T20:46:14.399Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.290Z" + } + }, + { + "order_id": "acef2580-ea1c-414f-a467-a04239f284dd", + "customer": { + "customer_id": "4fe0f795-c40f-4ab1-953a-eaf5ada1b86b", + "name": "Jeffery Sweeney", + "email": "tinaconrad@example.com", + "phone": "001-481-259-5998x066", + "address": { + "street": "3377 Johnny Ways Suite 518", + "city": "Garciaville", + "state": "Washington", + "zip": "61815", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T18:40:27.455Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 133.88, + "subtotal": 267.76 + }, + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 86.14, + "subtotal": 86.14 + }, + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 67.31, + "subtotal": 134.62 + } + ], + "total_price": 488.52, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 9.11, + "expected_delivery": { + "$date": "2025-05-18T18:40:27.455Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.291Z" + } + }, + { + "order_id": "1a07efa0-7c91-4624-ad98-16c68b711b24", + "customer": { + "customer_id": "5dc23de2-4230-4bac-8839-f1967bfa0c08", + "name": "Cameron Wright", + "email": "benjamin28@example.org", + "phone": "(917)745-4132", + "address": { + "street": "29330 Angela Crescent Apt. 478", + "city": "Jeffreyhaven", + "state": "North Carolina", + "zip": "92588", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T15:36:08.275Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 151.42, + "subtotal": 302.84 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 165.26, + "subtotal": 330.52 + }, + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 89.34, + "subtotal": 178.68 + } + ], + "total_price": 812.04, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 9.62, + "expected_delivery": { + "$date": "2025-05-13T15:36:08.275Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.291Z" + } + }, + { + "order_id": "b55d90c3-c938-4418-9681-c78b3d3c4f22", + "customer": { + "customer_id": "d5e1083d-96fe-48b4-9bea-5682747dd1ad", + "name": "Ian Richardson", + "email": "morrisonkelly@example.org", + "phone": "(930)715-0370x2252", + "address": { + "street": "237 Harris Groves Apt. 298", + "city": "South Douglasburgh", + "state": "New Jersey", + "zip": "20658", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T23:14:45.279Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 115.07, + "subtotal": 115.07 + }, + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 121.1, + "subtotal": 121.1 + }, + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 94.1, + "subtotal": 188.2 + } + ], + "total_price": 424.37, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 11.58, + "expected_delivery": { + "$date": "2025-05-13T23:14:45.279Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.291Z" + } + }, + { + "order_id": "dff4dee6-263c-45a3-b06e-b2a3f199ce58", + "customer": { + "customer_id": "c8c7c0f2-a8cb-4ca9-973e-5a2537230672", + "name": "Crystal Lee", + "email": "lowemanuel@example.org", + "phone": "774.513.0022", + "address": { + "street": "837 Victoria Mills", + "city": "Aaronstad", + "state": "Ohio", + "zip": "16338", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T09:01:35.583Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 61.99, + "subtotal": 61.99 + }, + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 2, + "unit_price": 93.06, + "subtotal": 186.12 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 177.2, + "subtotal": 354.4 + } + ], + "total_price": 602.51, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 19.45, + "expected_delivery": { + "$date": "2025-05-21T09:01:35.583Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.291Z" + } + }, + { + "order_id": "27f6763b-d9cf-4398-832d-d9b1c858b18d", + "customer": { + "customer_id": "8cb0db7f-dcf4-45e0-b05e-f99bb7379b73", + "name": "Michael Hall", + "email": "foxmonica@example.org", + "phone": "2434226193", + "address": { + "street": "85819 Medina Haven Suite 608", + "city": "South Lindsey", + "state": "Wyoming", + "zip": "69259", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T23:23:07.350Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 141.49, + "subtotal": 141.49 + }, + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 97.4, + "subtotal": 97.4 + } + ], + "total_price": 238.89, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 16.39, + "expected_delivery": { + "$date": "2025-05-21T23:23:07.350Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.292Z" + } + }, + { + "order_id": "c502fe49-f966-48b7-816b-d8a024d17841", + "customer": { + "customer_id": "7a9b2037-8942-4b44-aace-32568b7649dd", + "name": "Kevin Rhodes", + "email": "jennifer69@example.net", + "phone": "269-951-3632", + "address": { + "street": "6729 Jones Park", + "city": "Scottfort", + "state": "Oklahoma", + "zip": "12687", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T03:57:55.483Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 128.4, + "subtotal": 256.8 + }, + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 107.95, + "subtotal": 215.9 + }, + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 2, + "unit_price": 86.84, + "subtotal": 173.68 + } + ], + "total_price": 646.38, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 8.91, + "expected_delivery": { + "$date": "2025-05-13T03:57:55.483Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.292Z" + } + }, + { + "order_id": "b5187662-72b6-4bbe-bf2b-82bca8a3fceb", + "customer": { + "customer_id": "ca52e3d8-9775-4ce1-abe4-85c5c4432385", + "name": "Matthew Smith", + "email": "lsnow@example.com", + "phone": "499.910.4145x747", + "address": { + "street": "504 Steven Villages", + "city": "East Jacobview", + "state": "Florida", + "zip": "59816", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T09:45:47.223Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 82.25, + "subtotal": 82.25 + } + ], + "total_price": 82.25, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 9.62, + "expected_delivery": { + "$date": "2025-05-14T09:45:47.223Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.292Z" + } + }, + { + "order_id": "0c93e32c-d6ae-4bd0-a39c-596a4cf30e22", + "customer": { + "customer_id": "b20d46a9-3199-4b1e-9e85-9a81f6b91861", + "name": "Amy Williams", + "email": "valeriejenkins@example.net", + "phone": "(249)728-4759", + "address": { + "street": "9042 Jones Centers Suite 461", + "city": "Combsport", + "state": "Hawaii", + "zip": "99936", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T12:01:59.026Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 1, + "unit_price": 150.93, + "subtotal": 150.93 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 1, + "unit_price": 171.22, + "subtotal": 171.22 + } + ], + "total_price": 322.15, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 7.03, + "expected_delivery": { + "$date": "2025-05-14T12:01:59.026Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.292Z" + } + }, + { + "order_id": "bb3402e6-2834-4e63-b7bc-5c5d86fc26e4", + "customer": { + "customer_id": "5274afa6-9111-4b49-ace8-8e3ccb725220", + "name": "Dawn Wright", + "email": "douglasjames@example.net", + "phone": "453-995-3499x813", + "address": { + "street": "282 David Field", + "city": "Jeffreymouth", + "state": "Pennsylvania", + "zip": "57337", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T01:51:16.698Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 2, + "unit_price": 132.37, + "subtotal": 264.74 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 1, + "unit_price": 84.57, + "subtotal": 84.57 + }, + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 149.07, + "subtotal": 298.14 + } + ], + "total_price": 647.45, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 18.68, + "expected_delivery": { + "$date": "2025-05-10T01:51:16.698Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.293Z" + } + }, + { + "order_id": "da4b41e0-b52d-4bd4-bc54-8db94f77e0ac", + "customer": { + "customer_id": "f84974ef-b743-4195-8342-3885aadf95ad", + "name": "Angela Miller", + "email": "nflynn@example.org", + "phone": "001-674-724-8729x7891", + "address": { + "street": "753 Peters Rapid", + "city": "Port Peter", + "state": "Minnesota", + "zip": "78861", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T05:35:17.086Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 156.01, + "subtotal": 312.02 + } + ], + "total_price": 312.02, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 13.4, + "expected_delivery": { + "$date": "2025-05-09T05:35:17.086Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.293Z" + } + }, + { + "order_id": "323cfb84-e143-4374-a2b0-254ddad082a1", + "customer": { + "customer_id": "a583b241-8cbf-4fd2-a0ac-3110978a174a", + "name": "Kimberly Watkins", + "email": "kiara00@example.com", + "phone": "3669096519", + "address": { + "street": "195 Curtis Parkways", + "city": "Robertotown", + "state": "Delaware", + "zip": "29829", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T10:09:56.385Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 111.59, + "subtotal": 223.18 + } + ], + "total_price": 223.18, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 7.63, + "expected_delivery": { + "$date": "2025-05-16T10:09:56.385Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.293Z" + } + }, + { + "order_id": "2f05bdda-9d01-4fc6-9680-2d3d2a5e75ae", + "customer": { + "customer_id": "7b75ac42-cfd5-4cfc-af3b-f6f2cadecac7", + "name": "Cynthia Berry", + "email": "joshua68@example.com", + "phone": "903.249.4427", + "address": { + "street": "8708 Eddie Motorway", + "city": "Port Anthonyport", + "state": "Connecticut", + "zip": "63075", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T08:31:45.594Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 129.34, + "subtotal": 129.34 + }, + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 1, + "unit_price": 109.55, + "subtotal": 109.55 + }, + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 1, + "unit_price": 178.54, + "subtotal": 178.54 + } + ], + "total_price": 417.43, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 9.18, + "expected_delivery": { + "$date": "2025-05-15T08:31:45.594Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.293Z" + } + }, + { + "order_id": "1e28267f-11d3-4494-8b4a-3b1df09530c2", + "customer": { + "customer_id": "2fade9d7-5fb3-4b6b-83f4-edc26fa24ea9", + "name": "Bethany Young", + "email": "thomaslester@example.org", + "phone": "513-514-6619x640", + "address": { + "street": "3947 Alex Brooks", + "city": "West Tina", + "state": "New Mexico", + "zip": "48909", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T11:53:48.861Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 162.85, + "subtotal": 162.85 + }, + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 1, + "unit_price": 105.13, + "subtotal": 105.13 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 161.01, + "subtotal": 322.02 + } + ], + "total_price": 590.0, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 16.73, + "expected_delivery": { + "$date": "2025-05-14T11:53:48.861Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.293Z" + } + }, + { + "order_id": "cafa0b48-51a6-468a-ad1c-41122e734910", + "customer": { + "customer_id": "7eec5269-3dc6-4140-9a05-4b776b3bcfd8", + "name": "Kathryn Hardy", + "email": "yolanda20@example.org", + "phone": "+1-251-689-5315x57099", + "address": { + "street": "4113 Glen Mission", + "city": "East Nicole", + "state": "Rhode Island", + "zip": "64491", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T18:36:36.126Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 141.23, + "subtotal": 141.23 + }, + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 85.49, + "subtotal": 170.98 + } + ], + "total_price": 312.21, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 6.42, + "expected_delivery": { + "$date": "2025-05-14T18:36:36.126Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.294Z" + } + }, + { + "order_id": "8d709f08-c533-4d2c-8222-d5afb8a8967d", + "customer": { + "customer_id": "5e994fe5-d85d-4c13-9134-e2b6bf925f6c", + "name": "Thomas Trevino", + "email": "kerrdenise@example.net", + "phone": "933-397-1967x131", + "address": { + "street": "8928 Mark Trafficway Suite 402", + "city": "Gibsonfort", + "state": "Tennessee", + "zip": "69035", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T08:00:28.562Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 142.5, + "subtotal": 142.5 + }, + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 159.4, + "subtotal": 318.8 + }, + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 1, + "unit_price": 82.7, + "subtotal": 82.7 + } + ], + "total_price": 544.0, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 7.93, + "expected_delivery": { + "$date": "2025-05-13T08:00:28.562Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.294Z" + } + }, + { + "order_id": "448dc5b8-20b7-4fa0-bb66-aeac05f4e9d3", + "customer": { + "customer_id": "c8866a32-f7a1-4f4b-bc4c-2949adae2794", + "name": "Nathan Cruz", + "email": "kristinahoover@example.net", + "phone": "(200)841-2662", + "address": { + "street": "581 Robert Ridge", + "city": "South Robertborough", + "state": "Texas", + "zip": "23111", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T18:17:32.226Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 1, + "unit_price": 82.16, + "subtotal": 82.16 + }, + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 131.6, + "subtotal": 263.2 + } + ], + "total_price": 345.36, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 15.34, + "expected_delivery": { + "$date": "2025-05-15T18:17:32.226Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.294Z" + } + }, + { + "order_id": "4b940fcd-ce83-4223-8355-e1f4f3713446", + "customer": { + "customer_id": "ad4512a6-d6a2-4309-9d59-5b350e20c17d", + "name": "Patricia Harper", + "email": "pwallace@example.org", + "phone": "+1-390-409-2393x63750", + "address": { + "street": "902 Donna Fork Apt. 207", + "city": "Christianbury", + "state": "North Carolina", + "zip": "56594", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T12:13:38.070Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 2, + "unit_price": 104.08, + "subtotal": 208.16 + }, + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 88.82, + "subtotal": 177.64 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 83.1, + "subtotal": 166.2 + } + ], + "total_price": 552.0, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 11.14, + "expected_delivery": { + "$date": "2025-05-14T12:13:38.070Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.294Z" + } + }, + { + "order_id": "dca4badd-6b36-44f6-b3a1-1edc39eff76c", + "customer": { + "customer_id": "eb8e6a9d-ef1a-46ee-b7f1-63aa560ae125", + "name": "Robert Edwards", + "email": "rachel71@example.org", + "phone": "001-994-745-4877", + "address": { + "street": "408 Jason Views", + "city": "New Dianetown", + "state": "Connecticut", + "zip": "06790", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T21:34:59.766Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 132.65, + "subtotal": 265.3 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 91.7, + "subtotal": 91.7 + }, + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 77.65, + "subtotal": 77.65 + } + ], + "total_price": 434.65, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 16.36, + "expected_delivery": { + "$date": "2025-05-15T21:34:59.766Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.295Z" + } + }, + { + "order_id": "9c5e6fae-16f4-4ce7-b766-bcca12b7fe00", + "customer": { + "customer_id": "fba51bfd-4295-4362-8200-dbf4da95fd2e", + "name": "Kathleen Dennis", + "email": "curtisangela@example.com", + "phone": "287.887.9098", + "address": { + "street": "440 Martin Curve Apt. 474", + "city": "South George", + "state": "Missouri", + "zip": "56323", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T23:42:29.141Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 2, + "unit_price": 127.34, + "subtotal": 254.68 + }, + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 1, + "unit_price": 158.46, + "subtotal": 158.46 + } + ], + "total_price": 413.14, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 14.36, + "expected_delivery": { + "$date": "2025-05-13T23:42:29.141Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.295Z" + } + }, + { + "order_id": "a4adb4b5-a259-4d10-b9ab-0546c31b4a01", + "customer": { + "customer_id": "d2c23933-ed54-452e-9cd7-a9a270d634ff", + "name": "Christopher Snyder", + "email": "rboyd@example.org", + "phone": "001-656-834-3604x23229", + "address": { + "street": "8641 Solomon View", + "city": "Penningtonbury", + "state": "Hawaii", + "zip": "85735", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T22:32:04.112Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 73.93, + "subtotal": 73.93 + }, + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 86.96, + "subtotal": 86.96 + } + ], + "total_price": 160.89, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 6.86, + "expected_delivery": { + "$date": "2025-05-08T22:32:04.112Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.295Z" + } + }, + { + "order_id": "0e217536-70d5-4bd1-bc94-cd44c5b81a78", + "customer": { + "customer_id": "023053e9-e687-4a01-baf8-bc4b009b3e22", + "name": "Patricia Barker", + "email": "dawsoncraig@example.com", + "phone": "001-990-731-0482", + "address": { + "street": "7965 Brown Vista Apt. 787", + "city": "Katelynville", + "state": "Georgia", + "zip": "14402", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T03:54:04.887Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 110.5, + "subtotal": 221.0 + } + ], + "total_price": 221.0, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 18.63, + "expected_delivery": { + "$date": "2025-05-18T03:54:04.887Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.295Z" + } + }, + { + "order_id": "33f6e3a2-3371-42d6-95b3-3902a2575c59", + "customer": { + "customer_id": "970f4cae-954f-44b9-bda3-db992da3d74a", + "name": "Chad Carpenter", + "email": "robertlopez@example.com", + "phone": "7033554795", + "address": { + "street": "428 Thomas Point", + "city": "West Erikborough", + "state": "Connecticut", + "zip": "26477", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T05:56:19.254Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 106.08, + "subtotal": 212.16 + }, + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 135.96, + "subtotal": 135.96 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 177.48, + "subtotal": 354.96 + } + ], + "total_price": 703.08, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 10.85, + "expected_delivery": { + "$date": "2025-05-20T05:56:19.254Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.296Z" + } + }, + { + "order_id": "1c87761f-1819-457e-b12f-8dbbddaae4da", + "customer": { + "customer_id": "2a3bf301-3727-4ad2-b6ed-93850c0fcd30", + "name": "Victoria Gillespie", + "email": "weisselizabeth@example.com", + "phone": "+1-654-206-8507x723", + "address": { + "street": "770 Lindsey Centers Apt. 194", + "city": "East Arthurstad", + "state": "Illinois", + "zip": "08061", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T12:10:30.606Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 2, + "unit_price": 126.95, + "subtotal": 253.9 + }, + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 166.37, + "subtotal": 332.74 + } + ], + "total_price": 586.64, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 17.59, + "expected_delivery": { + "$date": "2025-05-15T12:10:30.606Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.296Z" + } + }, + { + "order_id": "89166d8c-3c94-44ac-8a8d-b1d947bb696c", + "customer": { + "customer_id": "b922ed4b-5eb8-45d0-b155-2263bc471a92", + "name": "Michael Moore", + "email": "alexis41@example.org", + "phone": "(784)255-2740", + "address": { + "street": "102 Molina Keys Apt. 497", + "city": "Shelleyport", + "state": "Montana", + "zip": "84819", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T22:31:53.700Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 92.82, + "subtotal": 185.64 + }, + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 2, + "unit_price": 63.4, + "subtotal": 126.8 + }, + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 1, + "unit_price": 122.66, + "subtotal": 122.66 + } + ], + "total_price": 435.1, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 16.2, + "expected_delivery": { + "$date": "2025-05-18T22:31:53.700Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.296Z" + } + }, + { + "order_id": "1904e8bf-79f1-411e-b1eb-e49584a3eef7", + "customer": { + "customer_id": "735ae33c-f92a-4d4b-8e1a-ff5e4e7de8b1", + "name": "Connor Harris", + "email": "williamsdenise@example.net", + "phone": "+1-717-595-6957x076", + "address": { + "street": "687 Davidson Stream", + "city": "Hensonville", + "state": "Utah", + "zip": "92645", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T18:40:45.224Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 120.76, + "subtotal": 241.52 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 94.18, + "subtotal": 94.18 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 82.04, + "subtotal": 82.04 + } + ], + "total_price": 417.74, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 5.89, + "expected_delivery": { + "$date": "2025-05-16T18:40:45.224Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.296Z" + } + }, + { + "order_id": "6165e63a-f7cd-412a-8da8-c62231aa84fe", + "customer": { + "customer_id": "a03ec536-1ff2-4c36-b1b3-51e867202022", + "name": "Angie Wood", + "email": "jeffrey54@example.net", + "phone": "799-456-8922x9359", + "address": { + "street": "4575 Martinez Turnpike Apt. 938", + "city": "Reidview", + "state": "Missouri", + "zip": "18978", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T08:11:13.945Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 105.55, + "subtotal": 105.55 + }, + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 120.93, + "subtotal": 241.86 + } + ], + "total_price": 347.41, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 19.17, + "expected_delivery": { + "$date": "2025-05-20T08:11:13.945Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.296Z" + } + }, + { + "order_id": "22a32d7e-9d41-4703-85fe-ee4220a093f6", + "customer": { + "customer_id": "10437482-8d5c-452e-a3eb-74047f297736", + "name": "Holly Summers", + "email": "holly40@example.org", + "phone": "(367)805-0834x4839", + "address": { + "street": "1936 Fisher Track Apt. 990", + "city": "South Michael", + "state": "Minnesota", + "zip": "80335", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T21:38:13.295Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 2, + "unit_price": 150.55, + "subtotal": 301.1 + } + ], + "total_price": 301.1, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 10.94, + "expected_delivery": { + "$date": "2025-05-19T21:38:13.295Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.297Z" + } + }, + { + "order_id": "e3ab7ce7-3623-4738-9ed0-b2554acc529d", + "customer": { + "customer_id": "976acd54-7da2-4cbd-8009-fcac3d4757d5", + "name": "Sara Cruz", + "email": "angelaweaver@example.com", + "phone": "7318572738", + "address": { + "street": "55685 Calvin Camp Apt. 312", + "city": "Lake Michele", + "state": "Ohio", + "zip": "98855", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T03:56:34.780Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 167.38, + "subtotal": 334.76 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 132.55, + "subtotal": 265.1 + } + ], + "total_price": 599.86, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 7.71, + "expected_delivery": { + "$date": "2025-05-19T03:56:34.780Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.297Z" + } + }, + { + "order_id": "8bd1b12f-c63e-4e7f-a2a2-554c226780c2", + "customer": { + "customer_id": "fc1c84e5-d630-45f4-b603-863f02381de2", + "name": "Wendy King", + "email": "robertgibson@example.org", + "phone": "419.856.3429x3283", + "address": { + "street": "7854 Wolfe Mountain Suite 800", + "city": "Tracyton", + "state": "Maine", + "zip": "75612", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T06:11:50.781Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 122.55, + "subtotal": 122.55 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 148.08, + "subtotal": 148.08 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 147.22, + "subtotal": 294.44 + } + ], + "total_price": 565.07, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 7.07, + "expected_delivery": { + "$date": "2025-05-12T06:11:50.781Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.297Z" + } + }, + { + "order_id": "5eefb4eb-f3ef-4808-9461-c1c88959a91b", + "customer": { + "customer_id": "d4d9cc37-6216-44d8-9373-32cc17ccd610", + "name": "Alexis Torres", + "email": "wheelerelizabeth@example.com", + "phone": "841-244-1741", + "address": { + "street": "7258 Logan Stream Suite 500", + "city": "West Michelle", + "state": "Tennessee", + "zip": "28341", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T23:11:56.863Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 165.48, + "subtotal": 165.48 + }, + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 146.98, + "subtotal": 293.96 + } + ], + "total_price": 459.44, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 14.58, + "expected_delivery": { + "$date": "2025-05-12T23:11:56.863Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.297Z" + } + }, + { + "order_id": "4327ca2f-6b62-4b24-b5eb-960825c05b9f", + "customer": { + "customer_id": "6172d9c8-a5df-4781-9ee5-4134b10e8294", + "name": "Jamie Koch", + "email": "rojaseric@example.com", + "phone": "001-919-212-5740", + "address": { + "street": "47024 Patrick Prairie Apt. 581", + "city": "Port James", + "state": "New Jersey", + "zip": "65045", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T11:05:54.429Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 78.12, + "subtotal": 78.12 + } + ], + "total_price": 78.12, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 6.72, + "expected_delivery": { + "$date": "2025-05-19T11:05:54.429Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.298Z" + } + }, + { + "order_id": "20225b08-85c3-43b4-90c6-1289b0f49377", + "customer": { + "customer_id": "8aad29d5-37f0-4575-aa74-f22ec8dc0dc8", + "name": "James Clark", + "email": "danielanderson@example.org", + "phone": "001-902-812-8142x78211", + "address": { + "street": "07904 Chavez Common Suite 136", + "city": "Williamtown", + "state": "South Carolina", + "zip": "74515", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T07:52:18.816Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 131.24, + "subtotal": 262.48 + }, + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 158.16, + "subtotal": 316.32 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 87.44, + "subtotal": 174.88 + } + ], + "total_price": 753.68, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 17.8, + "expected_delivery": { + "$date": "2025-05-20T07:52:18.816Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.298Z" + } + }, + { + "order_id": "2266be61-d8aa-45d3-9bce-38f406a9ec1d", + "customer": { + "customer_id": "21c458ae-d2c8-4626-a24f-763b4a9cc258", + "name": "Lisa Harris", + "email": "elizabeth80@example.org", + "phone": "867-923-2231", + "address": { + "street": "7245 Hayley Cove", + "city": "Port Emilyview", + "state": "Illinois", + "zip": "02398", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T18:44:29.169Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 118.41, + "subtotal": 236.82 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 1, + "unit_price": 128.5, + "subtotal": 128.5 + }, + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 76.58, + "subtotal": 76.58 + } + ], + "total_price": 441.9, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 16.57, + "expected_delivery": { + "$date": "2025-05-18T18:44:29.169Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.298Z" + } + }, + { + "order_id": "e2ca67c3-b06e-4cc4-b4e5-8f7772d85d2c", + "customer": { + "customer_id": "31972de0-fcdc-4724-a7d9-7b50a1d26e64", + "name": "Edward Frost", + "email": "gbenson@example.net", + "phone": "361-423-6334x25026", + "address": { + "street": "2049 Paul Prairie", + "city": "East Katie", + "state": "Kansas", + "zip": "21148", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T16:29:46.139Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 130.88, + "subtotal": 130.88 + }, + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 93.11, + "subtotal": 186.22 + } + ], + "total_price": 317.1, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 12.52, + "expected_delivery": { + "$date": "2025-05-13T16:29:46.139Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.298Z" + } + }, + { + "order_id": "f9869205-1369-47f1-adfb-22de3a5bdc88", + "customer": { + "customer_id": "1c6aaa02-308f-4382-b24d-28d7f34cd4e5", + "name": "Eric Fisher", + "email": "garnerkelly@example.com", + "phone": "001-342-688-3654", + "address": { + "street": "474 Moore Manors", + "city": "New John", + "state": "Indiana", + "zip": "30598", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T14:04:35.623Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 114.47, + "subtotal": 228.94 + } + ], + "total_price": 228.94, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 16.77, + "expected_delivery": { + "$date": "2025-05-18T14:04:35.623Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.299Z" + } + }, + { + "order_id": "bd2385cc-e595-45c5-af2f-d73b886fbdc7", + "customer": { + "customer_id": "b395ca66-3a10-42f0-82ce-a98f2a4b7f91", + "name": "Justin Turner", + "email": "rodriguezpaul@example.net", + "phone": "841.307.7424x692", + "address": { + "street": "8144 West Mills", + "city": "West Deborahbury", + "state": "Arkansas", + "zip": "38436", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T22:39:02.162Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 147.17, + "subtotal": 147.17 + }, + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 179.29, + "subtotal": 179.29 + } + ], + "total_price": 326.46, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 18.22, + "expected_delivery": { + "$date": "2025-05-16T22:39:02.162Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.299Z" + } + }, + { + "order_id": "ef1aba25-52d3-4e1a-8df6-54f80790fa42", + "customer": { + "customer_id": "e35dfccc-4ca2-4a50-9705-c6565f81d847", + "name": "Rachel Brooks", + "email": "steven96@example.net", + "phone": "829.809.0342x91296", + "address": { + "street": "89204 Blankenship Expressway", + "city": "South Jason", + "state": "Louisiana", + "zip": "41646", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T01:14:22.844Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 161.75, + "subtotal": 323.5 + }, + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 162.89, + "subtotal": 325.78 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 119.22, + "subtotal": 119.22 + } + ], + "total_price": 768.5, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 12.73, + "expected_delivery": { + "$date": "2025-05-17T01:14:22.844Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.299Z" + } + }, + { + "order_id": "069c9add-f4ee-41e6-aa10-4997cf9c4695", + "customer": { + "customer_id": "a0805a03-342b-4365-9b77-cd7b2c7ab8e6", + "name": "Kiara Medina", + "email": "tara56@example.org", + "phone": "+1-383-874-1669x50908", + "address": { + "street": "6805 Mckinney Mission", + "city": "West Tiffany", + "state": "Kansas", + "zip": "08144", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T06:04:40.081Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 1, + "unit_price": 145.9, + "subtotal": 145.9 + } + ], + "total_price": 145.9, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 16.97, + "expected_delivery": { + "$date": "2025-05-11T06:04:40.081Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.299Z" + } + }, + { + "order_id": "c5874ccb-cad8-4252-82f7-efb15c92805f", + "customer": { + "customer_id": "81bd6781-a9b9-4b87-9b41-b8bd2ada57b3", + "name": "Dwayne Johnson", + "email": "bonniegomez@example.org", + "phone": "400-813-4593", + "address": { + "street": "3838 Miranda Vista Suite 140", + "city": "Lawrenceborough", + "state": "New York", + "zip": "34068", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T03:38:16.729Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 179.17, + "subtotal": 358.34 + } + ], + "total_price": 358.34, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 11.59, + "expected_delivery": { + "$date": "2025-05-15T03:38:16.729Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.300Z" + } + }, + { + "order_id": "dbe1288a-5858-41c2-b7b5-fff6ccf6dece", + "customer": { + "customer_id": "f9467c4d-59a9-46ce-9197-9609a7a3ee32", + "name": "Joshua Turner", + "email": "greenejustin@example.org", + "phone": "(642)477-0334", + "address": { + "street": "139 Terri Cove Apt. 099", + "city": "Sanchezberg", + "state": "Arizona", + "zip": "92952", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T21:49:13.088Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 153.17, + "subtotal": 306.34 + } + ], + "total_price": 306.34, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 8.17, + "expected_delivery": { + "$date": "2025-05-09T21:49:13.088Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.300Z" + } + }, + { + "order_id": "5bbf28d8-0bca-4db0-9ec8-a0ec33985276", + "customer": { + "customer_id": "984ca8bd-2153-41dc-90e3-c3093d406d2b", + "name": "Jason Jennings", + "email": "tylerluna@example.net", + "phone": "(591)339-3839x630", + "address": { + "street": "129 Michael Key", + "city": "Adrianhaven", + "state": "Maine", + "zip": "72812", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T10:49:12.346Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 179.19, + "subtotal": 179.19 + } + ], + "total_price": 179.19, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 19.16, + "expected_delivery": { + "$date": "2025-05-19T10:49:12.346Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.300Z" + } + }, + { + "order_id": "2d370dee-5343-4108-b563-49b319cb3967", + "customer": { + "customer_id": "05404ebd-681e-4f39-8d34-a26534d524fd", + "name": "Heather Weiss", + "email": "wandalopez@example.net", + "phone": "001-429-587-6286x46288", + "address": { + "street": "568 Norris Dale", + "city": "Lake Aaron", + "state": "Wyoming", + "zip": "98279", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T16:36:03.923Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 133.78, + "subtotal": 133.78 + }, + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 168.02, + "subtotal": 336.04 + }, + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 95.3, + "subtotal": 190.6 + } + ], + "total_price": 660.42, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 11.63, + "expected_delivery": { + "$date": "2025-05-18T16:36:03.923Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.300Z" + } + }, + { + "order_id": "fdc97894-483e-4a3a-86a8-ea541b9b54c3", + "customer": { + "customer_id": "d22b4dd9-3c28-4517-8ce3-ab1c357fa57a", + "name": "Steven Yang", + "email": "brooksbrandon@example.net", + "phone": "+1-805-315-6538x31577", + "address": { + "street": "3879 Jimenez Rue", + "city": "Matthewton", + "state": "Georgia", + "zip": "72079", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T19:25:39.923Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 168.69, + "subtotal": 337.38 + }, + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 150.64, + "subtotal": 150.64 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 106.15, + "subtotal": 212.3 + } + ], + "total_price": 700.32, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 19.98, + "expected_delivery": { + "$date": "2025-05-09T19:25:39.923Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.301Z" + } + }, + { + "order_id": "ba7187f1-f1f5-4e97-8ffa-eccafebcd090", + "customer": { + "customer_id": "db888c8f-5790-4b85-bbc7-1147b248789d", + "name": "Kayla Morgan", + "email": "muellerronald@example.org", + "phone": "001-664-572-3027x7008", + "address": { + "street": "3148 Jerry Turnpike", + "city": "Cynthiabury", + "state": "Illinois", + "zip": "38361", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T10:37:57.675Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 72.2, + "subtotal": 144.4 + } + ], + "total_price": 144.4, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 17.45, + "expected_delivery": { + "$date": "2025-05-13T10:37:57.675Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.301Z" + } + }, + { + "order_id": "ab5d419a-2a46-4c26-bd0c-4315ce456c7a", + "customer": { + "customer_id": "d06a7b12-5287-4c23-a3aa-f348e4e5bdeb", + "name": "Sandra Young", + "email": "dillonparks@example.com", + "phone": "915-975-1526", + "address": { + "street": "9483 Michael Ports Suite 698", + "city": "New Mike", + "state": "Hawaii", + "zip": "81143", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T02:14:49.039Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 154.56, + "subtotal": 154.56 + }, + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 179.51, + "subtotal": 179.51 + }, + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 119.33, + "subtotal": 119.33 + } + ], + "total_price": 453.4, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 19.87, + "expected_delivery": { + "$date": "2025-05-14T02:14:49.039Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.301Z" + } + }, + { + "order_id": "851ad48c-1f9e-4c5f-ab67-7badad7af3b8", + "customer": { + "customer_id": "bc7efe26-af54-4e53-8ae9-f66c56b1ef36", + "name": "Adam Mcknight", + "email": "weissjason@example.net", + "phone": "+1-525-377-0972x572", + "address": { + "street": "96757 Mark Court", + "city": "East Dana", + "state": "Rhode Island", + "zip": "62049", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T00:53:23.525Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 157.48, + "subtotal": 314.96 + } + ], + "total_price": 314.96, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 14.98, + "expected_delivery": { + "$date": "2025-05-15T00:53:23.525Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.301Z" + } + }, + { + "order_id": "ef0427c7-69bc-4339-8e7e-caae198d7735", + "customer": { + "customer_id": "f97cdec5-9a66-46b8-bbcf-8b1851d920ec", + "name": "Arthur Leon", + "email": "michaeldaniels@example.net", + "phone": "(303)763-4362x76989", + "address": { + "street": "9016 Hicks Falls Apt. 819", + "city": "Lake Michellefort", + "state": "Massachusetts", + "zip": "97117", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T08:18:58.402Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 69.07, + "subtotal": 138.14 + }, + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 2, + "unit_price": 89.34, + "subtotal": 178.68 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 137.88, + "subtotal": 275.76 + } + ], + "total_price": 592.58, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 8.29, + "expected_delivery": { + "$date": "2025-05-20T08:18:58.402Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.302Z" + } + }, + { + "order_id": "e3f2c847-41d8-43d0-86aa-28e5f528cab2", + "customer": { + "customer_id": "8f0dbd5a-c744-4817-9f44-6d4b9aa9c635", + "name": "Christopher Guzman", + "email": "ygraham@example.net", + "phone": "286.253.1764x754", + "address": { + "street": "5521 Lamb Mountains", + "city": "South Timothyshire", + "state": "Michigan", + "zip": "54273", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T05:17:15.947Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 161.07, + "subtotal": 322.14 + } + ], + "total_price": 322.14, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 10.48, + "expected_delivery": { + "$date": "2025-05-14T05:17:15.947Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.302Z" + } + }, + { + "order_id": "28c006e7-0745-4d54-8e29-db50595b78ba", + "customer": { + "customer_id": "d4c1e1cc-a788-4bf3-8066-bc5df832769c", + "name": "Jessica Murphy", + "email": "catherinepierce@example.com", + "phone": "9949258777", + "address": { + "street": "71762 Ford Loop", + "city": "East Rachel", + "state": "Oklahoma", + "zip": "80885", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T16:46:14.710Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 135.34, + "subtotal": 270.68 + }, + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 119.73, + "subtotal": 239.46 + } + ], + "total_price": 510.14, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 6.44, + "expected_delivery": { + "$date": "2025-05-14T16:46:14.710Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.302Z" + } + }, + { + "order_id": "b0fcd082-db01-45c5-806c-97c31d1509cf", + "customer": { + "customer_id": "77faa645-0665-40b4-ab34-9b4ef976a6a7", + "name": "Randy Rios", + "email": "joseph62@example.com", + "phone": "+1-843-372-6842", + "address": { + "street": "8824 Harris Ways", + "city": "Curtishaven", + "state": "Oklahoma", + "zip": "69993", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T09:01:59.652Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 162.34, + "subtotal": 324.68 + }, + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 1, + "unit_price": 84.88, + "subtotal": 84.88 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 138.21, + "subtotal": 138.21 + } + ], + "total_price": 547.77, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 10.62, + "expected_delivery": { + "$date": "2025-05-18T09:01:59.652Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.302Z" + } + }, + { + "order_id": "a475bb80-3d1d-4f32-bb37-2194af9fb248", + "customer": { + "customer_id": "5a0e7bdf-e48f-4c2f-b7b5-a37d3b76f7b6", + "name": "William Bradley", + "email": "christianreese@example.com", + "phone": "790.542.5638", + "address": { + "street": "44747 Travis Ranch Suite 102", + "city": "Fletcherfort", + "state": "Iowa", + "zip": "32470", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T17:18:56.843Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 167.31, + "subtotal": 334.62 + } + ], + "total_price": 334.62, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 5.67, + "expected_delivery": { + "$date": "2025-05-15T17:18:56.843Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.303Z" + } + }, + { + "order_id": "93b3d82d-d9c6-458f-83a9-8fe851ee72b4", + "customer": { + "customer_id": "1fd15034-ec73-46cc-b505-148a151b8d03", + "name": "Mr. Nicholas Jackson", + "email": "nicholas57@example.com", + "phone": "873.455.0155", + "address": { + "street": "729 Christian Dam", + "city": "Summersland", + "state": "Ohio", + "zip": "48982", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T07:47:10.424Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 156.42, + "subtotal": 156.42 + } + ], + "total_price": 156.42, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 7.9, + "expected_delivery": { + "$date": "2025-05-17T07:47:10.424Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.303Z" + } + }, + { + "order_id": "f440baad-5ba3-4664-b60c-0e2a1373d543", + "customer": { + "customer_id": "784b3799-28e6-4724-b14a-ae29789c469d", + "name": "Steve Rivera", + "email": "gmorales@example.net", + "phone": "976.275.2822x48687", + "address": { + "street": "59243 Adam Vista Apt. 643", + "city": "Lake Crystal", + "state": "Nebraska", + "zip": "72321", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T08:20:30.827Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 163.69, + "subtotal": 327.38 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 136.54, + "subtotal": 136.54 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 85.02, + "subtotal": 170.04 + } + ], + "total_price": 633.96, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 13.57, + "expected_delivery": { + "$date": "2025-05-13T08:20:30.827Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.303Z" + } + }, + { + "order_id": "6e85acb1-7a78-4c18-b0ee-d4b6054b5511", + "customer": { + "customer_id": "855acb1d-4e2c-4185-b51a-4c7e867ad880", + "name": "Teresa Smith", + "email": "william22@example.org", + "phone": "001-745-673-3539x577", + "address": { + "street": "8351 Jackson Highway", + "city": "North Sarah", + "state": "Delaware", + "zip": "22754", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T18:07:19.702Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 164.41, + "subtotal": 328.82 + }, + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 1, + "unit_price": 106.89, + "subtotal": 106.89 + }, + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 2, + "unit_price": 110.61, + "subtotal": 221.22 + } + ], + "total_price": 656.93, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 16.8, + "expected_delivery": { + "$date": "2025-05-17T18:07:19.702Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.303Z" + } + }, + { + "order_id": "b3da055a-13aa-487b-b9b8-f1c6328e7558", + "customer": { + "customer_id": "d0e9f695-4d37-4ea8-ac6a-02986772ecd8", + "name": "Stacey Conway", + "email": "larry29@example.net", + "phone": "934.421.3567x7814", + "address": { + "street": "4157 Allen Hill", + "city": "West Robert", + "state": "Minnesota", + "zip": "41336", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T22:33:09.807Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 2, + "unit_price": 95.23, + "subtotal": 190.46 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 1, + "unit_price": 145.03, + "subtotal": 145.03 + } + ], + "total_price": 335.49, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 7.6, + "expected_delivery": { + "$date": "2025-05-15T22:33:09.807Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.304Z" + } + }, + { + "order_id": "524df099-8d8e-4f6d-9bfb-1464ee36b479", + "customer": { + "customer_id": "5fff6fb4-02f5-49bf-995c-2adfaf6d1268", + "name": "Lisa Reed", + "email": "aperry@example.org", + "phone": "514.208.8502x5891", + "address": { + "street": "33372 George Orchard Suite 405", + "city": "Seanberg", + "state": "Colorado", + "zip": "58164", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T17:22:53.685Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 128.96, + "subtotal": 257.92 + }, + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 121.12, + "subtotal": 121.12 + } + ], + "total_price": 379.04, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 19.56, + "expected_delivery": { + "$date": "2025-05-12T17:22:53.685Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.304Z" + } + }, + { + "order_id": "009715ea-a176-4abe-9dbe-ed62ca25c0b5", + "customer": { + "customer_id": "f24d18c1-64c3-4ee4-b9be-909cc4085c25", + "name": "Charles Cooper", + "email": "vwilliams@example.com", + "phone": "822.935.5238x467", + "address": { + "street": "28643 Lauren Springs", + "city": "East Laura", + "state": "Oklahoma", + "zip": "23536", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T09:59:18.312Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 169.77, + "subtotal": 169.77 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 88.24, + "subtotal": 88.24 + }, + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 133.27, + "subtotal": 133.27 + } + ], + "total_price": 391.28, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 15.76, + "expected_delivery": { + "$date": "2025-05-12T09:59:18.312Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.304Z" + } + }, + { + "order_id": "48e7fc98-1fc8-4176-ab05-562aafc0aa5d", + "customer": { + "customer_id": "34942e2c-8c49-4b6a-b1a6-7956d4090018", + "name": "Kevin Hernandez", + "email": "nicolerodriguez@example.com", + "phone": "866-696-7923x366", + "address": { + "street": "00790 Carlson Alley Suite 267", + "city": "South Christianchester", + "state": "New Jersey", + "zip": "13785", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T23:10:59.967Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 94.37, + "subtotal": 94.37 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 101.58, + "subtotal": 203.16 + } + ], + "total_price": 297.53, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 14.88, + "expected_delivery": { + "$date": "2025-05-19T23:10:59.967Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.304Z" + } + }, + { + "order_id": "e4c76fc4-a099-4e08-9ac6-53aa6d6ced9b", + "customer": { + "customer_id": "4de1b1ed-0cb0-47c3-b7ef-7077d09fb3e6", + "name": "Deanna Dyer", + "email": "drowe@example.net", + "phone": "3364612605", + "address": { + "street": "67721 Heather Branch", + "city": "Port Williamshire", + "state": "Idaho", + "zip": "98894", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T18:44:32.356Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 81.14, + "subtotal": 162.28 + }, + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 1, + "unit_price": 70.24, + "subtotal": 70.24 + } + ], + "total_price": 232.52, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 8.47, + "expected_delivery": { + "$date": "2025-05-14T18:44:32.356Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.304Z" + } + }, + { + "order_id": "497d88da-0aa5-4168-a0ac-8d3331299faa", + "customer": { + "customer_id": "70c73209-5911-4892-8971-f6a6e51936c8", + "name": "Stacey Wheeler", + "email": "vduke@example.net", + "phone": "001-325-257-5954x04307", + "address": { + "street": "297 Brady Mountains Suite 686", + "city": "North Emilyshire", + "state": "Maryland", + "zip": "21850", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T12:26:48.687Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 170.64, + "subtotal": 170.64 + } + ], + "total_price": 170.64, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 9.65, + "expected_delivery": { + "$date": "2025-05-14T12:26:48.687Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.305Z" + } + }, + { + "order_id": "5cfdb86d-0ec9-451c-9a87-1d77ee6157c9", + "customer": { + "customer_id": "5bdf614a-a4ea-4de4-a9b3-5bf5d5970842", + "name": "Kaitlin Wilson", + "email": "alexander28@example.org", + "phone": "(594)708-5153", + "address": { + "street": "3208 Jason Meadows", + "city": "North Tamarafurt", + "state": "Pennsylvania", + "zip": "74280", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T15:31:58.423Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 1, + "unit_price": 134.0, + "subtotal": 134.0 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 82.52, + "subtotal": 82.52 + } + ], + "total_price": 216.52, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 14.36, + "expected_delivery": { + "$date": "2025-05-15T15:31:58.423Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.305Z" + } + }, + { + "order_id": "142835f8-9db6-4615-8229-2b6e068548b5", + "customer": { + "customer_id": "99e2bbef-37dc-42c6-8518-9102aad82add", + "name": "Elizabeth Wood", + "email": "hernandezcassandra@example.net", + "phone": "700.414.8373", + "address": { + "street": "4308 Annette Landing Apt. 429", + "city": "South Laura", + "state": "Rhode Island", + "zip": "79218", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T23:41:18.433Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 2, + "unit_price": 124.5, + "subtotal": 249.0 + } + ], + "total_price": 249.0, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 6.44, + "expected_delivery": { + "$date": "2025-05-18T23:41:18.433Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.305Z" + } + }, + { + "order_id": "9ede6283-b896-4846-830f-d16f74da6ccd", + "customer": { + "customer_id": "dbe0d786-7b88-4e62-8649-0f128664edf3", + "name": "Diana Burke", + "email": "richard50@example.net", + "phone": "(353)761-3467", + "address": { + "street": "5834 Branch Bridge", + "city": "Jonesland", + "state": "Mississippi", + "zip": "56674", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T07:28:18.265Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 165.7, + "subtotal": 331.4 + }, + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 176.33, + "subtotal": 352.66 + } + ], + "total_price": 684.06, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 18.63, + "expected_delivery": { + "$date": "2025-05-14T07:28:18.265Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.305Z" + } + }, + { + "order_id": "78626359-1069-41c5-9b0b-01de294513eb", + "customer": { + "customer_id": "9d58deaf-13f0-4c74-8d82-c8bc5e80e118", + "name": "Kristy Diaz", + "email": "woodsarthur@example.com", + "phone": "+1-343-918-7093x38925", + "address": { + "street": "10093 Mcguire Manor Suite 611", + "city": "Philiphaven", + "state": "Indiana", + "zip": "88678", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T20:05:16.665Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 129.6, + "subtotal": 129.6 + }, + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 1, + "unit_price": 96.15, + "subtotal": 96.15 + } + ], + "total_price": 225.75, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 15.8, + "expected_delivery": { + "$date": "2025-05-15T20:05:16.665Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.306Z" + } + }, + { + "order_id": "46e47839-c0d5-4860-a033-29e50b834f7f", + "customer": { + "customer_id": "d41b2708-666d-426b-8373-8047a1d50044", + "name": "Shawn Taylor", + "email": "david21@example.net", + "phone": "267-260-6688x495", + "address": { + "street": "1149 Adriana Drive Suite 974", + "city": "Ronnieside", + "state": "South Carolina", + "zip": "47070", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T06:23:04.590Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 76.77, + "subtotal": 153.54 + } + ], + "total_price": 153.54, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 13.62, + "expected_delivery": { + "$date": "2025-05-17T06:23:04.590Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.306Z" + } + }, + { + "order_id": "dc428296-2704-428d-9989-7eb7fb17cf47", + "customer": { + "customer_id": "25a178ab-fab8-414a-a1c2-b7f53b9ddc91", + "name": "Teresa Woods", + "email": "bhanna@example.net", + "phone": "+1-816-981-2881x806", + "address": { + "street": "906 Vickie Common Apt. 032", + "city": "West Yolanda", + "state": "West Virginia", + "zip": "95557", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T06:10:00.158Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 137.97, + "subtotal": 137.97 + }, + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 74.2, + "subtotal": 74.2 + } + ], + "total_price": 212.17, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 5.59, + "expected_delivery": { + "$date": "2025-05-10T06:10:00.158Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.306Z" + } + }, + { + "order_id": "753c24de-64ca-47bd-ac54-fefdeb6c0d86", + "customer": { + "customer_id": "57178644-d1d5-459f-a508-f6dfa63bccf8", + "name": "Hannah Lawson", + "email": "rebeccafoster@example.com", + "phone": "439-533-0365x525", + "address": { + "street": "8056 Alyssa River", + "city": "South Mark", + "state": "Minnesota", + "zip": "10699", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T16:25:45.126Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 160.97, + "subtotal": 160.97 + }, + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 176.23, + "subtotal": 176.23 + } + ], + "total_price": 337.2, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 17.31, + "expected_delivery": { + "$date": "2025-05-18T16:25:45.126Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.306Z" + } + }, + { + "order_id": "e361c5c2-56ac-4809-b2bd-f2795db4a7b8", + "customer": { + "customer_id": "4dc9266e-70e4-475a-83d2-ad0c378e26ad", + "name": "Trevor French", + "email": "walkerstephanie@example.com", + "phone": "+1-946-214-5734x5941", + "address": { + "street": "3956 Jacobs Crossing Apt. 860", + "city": "Dianeland", + "state": "New Jersey", + "zip": "58488", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T20:00:27.816Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 175.1, + "subtotal": 350.2 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 118.03, + "subtotal": 236.06 + }, + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 153.73, + "subtotal": 307.46 + } + ], + "total_price": 893.72, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 10.19, + "expected_delivery": { + "$date": "2025-05-14T20:00:27.816Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.306Z" + } + }, + { + "order_id": "f6f2d907-8042-48dd-b955-cdee9bb03d95", + "customer": { + "customer_id": "2e6add0a-bfc0-49fb-b6be-8d81d26fdbaf", + "name": "Austin Taylor", + "email": "ruthprince@example.com", + "phone": "820.826.0718x559", + "address": { + "street": "935 Mark Mission Suite 824", + "city": "Terriview", + "state": "Washington", + "zip": "35492", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T22:37:39.042Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 147.58, + "subtotal": 295.16 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 119.0, + "subtotal": 119.0 + }, + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 163.27, + "subtotal": 163.27 + } + ], + "total_price": 577.43, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 13.84, + "expected_delivery": { + "$date": "2025-05-16T22:37:39.042Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.307Z" + } + }, + { + "order_id": "9602a9da-c5a2-444b-9abf-5f9032124223", + "customer": { + "customer_id": "0d803af3-780e-491e-beb0-68ee85bdd832", + "name": "Jonathan Fuller", + "email": "christopherbrown@example.org", + "phone": "531.770.4807", + "address": { + "street": "3536 Melinda Port", + "city": "South Susan", + "state": "Kentucky", + "zip": "98049", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T00:07:53.762Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 106.65, + "subtotal": 213.3 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 122.35, + "subtotal": 122.35 + } + ], + "total_price": 335.65, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 11.17, + "expected_delivery": { + "$date": "2025-05-19T00:07:53.762Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.307Z" + } + }, + { + "order_id": "b0e7dee1-a26e-4c9a-832e-3257d661b193", + "customer": { + "customer_id": "4b144b65-dccc-428b-953d-6a958cd05aaa", + "name": "Kimberly Long", + "email": "xhobbs@example.com", + "phone": "(654)467-0216", + "address": { + "street": "43685 William Crescent Suite 942", + "city": "Lake Austinbury", + "state": "Iowa", + "zip": "25457", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T20:13:16.144Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 97.61, + "subtotal": 97.61 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 86.88, + "subtotal": 86.88 + }, + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 89.47, + "subtotal": 178.94 + } + ], + "total_price": 363.43, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 14.92, + "expected_delivery": { + "$date": "2025-05-14T20:13:16.144Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.307Z" + } + }, + { + "order_id": "345b10b4-da3c-47c5-836c-4ff190d88f5c", + "customer": { + "customer_id": "8b9e466c-e3e0-4b89-bb8a-11594e6e48f7", + "name": "Darren Jones", + "email": "zcollins@example.net", + "phone": "+1-921-221-7988x6392", + "address": { + "street": "7821 Brent Bypass", + "city": "North Elizabethfort", + "state": "Texas", + "zip": "04562", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T15:46:05.321Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 112.69, + "subtotal": 225.38 + } + ], + "total_price": 225.38, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 10.88, + "expected_delivery": { + "$date": "2025-05-18T15:46:05.321Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.307Z" + } + }, + { + "order_id": "1fbbc419-b5d2-4cb8-9f10-65c3e85f9240", + "customer": { + "customer_id": "3c8ccaf8-a1ab-40a8-856d-3d2ff3ed88af", + "name": "Christian Wright", + "email": "kevinflores@example.org", + "phone": "595.394.4135x2715", + "address": { + "street": "033 Ford Rest", + "city": "Bartonton", + "state": "Alabama", + "zip": "53818", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T12:00:01.312Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 101.45, + "subtotal": 101.45 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 78.77, + "subtotal": 157.54 + } + ], + "total_price": 258.99, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 6.9, + "expected_delivery": { + "$date": "2025-05-12T12:00:01.312Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.308Z" + } + }, + { + "order_id": "7b07e21e-5b8b-4ceb-bd94-83b7f1846ddb", + "customer": { + "customer_id": "5148dbff-d5fd-4a06-935a-94fefc72b603", + "name": "William Little", + "email": "parsonsjeremy@example.com", + "phone": "798-439-3778x6704", + "address": { + "street": "533 Dustin Islands", + "city": "New Natasha", + "state": "Tennessee", + "zip": "76541", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T05:12:57.963Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 79.88, + "subtotal": 159.76 + }, + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 108.3, + "subtotal": 216.6 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 174.88, + "subtotal": 174.88 + } + ], + "total_price": 551.24, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 18.95, + "expected_delivery": { + "$date": "2025-05-13T05:12:57.963Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.308Z" + } + }, + { + "order_id": "e17100ef-a436-4595-ab15-eb82452b49fe", + "customer": { + "customer_id": "8d1ef9c5-4c06-4bfd-8c4b-f8c697a9f715", + "name": "Jim Holland", + "email": "tuckerangela@example.org", + "phone": "001-771-744-0055x7260", + "address": { + "street": "498 Tracy Glen Suite 843", + "city": "Deanmouth", + "state": "Kansas", + "zip": "38457", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T11:24:06.278Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 117.11, + "subtotal": 234.22 + } + ], + "total_price": 234.22, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 17.96, + "expected_delivery": { + "$date": "2025-05-19T11:24:06.278Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.308Z" + } + }, + { + "order_id": "4e4be14d-0675-4dc4-801c-932da6dd9a8b", + "customer": { + "customer_id": "b79ea57d-8331-447b-85c3-813ba7100e85", + "name": "Elizabeth Arias", + "email": "mmiller@example.net", + "phone": "(522)923-0915", + "address": { + "street": "606 Daniel Causeway Suite 624", + "city": "North Rileystad", + "state": "Maryland", + "zip": "67045", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T02:35:27.792Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 2, + "unit_price": 136.78, + "subtotal": 273.56 + }, + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 142.77, + "subtotal": 285.54 + }, + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 1, + "unit_price": 167.6, + "subtotal": 167.6 + } + ], + "total_price": 726.7, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 13.24, + "expected_delivery": { + "$date": "2025-05-16T02:35:27.792Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.308Z" + } + }, + { + "order_id": "eb32c223-723c-4086-9284-503bcf1cb915", + "customer": { + "customer_id": "4baba249-7d05-4f63-8c2b-03b0abd799b5", + "name": "Molly Wilkerson", + "email": "laurie28@example.org", + "phone": "001-904-774-7484", + "address": { + "street": "3500 Campbell Ferry", + "city": "Rogerston", + "state": "Iowa", + "zip": "43992", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T05:51:15.876Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 150.75, + "subtotal": 301.5 + }, + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 63.79, + "subtotal": 63.79 + }, + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 69.59, + "subtotal": 69.59 + } + ], + "total_price": 434.88, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 15.82, + "expected_delivery": { + "$date": "2025-05-16T05:51:15.876Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.309Z" + } + }, + { + "order_id": "07be5fd6-7596-4b5b-9502-19745bee3b69", + "customer": { + "customer_id": "de963586-15a2-441f-b93e-786730cb8dce", + "name": "Eric Alvarez", + "email": "debbie47@example.org", + "phone": "702.997.6838", + "address": { + "street": "9458 Karen Mission", + "city": "Gibbshaven", + "state": "South Carolina", + "zip": "87144", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T19:21:01.898Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 68.22, + "subtotal": 68.22 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 1, + "unit_price": 128.52, + "subtotal": 128.52 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 144.37, + "subtotal": 288.74 + } + ], + "total_price": 485.48, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 6.66, + "expected_delivery": { + "$date": "2025-05-16T19:21:01.898Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.309Z" + } + }, + { + "order_id": "1c1383f3-0bf5-456d-88b1-d484943cb928", + "customer": { + "customer_id": "a591ffab-c01b-442b-8ef9-2ee5c98091ba", + "name": "Paula Lopez", + "email": "carla07@example.net", + "phone": "001-947-576-9508x2123", + "address": { + "street": "7200 Tina Extension", + "city": "Aliciafort", + "state": "Pennsylvania", + "zip": "00866", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T14:36:03.917Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 144.3, + "subtotal": 144.3 + } + ], + "total_price": 144.3, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 5.06, + "expected_delivery": { + "$date": "2025-05-16T14:36:03.917Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.309Z" + } + }, + { + "order_id": "d999b223-3bfb-4e24-ac8f-2df46af4bc8b", + "customer": { + "customer_id": "8b4ee61a-1f56-4ee4-a78f-1d311db20d06", + "name": "Daniel Torres", + "email": "annjones@example.net", + "phone": "(921)389-6897x642", + "address": { + "street": "80780 Janet Heights Suite 076", + "city": "Reyesport", + "state": "Nevada", + "zip": "97366", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T11:28:30.555Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 66.98, + "subtotal": 133.96 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 148.69, + "subtotal": 148.69 + } + ], + "total_price": 282.65, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 9.58, + "expected_delivery": { + "$date": "2025-05-14T11:28:30.555Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.309Z" + } + }, + { + "order_id": "eefd4e73-a37c-4b2e-88e2-8fc8bff6e217", + "customer": { + "customer_id": "2a31eebc-0dd0-41ce-aa64-42a1ab911bc6", + "name": "Lori Roy", + "email": "lperry@example.net", + "phone": "001-987-937-3844x33723", + "address": { + "street": "5301 Jerry Club Suite 100", + "city": "Kiddtown", + "state": "Arkansas", + "zip": "53663", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T03:28:28.574Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 79.98, + "subtotal": 159.96 + }, + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 2, + "unit_price": 144.84, + "subtotal": 289.68 + } + ], + "total_price": 449.64, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 17.73, + "expected_delivery": { + "$date": "2025-05-20T03:28:28.574Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.309Z" + } + }, + { + "order_id": "35c7b325-bcf9-4ca7-aab8-8eaee5b4c8e1", + "customer": { + "customer_id": "c62c1d1c-ffbc-4252-aafa-e843043c6818", + "name": "James Benjamin", + "email": "mark65@example.net", + "phone": "+1-982-221-9474x6918", + "address": { + "street": "6873 Jonathan River", + "city": "Tracimouth", + "state": "Vermont", + "zip": "99833", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T14:57:06.760Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 1, + "unit_price": 74.91, + "subtotal": 74.91 + } + ], + "total_price": 74.91, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 5.92, + "expected_delivery": { + "$date": "2025-05-12T14:57:06.760Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.310Z" + } + }, + { + "order_id": "1bc53878-aa4c-4219-8fee-ab5e3ed2929d", + "customer": { + "customer_id": "72cdb331-c22e-44d0-b3c4-e04fdd6f5e5a", + "name": "Tony Sanchez", + "email": "cwilson@example.com", + "phone": "001-612-777-7519x32464", + "address": { + "street": "585 Zuniga Terrace", + "city": "Anthonyburgh", + "state": "Maryland", + "zip": "45421", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T03:28:34.055Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 2, + "unit_price": 114.46, + "subtotal": 228.92 + }, + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 145.92, + "subtotal": 291.84 + }, + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 74.21, + "subtotal": 74.21 + } + ], + "total_price": 594.97, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 16.76, + "expected_delivery": { + "$date": "2025-05-17T03:28:34.055Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.310Z" + } + }, + { + "order_id": "ad76c695-8984-4014-8c92-5592dfbc0a97", + "customer": { + "customer_id": "24951a53-6c18-41ac-bc46-11c74a4eb359", + "name": "Miss Caroline Thompson", + "email": "bgrant@example.net", + "phone": "871-470-5664x63047", + "address": { + "street": "8521 Barnes Meadow", + "city": "Lindaside", + "state": "Utah", + "zip": "75280", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T10:28:55.022Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 1, + "unit_price": 84.28, + "subtotal": 84.28 + }, + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 134.1, + "subtotal": 268.2 + } + ], + "total_price": 352.48, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 13.11, + "expected_delivery": { + "$date": "2025-05-21T10:28:55.022Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.310Z" + } + }, + { + "order_id": "ca246518-ec63-415f-b067-2de4313401a1", + "customer": { + "customer_id": "6d24d539-9a8a-4b1b-830c-d3d2693727d6", + "name": "Mariah Harris", + "email": "hillbrett@example.com", + "phone": "374.597.1026", + "address": { + "street": "328 Hebert Mill Suite 812", + "city": "Elizabethmouth", + "state": "Idaho", + "zip": "14750", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T18:52:27.386Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 132.13, + "subtotal": 264.26 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 168.23, + "subtotal": 168.23 + } + ], + "total_price": 432.49, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 7.07, + "expected_delivery": { + "$date": "2025-05-14T18:52:27.386Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.310Z" + } + }, + { + "order_id": "57cf3d17-9705-43fc-9e78-f2bbac77319b", + "customer": { + "customer_id": "4e5cff83-bf41-469a-8e51-276f99e5ccd7", + "name": "Kirk Mcdowell", + "email": "bryanrussell@example.org", + "phone": "(798)658-8890", + "address": { + "street": "594 Le Pines", + "city": "Johnshire", + "state": "Alabama", + "zip": "83239", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T12:20:50.381Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 98.17, + "subtotal": 98.17 + }, + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 179.35, + "subtotal": 179.35 + } + ], + "total_price": 277.52, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 17.85, + "expected_delivery": { + "$date": "2025-05-19T12:20:50.381Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.311Z" + } + }, + { + "order_id": "d67790e4-ef30-4762-92da-8c7978e4bcd5", + "customer": { + "customer_id": "d8c19a30-bf4d-4402-bb47-56b98e822b7c", + "name": "April Harrell", + "email": "douglasfrank@example.org", + "phone": "729-535-6147", + "address": { + "street": "063 Wise Fork Suite 496", + "city": "New Michaeltown", + "state": "Virginia", + "zip": "65524", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T22:43:51.074Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 95.44, + "subtotal": 95.44 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 98.86, + "subtotal": 98.86 + }, + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 1, + "unit_price": 74.87, + "subtotal": 74.87 + } + ], + "total_price": 269.17, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 8.99, + "expected_delivery": { + "$date": "2025-05-17T22:43:51.074Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.311Z" + } + }, + { + "order_id": "408a86c2-2c74-4ea3-aa8a-f2ff037bfc89", + "customer": { + "customer_id": "eddb5139-48d9-4d9b-b8fe-0c56d5603590", + "name": "Gail Snow", + "email": "tperez@example.org", + "phone": "+1-314-715-6110x688", + "address": { + "street": "9096 Smith Canyon", + "city": "Jillland", + "state": "North Dakota", + "zip": "57746", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T08:13:13.505Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 162.31, + "subtotal": 162.31 + }, + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 1, + "unit_price": 168.69, + "subtotal": 168.69 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 107.73, + "subtotal": 107.73 + } + ], + "total_price": 438.73, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 5.36, + "expected_delivery": { + "$date": "2025-05-16T08:13:13.505Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.311Z" + } + }, + { + "order_id": "85890793-cf51-4b4d-b83c-e8e5aedf1808", + "customer": { + "customer_id": "f45a6b1b-2d88-4560-a719-2f7d31af70c8", + "name": "Brittney Turner", + "email": "mcbridemichael@example.org", + "phone": "+1-928-714-9201x5734", + "address": { + "street": "228 Travis Key Apt. 062", + "city": "Leonport", + "state": "Illinois", + "zip": "34105", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T13:36:31.781Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 1, + "unit_price": 170.09, + "subtotal": 170.09 + }, + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 163.5, + "subtotal": 163.5 + }, + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 86.87, + "subtotal": 173.74 + } + ], + "total_price": 507.33, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 13.23, + "expected_delivery": { + "$date": "2025-05-08T13:36:31.781Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.311Z" + } + }, + { + "order_id": "8091b754-7a5d-450e-b673-5345e6d8b8fe", + "customer": { + "customer_id": "751b59eb-09d8-4366-8932-13b6c25672a6", + "name": "Caleb Contreras", + "email": "wmiller@example.org", + "phone": "+1-994-653-3270x8556", + "address": { + "street": "6376 Daniel Stream Suite 944", + "city": "Jasminehaven", + "state": "Pennsylvania", + "zip": "70614", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T03:07:43.621Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 73.91, + "subtotal": 73.91 + }, + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 139.9, + "subtotal": 139.9 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 168.34, + "subtotal": 336.68 + } + ], + "total_price": 550.49, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 15.06, + "expected_delivery": { + "$date": "2025-05-12T03:07:43.621Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.312Z" + } + }, + { + "order_id": "512aa53d-2a48-4867-9547-480723b51f01", + "customer": { + "customer_id": "42fde813-efd3-4e32-b815-e73c96a1a0e4", + "name": "Deborah Lewis", + "email": "ryan13@example.com", + "phone": "+1-892-355-4139", + "address": { + "street": "665 Oliver Islands", + "city": "Port Tonya", + "state": "New Jersey", + "zip": "10374", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T13:49:58.162Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 1, + "unit_price": 137.87, + "subtotal": 137.87 + }, + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 2, + "unit_price": 110.26, + "subtotal": 220.52 + } + ], + "total_price": 358.39, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 14.14, + "expected_delivery": { + "$date": "2025-05-13T13:49:58.162Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.312Z" + } + }, + { + "order_id": "787efca2-1b89-4070-b357-f3561368a658", + "customer": { + "customer_id": "3d0c6fd8-57e1-4233-a484-89254e4ddd13", + "name": "John Snyder", + "email": "feliciaschmitt@example.com", + "phone": "+1-526-481-9140x3971", + "address": { + "street": "30634 Ronald Isle", + "city": "Beverlystad", + "state": "Utah", + "zip": "81709", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T18:21:32.559Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 126.18, + "subtotal": 252.36 + }, + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 147.34, + "subtotal": 147.34 + } + ], + "total_price": 399.7, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 15.09, + "expected_delivery": { + "$date": "2025-05-12T18:21:32.559Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.312Z" + } + }, + { + "order_id": "a520fc27-3176-48ac-9042-2217cc0ee23e", + "customer": { + "customer_id": "81b845c0-c13d-43af-8d4e-088a819aa41d", + "name": "Dr. Kristen Williams MD", + "email": "johnnyhernandez@example.org", + "phone": "2236949872", + "address": { + "street": "9494 Jones Forge Suite 762", + "city": "Jamieburgh", + "state": "Minnesota", + "zip": "02727", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T21:04:02.563Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 159.52, + "subtotal": 159.52 + }, + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 179.31, + "subtotal": 358.62 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 105.76, + "subtotal": 211.52 + } + ], + "total_price": 729.66, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 14.84, + "expected_delivery": { + "$date": "2025-05-18T21:04:02.563Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.312Z" + } + }, + { + "order_id": "e54724f7-a1b1-4e5b-b391-6429547ddcba", + "customer": { + "customer_id": "3783746a-d4ab-4280-adc4-f4b57757ae5b", + "name": "Samantha Jones", + "email": "tammycannon@example.org", + "phone": "(357)377-1991", + "address": { + "street": "72563 Chad Crest", + "city": "Port Ryanbury", + "state": "Kentucky", + "zip": "92291", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T03:13:28.650Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 143.92, + "subtotal": 287.84 + } + ], + "total_price": 287.84, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 7.27, + "expected_delivery": { + "$date": "2025-05-15T03:13:28.650Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.313Z" + } + }, + { + "order_id": "2dcc4d7f-3859-4a05-9930-7b2619455093", + "customer": { + "customer_id": "0e50c5e9-6051-4c3c-9655-a2e54f24503b", + "name": "Courtney Johnson", + "email": "jacquelinewoods@example.net", + "phone": "536-336-2421", + "address": { + "street": "307 Meadows Rapids Suite 453", + "city": "Hendrixstad", + "state": "Arizona", + "zip": "23660", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T03:01:27.612Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 60.56, + "subtotal": 60.56 + } + ], + "total_price": 60.56, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 12.2, + "expected_delivery": { + "$date": "2025-05-15T03:01:27.612Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.313Z" + } + }, + { + "order_id": "b21ac882-021c-4ec4-ad96-429d9c2e617f", + "customer": { + "customer_id": "e96d7a27-62bf-4ae3-8111-d20bf8573b06", + "name": "Dr. Joseph Good", + "email": "julie96@example.org", + "phone": "001-601-879-0636", + "address": { + "street": "70806 Amber Walk Suite 052", + "city": "Jackland", + "state": "Arkansas", + "zip": "73951", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T04:15:48.555Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 139.32, + "subtotal": 278.64 + } + ], + "total_price": 278.64, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 15.03, + "expected_delivery": { + "$date": "2025-05-18T04:15:48.555Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.313Z" + } + }, + { + "order_id": "f07a0578-fa28-423f-ac9b-45f48edf7485", + "customer": { + "customer_id": "2cfd74af-0c37-4134-9a5e-1c61cf13e2be", + "name": "Patrick Montoya", + "email": "twest@example.org", + "phone": "+1-320-731-2938x11224", + "address": { + "street": "98475 Lynn Mall", + "city": "New Debra", + "state": "West Virginia", + "zip": "14414", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T04:38:04.452Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 153.98, + "subtotal": 307.96 + } + ], + "total_price": 307.96, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 12.85, + "expected_delivery": { + "$date": "2025-05-14T04:38:04.452Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.313Z" + } + }, + { + "order_id": "577c0648-0b40-47f5-96c0-d017b4659f87", + "customer": { + "customer_id": "a9fcd17b-6fdd-49d0-aee1-3d4526ef6c16", + "name": "Sara Hess", + "email": "fischerryan@example.org", + "phone": "817.885.8865", + "address": { + "street": "79984 Christopher Burgs", + "city": "North Stevenfort", + "state": "Utah", + "zip": "93314", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T09:36:00.966Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 147.17, + "subtotal": 294.34 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 167.56, + "subtotal": 167.56 + }, + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 137.71, + "subtotal": 275.42 + } + ], + "total_price": 737.32, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 5.47, + "expected_delivery": { + "$date": "2025-05-21T09:36:00.966Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.313Z" + } + }, + { + "order_id": "477e7a4c-1eb6-4714-aa4a-d1b9b8a2ac52", + "customer": { + "customer_id": "46c880df-fc2f-40f7-8f3f-74f982a7c1ef", + "name": "Donna Wagner", + "email": "richardsjeff@example.com", + "phone": "384-505-7351", + "address": { + "street": "86213 Kathleen Coves", + "city": "East Jonathanstad", + "state": "New York", + "zip": "21192", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T06:29:22.301Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 133.82, + "subtotal": 133.82 + }, + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 138.45, + "subtotal": 138.45 + } + ], + "total_price": 272.27, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 9.04, + "expected_delivery": { + "$date": "2025-05-10T06:29:22.301Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.314Z" + } + }, + { + "order_id": "4e87cdfb-f55a-44ba-a855-9de13ca4ca61", + "customer": { + "customer_id": "9831a941-5734-4099-9825-84e77bf9e7ff", + "name": "Sandra Andrews MD", + "email": "christopher93@example.net", + "phone": "910.653.9025x10184", + "address": { + "street": "2146 Kenneth Key", + "city": "West Kathleenton", + "state": "Michigan", + "zip": "85323", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T08:36:04.866Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 1, + "unit_price": 113.78, + "subtotal": 113.78 + }, + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 84.18, + "subtotal": 84.18 + } + ], + "total_price": 197.96, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 11.06, + "expected_delivery": { + "$date": "2025-05-15T08:36:04.866Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.314Z" + } + }, + { + "order_id": "4c7493f3-afb1-4ddc-9627-b842cbe239e3", + "customer": { + "customer_id": "a379105d-fe38-4e79-85d6-f496e0a4e967", + "name": "Collin Garcia", + "email": "royjohnson@example.com", + "phone": "001-201-548-4840x556", + "address": { + "street": "62865 Roger Crest", + "city": "West Stephenburgh", + "state": "Georgia", + "zip": "81427", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T10:54:59.053Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 1, + "unit_price": 127.78, + "subtotal": 127.78 + } + ], + "total_price": 127.78, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 17.31, + "expected_delivery": { + "$date": "2025-05-10T10:54:59.053Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.314Z" + } + }, + { + "order_id": "a9e1aa27-1d2c-4746-b98c-afb35672dbd5", + "customer": { + "customer_id": "d48269b4-e11a-4765-a1c6-d7752dcc0392", + "name": "Brandon Skinner", + "email": "nicolemeyer@example.net", + "phone": "266.334.7156x2105", + "address": { + "street": "061 Morrow Rest Apt. 974", + "city": "Halltown", + "state": "Kentucky", + "zip": "77088", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T03:24:10.836Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 155.06, + "subtotal": 155.06 + } + ], + "total_price": 155.06, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 17.66, + "expected_delivery": { + "$date": "2025-05-14T03:24:10.836Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.314Z" + } + }, + { + "order_id": "c072f7f7-c550-467f-a334-fa55ec34f765", + "customer": { + "customer_id": "3290c151-accf-497a-876c-ab3bf7aaaa5a", + "name": "Jamie Valdez", + "email": "kyle51@example.org", + "phone": "394-795-7157x59681", + "address": { + "street": "04726 Rachel Prairie Apt. 389", + "city": "Lake Bonniebury", + "state": "Illinois", + "zip": "91387", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T02:30:58.389Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 76.35, + "subtotal": 76.35 + } + ], + "total_price": 76.35, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 8.49, + "expected_delivery": { + "$date": "2025-05-18T02:30:58.389Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.315Z" + } + }, + { + "order_id": "ea11c50c-5103-4e4f-92ae-7fcb2c5db7e9", + "customer": { + "customer_id": "5df73ab3-a0c5-4d51-b515-8118233523f4", + "name": "Ms. Jill Johnson DVM", + "email": "lnguyen@example.net", + "phone": "3714417078", + "address": { + "street": "83720 Sara Pike Apt. 796", + "city": "Dawnland", + "state": "Connecticut", + "zip": "23189", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T22:33:58.410Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 89.55, + "subtotal": 179.1 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 157.53, + "subtotal": 315.06 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 168.57, + "subtotal": 168.57 + } + ], + "total_price": 662.73, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 16.15, + "expected_delivery": { + "$date": "2025-05-17T22:33:58.410Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.315Z" + } + }, + { + "order_id": "fc05054c-b546-4c53-8d5c-168092e0ac52", + "customer": { + "customer_id": "0510cd64-4548-496b-90d2-16490652295e", + "name": "Rachel Dean", + "email": "john99@example.org", + "phone": "+1-651-212-4803x3969", + "address": { + "street": "78391 Michael Station Suite 586", + "city": "Lake Laurenborough", + "state": "South Dakota", + "zip": "79201", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T16:07:51.740Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 123.85, + "subtotal": 123.85 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 72.3, + "subtotal": 72.3 + }, + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 83.94, + "subtotal": 83.94 + } + ], + "total_price": 280.09, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 16.18, + "expected_delivery": { + "$date": "2025-05-14T16:07:51.740Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.315Z" + } + }, + { + "order_id": "da3238f1-860d-4f5e-afd9-92c5a3b26630", + "customer": { + "customer_id": "ae6dfcd1-3697-4a9c-8848-af8d7382dd64", + "name": "Justin Rhodes", + "email": "kyle18@example.net", + "phone": "2294360198", + "address": { + "street": "3737 Jordan Viaduct Suite 520", + "city": "Lake Kellyside", + "state": "Missouri", + "zip": "66915", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T01:18:03.313Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 84.75, + "subtotal": 84.75 + } + ], + "total_price": 84.75, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 5.31, + "expected_delivery": { + "$date": "2025-05-14T01:18:03.313Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.315Z" + } + }, + { + "order_id": "79f68d01-b9e0-4f3b-acf5-035a22fcf437", + "customer": { + "customer_id": "03050485-5a88-4792-8638-70fdff227eb5", + "name": "Charles Rice", + "email": "joshua12@example.com", + "phone": "001-866-626-9539", + "address": { + "street": "139 Lisa Forge", + "city": "Grayside", + "state": "California", + "zip": "51871", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T17:41:27.758Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 154.87, + "subtotal": 154.87 + } + ], + "total_price": 154.87, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 17.0, + "expected_delivery": { + "$date": "2025-05-17T17:41:27.758Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.315Z" + } + }, + { + "order_id": "3c4bd9d2-d0f5-410d-b92d-19cdae8f7b62", + "customer": { + "customer_id": "160e2240-681b-4b45-b150-a2d546dc87a4", + "name": "Andrea Espinoza", + "email": "dgarner@example.net", + "phone": "968-718-0085", + "address": { + "street": "0054 Massey Junctions Apt. 996", + "city": "East Tanyaside", + "state": "Kansas", + "zip": "51288", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T18:26:27.429Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 80.7, + "subtotal": 161.4 + } + ], + "total_price": 161.4, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 13.12, + "expected_delivery": { + "$date": "2025-05-17T18:26:27.429Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.316Z" + } + }, + { + "order_id": "1b544843-7835-4b59-8627-654d0930bb32", + "customer": { + "customer_id": "1ed64561-4110-4b4a-bd47-3681d8067f82", + "name": "Keith Houston", + "email": "brandywalker@example.net", + "phone": "788-488-6643", + "address": { + "street": "33041 Curry Extension Suite 716", + "city": "East Josephmouth", + "state": "Oklahoma", + "zip": "44610", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T11:57:57.170Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 72.55, + "subtotal": 145.1 + } + ], + "total_price": 145.1, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 5.55, + "expected_delivery": { + "$date": "2025-05-13T11:57:57.170Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.316Z" + } + }, + { + "order_id": "f7fb7534-3736-4042-af2f-33ec15cea52d", + "customer": { + "customer_id": "7e11c21f-55f1-4cc1-a969-17da402a3b3a", + "name": "Jesus Carter", + "email": "nguyenlawrence@example.org", + "phone": "(604)237-3297x079", + "address": { + "street": "39596 Allen Mount Suite 234", + "city": "Kevinport", + "state": "Oregon", + "zip": "89578", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T02:56:11.854Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 2, + "unit_price": 132.73, + "subtotal": 265.46 + }, + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 168.61, + "subtotal": 337.22 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 161.37, + "subtotal": 161.37 + } + ], + "total_price": 764.05, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 9.97, + "expected_delivery": { + "$date": "2025-05-13T02:56:11.854Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.316Z" + } + }, + { + "order_id": "256d2c39-e551-4fb1-871a-16877b8fc0e5", + "customer": { + "customer_id": "c2005231-f2d5-41fe-aa02-d7c407a846b0", + "name": "Justin Calhoun", + "email": "rhogan@example.org", + "phone": "001-577-535-6941", + "address": { + "street": "761 Anna Ramp Apt. 414", + "city": "Kimberlyside", + "state": "Pennsylvania", + "zip": "27335", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T03:13:02.456Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 122.12, + "subtotal": 244.24 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 150.08, + "subtotal": 300.16 + } + ], + "total_price": 544.4, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 13.19, + "expected_delivery": { + "$date": "2025-05-16T03:13:02.456Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.316Z" + } + }, + { + "order_id": "8bc9eaf1-c1f5-466f-be09-b6ac2fddc7cd", + "customer": { + "customer_id": "c7c88503-d592-4317-b699-2b4f1471f46c", + "name": "Hannah Higgins", + "email": "jack73@example.com", + "phone": "001-527-578-0401x36902", + "address": { + "street": "2875 Collins Land", + "city": "Bryantborough", + "state": "Connecticut", + "zip": "35641", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T02:35:04.830Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 152.78, + "subtotal": 152.78 + }, + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 77.33, + "subtotal": 154.66 + } + ], + "total_price": 307.44, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 12.17, + "expected_delivery": { + "$date": "2025-05-19T02:35:04.830Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.317Z" + } + }, + { + "order_id": "4c0adcf4-7566-4a6c-8038-5923af205a62", + "customer": { + "customer_id": "3b33a2d1-4355-41ff-b78a-ba92cf5dd6b2", + "name": "Brenda Henderson", + "email": "sabrinawoods@example.com", + "phone": "(628)478-2484x82381", + "address": { + "street": "909 Mcgee Extension", + "city": "North John", + "state": "Louisiana", + "zip": "76040", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T05:43:39.446Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 1, + "unit_price": 61.38, + "subtotal": 61.38 + }, + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 127.19, + "subtotal": 127.19 + } + ], + "total_price": 188.57, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 6.63, + "expected_delivery": { + "$date": "2025-05-15T05:43:39.446Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.317Z" + } + }, + { + "order_id": "78b5834c-2ddc-49b6-875b-d4ca25676fd5", + "customer": { + "customer_id": "c7230d5e-3fd2-447b-9dd0-0608da642ab3", + "name": "Paula Morales", + "email": "ryan95@example.com", + "phone": "+1-429-423-6560x060", + "address": { + "street": "30627 Luis Stream", + "city": "New Ericamouth", + "state": "Delaware", + "zip": "57498", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T17:57:17.797Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 62.68, + "subtotal": 62.68 + }, + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 63.03, + "subtotal": 126.06 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 140.44, + "subtotal": 140.44 + } + ], + "total_price": 329.18, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 13.34, + "expected_delivery": { + "$date": "2025-05-13T17:57:17.797Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.317Z" + } + }, + { + "order_id": "4b7fcf7b-2173-4286-a017-4c95f8045621", + "customer": { + "customer_id": "50ab1685-1ad3-40d1-9abc-da3874d5eaad", + "name": "Tracy Taylor", + "email": "yoderchristopher@example.com", + "phone": "653-415-7229x066", + "address": { + "street": "79454 Gutierrez Walk Apt. 097", + "city": "Rayhaven", + "state": "Kentucky", + "zip": "44001", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T04:26:47.176Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 80.99, + "subtotal": 80.99 + }, + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 135.67, + "subtotal": 135.67 + }, + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 2, + "unit_price": 125.07, + "subtotal": 250.14 + } + ], + "total_price": 466.8, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 14.22, + "expected_delivery": { + "$date": "2025-05-18T04:26:47.176Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.317Z" + } + }, + { + "order_id": "2788c54c-856b-44e7-a698-17ecd9a97a7e", + "customer": { + "customer_id": "f4369411-398b-4942-8c0a-a2acec96e4a9", + "name": "Marissa Andrade", + "email": "kimmanning@example.org", + "phone": "(853)712-1933x985", + "address": { + "street": "2915 Lucero Pine", + "city": "West Shannon", + "state": "Indiana", + "zip": "51588", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T18:44:54.177Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 179.61, + "subtotal": 179.61 + } + ], + "total_price": 179.61, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 14.27, + "expected_delivery": { + "$date": "2025-05-18T18:44:54.177Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.318Z" + } + }, + { + "order_id": "a497944e-53b5-4256-bfe2-3f998ddfedae", + "customer": { + "customer_id": "b7bd9b09-37f4-4ae7-93a4-e07fa083f564", + "name": "John York", + "email": "zmassey@example.org", + "phone": "+1-580-227-7494", + "address": { + "street": "48892 Gibson Divide Suite 101", + "city": "New Jackie", + "state": "Pennsylvania", + "zip": "49038", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T05:10:26.308Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 121.94, + "subtotal": 121.94 + } + ], + "total_price": 121.94, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 8.0, + "expected_delivery": { + "$date": "2025-05-14T05:10:26.308Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.318Z" + } + }, + { + "order_id": "7fc5d78f-ec46-417e-a2ad-54fb9ca37ff9", + "customer": { + "customer_id": "572f37ef-7f61-4f3b-a426-fd3441e55a6e", + "name": "Zoe Romero", + "email": "taylorwilliam@example.com", + "phone": "001-951-473-2262x57378", + "address": { + "street": "26156 Patel Mountain", + "city": "Jasmineville", + "state": "Pennsylvania", + "zip": "57087", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T04:59:39.293Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 160.78, + "subtotal": 321.56 + }, + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 77.41, + "subtotal": 77.41 + } + ], + "total_price": 398.97, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 13.38, + "expected_delivery": { + "$date": "2025-05-15T04:59:39.293Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.318Z" + } + }, + { + "order_id": "24171d50-0717-410a-a5b2-f3c1649bc3bf", + "customer": { + "customer_id": "2572576f-563a-469b-876e-cfd5d70e98ac", + "name": "Alicia Acevedo", + "email": "travisperry@example.net", + "phone": "299-816-2581x73791", + "address": { + "street": "6063 Harris Port Apt. 649", + "city": "Christinaland", + "state": "Kansas", + "zip": "93452", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T16:25:13.660Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 2, + "unit_price": 71.13, + "subtotal": 142.26 + } + ], + "total_price": 142.26, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 12.13, + "expected_delivery": { + "$date": "2025-05-16T16:25:13.660Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.318Z" + } + }, + { + "order_id": "74511d30-882d-4303-99aa-1fbd001a20a4", + "customer": { + "customer_id": "5755199a-8586-4216-b61c-0dab6de36547", + "name": "Amy Wilson", + "email": "joanna60@example.net", + "phone": "(559)814-9316x81203", + "address": { + "street": "226 Michael Viaduct Suite 022", + "city": "East Brandon", + "state": "South Dakota", + "zip": "05111", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T20:32:40.728Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 110.79, + "subtotal": 221.58 + } + ], + "total_price": 221.58, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 17.01, + "expected_delivery": { + "$date": "2025-05-19T20:32:40.728Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.319Z" + } + }, + { + "order_id": "f051483e-e82e-45b7-80e4-fe5986489771", + "customer": { + "customer_id": "462fde15-0f89-477b-8622-112699c74415", + "name": "Frederick Cunningham", + "email": "denise58@example.net", + "phone": "482.303.8143x674", + "address": { + "street": "4972 Ashley Mountains Apt. 818", + "city": "South David", + "state": "Florida", + "zip": "23671", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T19:04:26.817Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 157.24, + "subtotal": 314.48 + } + ], + "total_price": 314.48, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 6.91, + "expected_delivery": { + "$date": "2025-05-16T19:04:26.817Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.319Z" + } + }, + { + "order_id": "dd93968a-980c-4e9b-96c8-1b68a5c98950", + "customer": { + "customer_id": "c4e32e96-1c38-470d-8389-640aad41f8c3", + "name": "Amber Jones", + "email": "sanchezemily@example.org", + "phone": "(400)800-4203x823", + "address": { + "street": "507 Gina Place", + "city": "New Michaelville", + "state": "Michigan", + "zip": "65607", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T16:24:20.001Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 144.83, + "subtotal": 144.83 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 135.56, + "subtotal": 271.12 + } + ], + "total_price": 415.95, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 14.28, + "expected_delivery": { + "$date": "2025-05-19T16:24:20.001Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.319Z" + } + }, + { + "order_id": "1f25562b-526e-4a02-baab-5c7708d68ed5", + "customer": { + "customer_id": "435a2a37-58b0-4926-9cfe-bbb31ea98975", + "name": "Leonard Miller", + "email": "kerri43@example.org", + "phone": "(898)310-3275x711", + "address": { + "street": "620 Lisa Villages", + "city": "Ballland", + "state": "Maryland", + "zip": "35147", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T14:05:42.715Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 125.76, + "subtotal": 125.76 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 74.55, + "subtotal": 149.1 + }, + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 137.0, + "subtotal": 137.0 + } + ], + "total_price": 411.86, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 10.56, + "expected_delivery": { + "$date": "2025-05-12T14:05:42.715Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.319Z" + } + }, + { + "order_id": "43e8aa62-f719-4448-8775-49bda8c1d9a9", + "customer": { + "customer_id": "21372705-6f01-46da-910a-a1bbc25ce137", + "name": "Amy Campbell", + "email": "earlcross@example.org", + "phone": "515-960-0330", + "address": { + "street": "73417 Barker Mews", + "city": "West Davidshire", + "state": "Rhode Island", + "zip": "25001", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T21:52:12.807Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 124.26, + "subtotal": 124.26 + }, + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 156.39, + "subtotal": 156.39 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 63.41, + "subtotal": 126.82 + } + ], + "total_price": 407.47, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 8.22, + "expected_delivery": { + "$date": "2025-05-13T21:52:12.807Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.319Z" + } + }, + { + "order_id": "a01ae59c-9ed6-47e0-b10f-5a4a80808abb", + "customer": { + "customer_id": "26c7256e-144b-401e-b654-a475dc48749d", + "name": "Megan Robinson", + "email": "kimberly40@example.org", + "phone": "+1-726-738-9516x2105", + "address": { + "street": "710 Miguel Club Suite 514", + "city": "Andreaview", + "state": "Rhode Island", + "zip": "90809", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T15:13:45.663Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 93.88, + "subtotal": 187.76 + }, + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 123.91, + "subtotal": 123.91 + } + ], + "total_price": 311.67, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 8.45, + "expected_delivery": { + "$date": "2025-05-15T15:13:45.663Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.320Z" + } + }, + { + "order_id": "f857abc5-b4b2-45f5-ae82-bb4eeaf25786", + "customer": { + "customer_id": "ab3d652f-09fc-4739-8850-8394b16e363f", + "name": "Justin Mccann", + "email": "hannah29@example.com", + "phone": "001-383-683-5352x56526", + "address": { + "street": "49538 Carroll Unions Apt. 474", + "city": "Kaylahaven", + "state": "Rhode Island", + "zip": "27878", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T16:51:23.680Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 174.9, + "subtotal": 349.8 + }, + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 122.44, + "subtotal": 122.44 + } + ], + "total_price": 472.24, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 10.47, + "expected_delivery": { + "$date": "2025-05-15T16:51:23.680Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.320Z" + } + }, + { + "order_id": "e8e663bf-4562-4254-8f0b-1e192d602922", + "customer": { + "customer_id": "ee4b18d1-9bcb-4d4e-a04c-7f57849b2081", + "name": "Christine Powell", + "email": "bobby20@example.org", + "phone": "001-349-693-1702x7574", + "address": { + "street": "83958 Ashlee Lakes", + "city": "North Mauricestad", + "state": "Nevada", + "zip": "08797", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T13:31:36.445Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 123.87, + "subtotal": 123.87 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 159.99, + "subtotal": 319.98 + }, + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 161.42, + "subtotal": 322.84 + } + ], + "total_price": 766.69, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 6.65, + "expected_delivery": { + "$date": "2025-05-19T13:31:36.445Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.320Z" + } + }, + { + "order_id": "1d0a4e36-8854-4835-b17b-d3bb79747b3d", + "customer": { + "customer_id": "2bd5d247-dd39-4bd2-a3ed-28f2be80d176", + "name": "Hunter Marshall", + "email": "hbailey@example.net", + "phone": "(886)881-2842", + "address": { + "street": "7021 Anderson Mount", + "city": "Shermanland", + "state": "Louisiana", + "zip": "72340", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T00:16:11.740Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 81.94, + "subtotal": 163.88 + } + ], + "total_price": 163.88, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 5.39, + "expected_delivery": { + "$date": "2025-05-14T00:16:11.740Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.320Z" + } + }, + { + "order_id": "c707dc3c-c21c-442f-866b-a85439a0425c", + "customer": { + "customer_id": "acc566af-ab6a-4550-a869-4250c0d3b1ba", + "name": "Melanie Obrien", + "email": "shafferamanda@example.com", + "phone": "(725)317-0105x215", + "address": { + "street": "4480 Case Summit Apt. 917", + "city": "Aprilstad", + "state": "Wisconsin", + "zip": "36885", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T01:12:50.087Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 1, + "unit_price": 62.14, + "subtotal": 62.14 + }, + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 64.29, + "subtotal": 128.58 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 83.35, + "subtotal": 83.35 + } + ], + "total_price": 274.07, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 9.5, + "expected_delivery": { + "$date": "2025-05-15T01:12:50.087Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.321Z" + } + }, + { + "order_id": "58ac3fd2-cf86-4c09-8c5c-bac872c2db9f", + "customer": { + "customer_id": "afd9a3cc-6393-4fd7-8025-5b0e020de663", + "name": "Kathleen Rivera", + "email": "huertawilliam@example.net", + "phone": "657-494-8577x62394", + "address": { + "street": "464 Burns Mission Apt. 556", + "city": "Jamesshire", + "state": "Missouri", + "zip": "63794", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T03:31:03.479Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 122.14, + "subtotal": 122.14 + } + ], + "total_price": 122.14, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 14.56, + "expected_delivery": { + "$date": "2025-05-19T03:31:03.479Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.321Z" + } + }, + { + "order_id": "5a1454fa-916b-4daa-b893-40574aa75dd7", + "customer": { + "customer_id": "8655a401-4b89-4e86-a7eb-21c86fe30d40", + "name": "Samantha Schaefer", + "email": "tammydunlap@example.com", + "phone": "8589434001", + "address": { + "street": "85656 Caitlin River Apt. 879", + "city": "New Paulfurt", + "state": "Virginia", + "zip": "40026", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T07:49:01.103Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 1, + "unit_price": 76.05, + "subtotal": 76.05 + } + ], + "total_price": 76.05, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 14.96, + "expected_delivery": { + "$date": "2025-05-16T07:49:01.103Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.321Z" + } + }, + { + "order_id": "ce6ca18c-c29d-49c0-b733-66cc5b06aced", + "customer": { + "customer_id": "eb246d16-5a1a-46fc-a1df-b9afa3a275d7", + "name": "Daisy Gallagher", + "email": "sullivanbenjamin@example.net", + "phone": "(799)609-7162x465", + "address": { + "street": "94781 Dillon Grove", + "city": "New Paulaville", + "state": "Texas", + "zip": "72967", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T22:06:58.675Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 147.07, + "subtotal": 294.14 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 1, + "unit_price": 127.54, + "subtotal": 127.54 + }, + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 1, + "unit_price": 179.41, + "subtotal": 179.41 + } + ], + "total_price": 601.09, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 18.39, + "expected_delivery": { + "$date": "2025-05-18T22:06:58.675Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.321Z" + } + }, + { + "order_id": "397d032b-6913-4e8f-b446-0b42232fdef4", + "customer": { + "customer_id": "711137c9-e6d8-4e29-b8a9-9110bb4ddc3d", + "name": "Andrea Martinez", + "email": "walterdeborah@example.net", + "phone": "402.622.4578x72254", + "address": { + "street": "95841 Lewis Falls", + "city": "West Ravenhaven", + "state": "Georgia", + "zip": "41203", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T09:29:34.950Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 86.36, + "subtotal": 86.36 + }, + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 68.3, + "subtotal": 136.6 + } + ], + "total_price": 222.96, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 8.91, + "expected_delivery": { + "$date": "2025-05-14T09:29:34.950Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.321Z" + } + }, + { + "order_id": "3e7aa9de-b6d9-4be0-929f-05394c8d749c", + "customer": { + "customer_id": "16c65e1f-05ab-4138-9e7a-19dd0f4e431f", + "name": "Emma Avila", + "email": "gcosta@example.net", + "phone": "770.839.8838x323", + "address": { + "street": "17262 Stewart Rapids", + "city": "Michaelport", + "state": "Alaska", + "zip": "04004", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T19:09:38.419Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 167.23, + "subtotal": 167.23 + } + ], + "total_price": 167.23, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 16.24, + "expected_delivery": { + "$date": "2025-05-11T19:09:38.419Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.322Z" + } + }, + { + "order_id": "5ac87a74-a3c2-4b3e-a95b-a520c2e603fc", + "customer": { + "customer_id": "3e7f5e73-d3a8-47a2-9f31-1f74afd32da8", + "name": "Kristy Morales", + "email": "jefferymckenzie@example.com", + "phone": "718-214-4136x56373", + "address": { + "street": "03437 Toni Drive", + "city": "Kristinafurt", + "state": "Utah", + "zip": "97070", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T04:08:50.571Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 137.82, + "subtotal": 137.82 + } + ], + "total_price": 137.82, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 7.46, + "expected_delivery": { + "$date": "2025-05-17T04:08:50.571Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.322Z" + } + }, + { + "order_id": "7dccc7ef-d20f-4dce-abfe-9c1cdbe1aa13", + "customer": { + "customer_id": "d39fc65b-7a09-4ec4-8b7f-830bb6e67d1a", + "name": "Sue Nguyen", + "email": "bbaker@example.com", + "phone": "796-624-1036", + "address": { + "street": "328 Mcclain Keys", + "city": "Davidmouth", + "state": "Colorado", + "zip": "22668", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T19:02:38.242Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 145.98, + "subtotal": 291.96 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 170.33, + "subtotal": 340.66 + }, + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 81.59, + "subtotal": 163.18 + } + ], + "total_price": 795.8, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 14.51, + "expected_delivery": { + "$date": "2025-05-15T19:02:38.242Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.322Z" + } + }, + { + "order_id": "9c28e2ca-8d26-4474-ad4b-5046fa29072f", + "customer": { + "customer_id": "3d8e4d04-ab16-477d-9f59-b259357d0b58", + "name": "Leon Patel", + "email": "brian92@example.org", + "phone": "428-856-7895", + "address": { + "street": "18824 Griffin Junction", + "city": "Lake Bruce", + "state": "South Carolina", + "zip": "23297", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T22:38:13.686Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 67.66, + "subtotal": 67.66 + } + ], + "total_price": 67.66, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 7.03, + "expected_delivery": { + "$date": "2025-05-14T22:38:13.686Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.322Z" + } + }, + { + "order_id": "710e37d0-f6e8-46cd-a0e5-c46da267d43c", + "customer": { + "customer_id": "c96b55a1-c312-49bf-b651-2a542b6f2819", + "name": "Meghan Jones", + "email": "james38@example.org", + "phone": "+1-553-383-0909x532", + "address": { + "street": "89547 Medina Lodge", + "city": "East Darlenechester", + "state": "Wyoming", + "zip": "81255", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T00:02:44.021Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 129.2, + "subtotal": 258.4 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 78.85, + "subtotal": 157.7 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 110.01, + "subtotal": 110.01 + } + ], + "total_price": 526.11, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 7.21, + "expected_delivery": { + "$date": "2025-05-15T00:02:44.021Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.323Z" + } + }, + { + "order_id": "b6710811-27ea-487f-9af7-a10260531960", + "customer": { + "customer_id": "e7f7a394-7281-436c-aad8-0f2864e5ba9d", + "name": "Martin Blackburn", + "email": "rodney34@example.org", + "phone": "(943)812-7613", + "address": { + "street": "449 Amber Hills", + "city": "Jenningsstad", + "state": "New Hampshire", + "zip": "55315", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T17:41:23.796Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 106.33, + "subtotal": 106.33 + }, + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 2, + "unit_price": 157.53, + "subtotal": 315.06 + } + ], + "total_price": 421.39, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 15.88, + "expected_delivery": { + "$date": "2025-05-15T17:41:23.796Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.323Z" + } + }, + { + "order_id": "ffbcbeb1-6751-40b3-955c-93c0ad0d57ae", + "customer": { + "customer_id": "a31999ae-9e72-41c5-93a2-d1746c738c6f", + "name": "Larry Aguilar", + "email": "connie04@example.com", + "phone": "923-722-3600x7217", + "address": { + "street": "68934 Michele Mountains", + "city": "West Alexa", + "state": "Oklahoma", + "zip": "59795", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T21:11:29.001Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 62.74, + "subtotal": 125.48 + } + ], + "total_price": 125.48, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 5.58, + "expected_delivery": { + "$date": "2025-05-09T21:11:29.001Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.323Z" + } + }, + { + "order_id": "c6d42d36-91de-4c5a-8d76-5fe813fc6e3a", + "customer": { + "customer_id": "582385c1-2f21-463a-a496-b35faf5179bf", + "name": "Michael Pace", + "email": "ereyes@example.net", + "phone": "873-226-0987", + "address": { + "street": "9819 Castillo Shores", + "city": "Lake Erin", + "state": "Nevada", + "zip": "88859", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T12:20:09.518Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 1, + "unit_price": 134.54, + "subtotal": 134.54 + } + ], + "total_price": 134.54, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 7.53, + "expected_delivery": { + "$date": "2025-05-19T12:20:09.518Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.323Z" + } + }, + { + "order_id": "d7df3365-73fb-4701-bb3b-a8e57a18433d", + "customer": { + "customer_id": "7292246b-f2de-4b28-956b-470796ac7d7b", + "name": "Cynthia Smith", + "email": "martinezjames@example.com", + "phone": "+1-380-315-5662x436", + "address": { + "street": "87029 Charles Shore Apt. 119", + "city": "Lake Scottchester", + "state": "Minnesota", + "zip": "43498", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T18:51:52.273Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 89.61, + "subtotal": 89.61 + }, + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 111.43, + "subtotal": 222.86 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 78.26, + "subtotal": 78.26 + } + ], + "total_price": 390.73, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 18.63, + "expected_delivery": { + "$date": "2025-05-08T18:51:52.273Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.323Z" + } + }, + { + "order_id": "557febbb-8878-48a1-a8ce-db97f4d31eab", + "customer": { + "customer_id": "74d0fad2-044e-441f-b5e0-9d657fa5840b", + "name": "Patrick Decker", + "email": "jose03@example.com", + "phone": "001-321-542-2767x11265", + "address": { + "street": "205 Mata Lodge", + "city": "Jonesstad", + "state": "Maryland", + "zip": "22874", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T05:06:19.368Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 121.78, + "subtotal": 243.56 + }, + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 76.38, + "subtotal": 152.76 + } + ], + "total_price": 396.32, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 7.49, + "expected_delivery": { + "$date": "2025-05-13T05:06:19.368Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.324Z" + } + }, + { + "order_id": "41de9333-8259-483c-9fe9-4abcaaeccf3a", + "customer": { + "customer_id": "4c8130a7-57a3-4e64-b8fa-2abcda47b1cb", + "name": "Stephen Brown", + "email": "charles90@example.org", + "phone": "+1-656-631-6764", + "address": { + "street": "7474 Megan Harbors Suite 420", + "city": "New Rachel", + "state": "Maine", + "zip": "07073", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T09:10:59.644Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 151.58, + "subtotal": 303.16 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 97.9, + "subtotal": 97.9 + }, + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 135.68, + "subtotal": 135.68 + } + ], + "total_price": 536.74, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 7.49, + "expected_delivery": { + "$date": "2025-05-11T09:10:59.644Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.324Z" + } + }, + { + "order_id": "a3fd6cb6-20b2-42fa-bd58-176540e909a8", + "customer": { + "customer_id": "ef85a1be-4943-4783-b911-bfbf1ea74f7c", + "name": "Javier Aguirre", + "email": "sharonmiller@example.com", + "phone": "001-306-320-9680x47150", + "address": { + "street": "121 Farrell Wall", + "city": "New Brianaville", + "state": "Vermont", + "zip": "58088", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-05T23:49:41.453Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 117.16, + "subtotal": 117.16 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 117.87, + "subtotal": 117.87 + } + ], + "total_price": 235.03, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 6.97, + "expected_delivery": { + "$date": "2025-05-09T23:49:41.453Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.324Z" + } + }, + { + "order_id": "0814fa1a-cd13-4d8d-b810-fbdc5b19585f", + "customer": { + "customer_id": "19187076-e191-4ce6-94fb-c5e08c38e0d7", + "name": "Tiffany Gallegos", + "email": "douglasscott@example.net", + "phone": "001-590-530-5414x8798", + "address": { + "street": "8850 Martinez Valley", + "city": "East Karenberg", + "state": "Arizona", + "zip": "79501", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T15:47:42.792Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 87.56, + "subtotal": 87.56 + } + ], + "total_price": 87.56, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 5.78, + "expected_delivery": { + "$date": "2025-05-20T15:47:42.792Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.324Z" + } + }, + { + "order_id": "32622c6a-f12c-4d5b-abe1-9e59f8d40850", + "customer": { + "customer_id": "1a972de5-ad2a-47ee-bc86-d91ba1ec9e19", + "name": "Michael Cordova", + "email": "michaeljohnson@example.org", + "phone": "914.259.8618x5006", + "address": { + "street": "59866 Franklin Squares", + "city": "Madisonfort", + "state": "Nebraska", + "zip": "09019", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T11:40:53.209Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 1, + "unit_price": 100.6, + "subtotal": 100.6 + } + ], + "total_price": 100.6, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 13.38, + "expected_delivery": { + "$date": "2025-05-14T11:40:53.209Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.324Z" + } + }, + { + "order_id": "dec59e27-946d-4433-8a54-bcb5419da98e", + "customer": { + "customer_id": "de34d4c8-5f56-49e7-a595-2b0741a62d86", + "name": "Elizabeth Ruiz", + "email": "martinezleah@example.com", + "phone": "941-838-6312", + "address": { + "street": "32323 Snyder Mills Apt. 007", + "city": "Mooremouth", + "state": "New Mexico", + "zip": "43662", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T22:17:08.467Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 175.1, + "subtotal": 175.1 + }, + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 1, + "unit_price": 142.1, + "subtotal": 142.1 + }, + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 121.15, + "subtotal": 121.15 + } + ], + "total_price": 438.35, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 17.67, + "expected_delivery": { + "$date": "2025-05-11T22:17:08.467Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.325Z" + } + }, + { + "order_id": "ef7ec3d5-2826-4b55-a83a-dbe08a07b652", + "customer": { + "customer_id": "c362dfcc-a246-4f99-ac6d-83a091ebe7d5", + "name": "Anthony Alvarez", + "email": "emartin@example.com", + "phone": "001-729-727-1499x28735", + "address": { + "street": "09514 Nathan Mill", + "city": "Masonland", + "state": "West Virginia", + "zip": "28613", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T16:46:24.710Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 82.77, + "subtotal": 82.77 + } + ], + "total_price": 82.77, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 13.06, + "expected_delivery": { + "$date": "2025-05-14T16:46:24.710Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.325Z" + } + }, + { + "order_id": "9f46dd19-3287-46a5-a75e-41ac68455a95", + "customer": { + "customer_id": "47a560f1-13d6-4201-81d4-3dff5081c82b", + "name": "Joseph Burgess", + "email": "wallacenicole@example.com", + "phone": "001-780-460-2276x41203", + "address": { + "street": "185 Samantha Mills Apt. 178", + "city": "Jonesville", + "state": "Alaska", + "zip": "62694", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T19:11:00.880Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 133.03, + "subtotal": 266.06 + } + ], + "total_price": 266.06, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 6.38, + "expected_delivery": { + "$date": "2025-05-19T19:11:00.880Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.325Z" + } + }, + { + "order_id": "14de16ee-61e3-4bfb-90c0-15ef027c6ea9", + "customer": { + "customer_id": "7f630912-043f-40ac-9554-543b1f5cf911", + "name": "Kristine Smith", + "email": "olittle@example.com", + "phone": "+1-352-461-5191x815", + "address": { + "street": "684 Charles Brooks", + "city": "Aaronberg", + "state": "Kansas", + "zip": "45776", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T08:34:33.279Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 102.89, + "subtotal": 102.89 + }, + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 151.34, + "subtotal": 151.34 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 141.64, + "subtotal": 283.28 + } + ], + "total_price": 537.51, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 16.17, + "expected_delivery": { + "$date": "2025-05-14T08:34:33.279Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.325Z" + } + }, + { + "order_id": "a946951e-9ee7-445a-9d57-7baac398a0be", + "customer": { + "customer_id": "2a3c914d-762d-40e6-af44-1ac415fe72cf", + "name": "Jeremiah Hall", + "email": "wilsonrachel@example.org", + "phone": "+1-416-243-6827x960", + "address": { + "street": "1578 Kelsey Road Apt. 139", + "city": "Mariestad", + "state": "Mississippi", + "zip": "12422", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T01:36:13.754Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 167.17, + "subtotal": 167.17 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 133.57, + "subtotal": 133.57 + }, + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 123.55, + "subtotal": 123.55 + } + ], + "total_price": 424.29, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 18.44, + "expected_delivery": { + "$date": "2025-05-19T01:36:13.754Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.326Z" + } + }, + { + "order_id": "e3043fb8-2b17-49ed-82aa-df226255780c", + "customer": { + "customer_id": "1c8bd23c-fd07-4f41-996f-2755883dcb8b", + "name": "Christopher Smith", + "email": "burgessmark@example.net", + "phone": "247-494-2941x13591", + "address": { + "street": "237 Thomas Harbors Suite 130", + "city": "Lukechester", + "state": "Arkansas", + "zip": "50515", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T18:15:59.098Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 65.24, + "subtotal": 65.24 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 90.4, + "subtotal": 90.4 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 134.91, + "subtotal": 134.91 + } + ], + "total_price": 290.55, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 19.89, + "expected_delivery": { + "$date": "2025-05-11T18:15:59.098Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.326Z" + } + }, + { + "order_id": "6866e6fa-9c54-4402-a20e-0dbc53451596", + "customer": { + "customer_id": "d2bc17bf-39ee-433a-9f00-7224491bc8f5", + "name": "Vanessa Mccoy", + "email": "griffithjoe@example.org", + "phone": "001-890-359-7969", + "address": { + "street": "0324 Stacey Port Suite 123", + "city": "Kristinamouth", + "state": "North Carolina", + "zip": "72349", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T16:13:53.696Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 137.1, + "subtotal": 137.1 + }, + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 152.96, + "subtotal": 305.92 + }, + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 146.61, + "subtotal": 293.22 + } + ], + "total_price": 736.24, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 16.1, + "expected_delivery": { + "$date": "2025-05-17T16:13:53.696Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.326Z" + } + }, + { + "order_id": "9b859689-8343-4954-998e-35090a50ad2e", + "customer": { + "customer_id": "131c0f4f-7898-4a7f-a00d-93ff86582d2c", + "name": "Jonathan Hunter", + "email": "lynngriffin@example.net", + "phone": "+1-615-981-3789", + "address": { + "street": "4539 Walker Streets", + "city": "Blakeside", + "state": "Kentucky", + "zip": "95300", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T05:04:15.781Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 164.58, + "subtotal": 164.58 + }, + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 2, + "unit_price": 77.6, + "subtotal": 155.2 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 160.37, + "subtotal": 160.37 + } + ], + "total_price": 480.15, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 5.49, + "expected_delivery": { + "$date": "2025-05-15T05:04:15.781Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.326Z" + } + }, + { + "order_id": "cdb70081-b144-451a-b5fb-a2009e443a93", + "customer": { + "customer_id": "fd0ab89b-b27c-4bd3-a938-45eb4d72c280", + "name": "Alejandro Thomas", + "email": "markcurtis@example.com", + "phone": "995-818-0769x36904", + "address": { + "street": "27310 Andrew Creek", + "city": "North Douglasfort", + "state": "Utah", + "zip": "56008", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T07:16:51.277Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 66.88, + "subtotal": 133.76 + }, + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 73.59, + "subtotal": 73.59 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 1, + "unit_price": 153.7, + "subtotal": 153.7 + } + ], + "total_price": 361.05, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 5.96, + "expected_delivery": { + "$date": "2025-05-12T07:16:51.277Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.327Z" + } + }, + { + "order_id": "8c418786-fb00-403f-b4ab-271c724df4d9", + "customer": { + "customer_id": "46d8e9dc-7742-475a-b5f7-712b0d3bb93f", + "name": "Nicole Fisher", + "email": "joshua41@example.com", + "phone": "+1-455-315-1277x591", + "address": { + "street": "988 Christine Squares", + "city": "Kennethborough", + "state": "West Virginia", + "zip": "40403", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T13:07:22.615Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 135.67, + "subtotal": 135.67 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 178.1, + "subtotal": 178.1 + }, + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 1, + "unit_price": 77.43, + "subtotal": 77.43 + } + ], + "total_price": 391.2, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 14.2, + "expected_delivery": { + "$date": "2025-05-16T13:07:22.615Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.327Z" + } + }, + { + "order_id": "87dd1b77-180e-4b25-87e4-87e35eeec881", + "customer": { + "customer_id": "de7c5696-952d-4fa7-82bf-32985b80e042", + "name": "Jeffrey Brown", + "email": "sharon26@example.org", + "phone": "564.837.1271x859", + "address": { + "street": "738 Vanessa Mountains", + "city": "Amberchester", + "state": "Virginia", + "zip": "23277", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T17:00:38.212Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 143.69, + "subtotal": 143.69 + }, + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 153.97, + "subtotal": 307.94 + } + ], + "total_price": 451.63, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 18.93, + "expected_delivery": { + "$date": "2025-05-20T17:00:38.212Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.327Z" + } + }, + { + "order_id": "334bf184-831c-43ae-addf-384a08c19d28", + "customer": { + "customer_id": "d2342624-8d20-4f23-9226-a1f174242350", + "name": "Jennifer Jones", + "email": "robinsonjerry@example.com", + "phone": "249.453.2127x2018", + "address": { + "street": "5472 Greene Trace", + "city": "South Kayla", + "state": "Virginia", + "zip": "83392", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T10:38:37.172Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 117.7, + "subtotal": 235.4 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 136.62, + "subtotal": 273.24 + } + ], + "total_price": 508.64, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 6.76, + "expected_delivery": { + "$date": "2025-05-18T10:38:37.172Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.327Z" + } + }, + { + "order_id": "c8168679-6c21-486e-94df-20b469b9202b", + "customer": { + "customer_id": "2f86b2c8-8649-459d-b1dd-5975094b1488", + "name": "Julie Jarvis", + "email": "victoriaking@example.org", + "phone": "+1-966-251-5459x5870", + "address": { + "street": "3162 Joseph Throughway Suite 832", + "city": "Lake Jacob", + "state": "Kentucky", + "zip": "12455", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T00:03:12.801Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 128.25, + "subtotal": 128.25 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 128.58, + "subtotal": 128.58 + } + ], + "total_price": 256.83, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 19.19, + "expected_delivery": { + "$date": "2025-05-15T00:03:12.801Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.327Z" + } + }, + { + "order_id": "53660c7d-9510-4c9a-8836-135fda57b97c", + "customer": { + "customer_id": "f241c358-5562-4c56-8956-b22f99ea1b70", + "name": "John Meadows", + "email": "evelyn65@example.net", + "phone": "440-992-3471", + "address": { + "street": "31164 Hannah Lights", + "city": "Christopherport", + "state": "Virginia", + "zip": "77407", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T02:05:23.561Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 165.19, + "subtotal": 165.19 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 165.45, + "subtotal": 165.45 + } + ], + "total_price": 330.64, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 6.2, + "expected_delivery": { + "$date": "2025-05-11T02:05:23.561Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.328Z" + } + }, + { + "order_id": "5dd7f6c8-ef42-4e49-ae53-dffb896ea354", + "customer": { + "customer_id": "dd7b3e3d-8eff-4800-b5ff-58158e5774f6", + "name": "James Gomez", + "email": "ogreer@example.org", + "phone": "803.668.8723x024", + "address": { + "street": "26401 Hernandez Forges", + "city": "Jessehaven", + "state": "Florida", + "zip": "89026", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T03:43:38.647Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 110.06, + "subtotal": 110.06 + }, + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 144.39, + "subtotal": 288.78 + } + ], + "total_price": 398.84, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 5.68, + "expected_delivery": { + "$date": "2025-05-19T03:43:38.647Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.328Z" + } + }, + { + "order_id": "e40a422d-556a-4926-ad9e-b01c2b68844b", + "customer": { + "customer_id": "03ab50c6-038f-4afa-ab42-90bf1feb7a16", + "name": "Angela Romero", + "email": "rose57@example.com", + "phone": "(964)213-1952x8700", + "address": { + "street": "36597 Morrison Green Suite 287", + "city": "Courtneyhaven", + "state": "Ohio", + "zip": "01218", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T21:12:16.792Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 87.23, + "subtotal": 87.23 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 156.57, + "subtotal": 156.57 + } + ], + "total_price": 243.8, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 17.34, + "expected_delivery": { + "$date": "2025-05-12T21:12:16.792Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.328Z" + } + }, + { + "order_id": "da9c5cec-2390-4b0a-973a-7ff3d9271096", + "customer": { + "customer_id": "9e12af58-316f-47cd-9cfe-6bdf609e35be", + "name": "Kyle French", + "email": "baileycory@example.net", + "phone": "(529)513-8560", + "address": { + "street": "853 Carter Cape", + "city": "Gomezland", + "state": "Utah", + "zip": "29742", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T08:43:06.260Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 159.4, + "subtotal": 159.4 + } + ], + "total_price": 159.4, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 6.85, + "expected_delivery": { + "$date": "2025-05-15T08:43:06.260Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.328Z" + } + }, + { + "order_id": "758ffc63-a5ca-4b3a-8428-da933c3d198d", + "customer": { + "customer_id": "5a9ddfae-cdf3-42f6-a6b6-8e5d7dfe5fba", + "name": "Kristen Grant", + "email": "chumphrey@example.com", + "phone": "001-259-820-7460", + "address": { + "street": "828 Stone Courts Apt. 880", + "city": "Cathyview", + "state": "Illinois", + "zip": "51837", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T00:49:23.201Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 131.22, + "subtotal": 131.22 + } + ], + "total_price": 131.22, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 17.19, + "expected_delivery": { + "$date": "2025-05-12T00:49:23.201Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.329Z" + } + }, + { + "order_id": "09c38cd0-1e7d-400b-8350-4ac8bb870b04", + "customer": { + "customer_id": "5f47bfba-f474-40cd-8dd7-ec4c63f5ebf0", + "name": "William Peterson", + "email": "sarah98@example.com", + "phone": "(522)367-1665x6499", + "address": { + "street": "78487 Davis Flats Apt. 847", + "city": "New Chase", + "state": "Wyoming", + "zip": "43404", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T22:46:31.303Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 79.75, + "subtotal": 159.5 + }, + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 161.0, + "subtotal": 161.0 + } + ], + "total_price": 320.5, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 5.98, + "expected_delivery": { + "$date": "2025-05-11T22:46:31.303Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.329Z" + } + }, + { + "order_id": "8d617043-0c6d-41d9-9909-c16fdcff073f", + "customer": { + "customer_id": "9f39891b-9a71-442f-81d6-8e68904914ef", + "name": "Crystal Davis", + "email": "shawn59@example.com", + "phone": "+1-549-865-7638x85945", + "address": { + "street": "00574 Maxwell Shore", + "city": "West Daniel", + "state": "New Jersey", + "zip": "04276", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T06:34:54.256Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 90.5, + "subtotal": 181.0 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 152.29, + "subtotal": 304.58 + } + ], + "total_price": 485.58, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 10.63, + "expected_delivery": { + "$date": "2025-05-14T06:34:54.256Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.329Z" + } + }, + { + "order_id": "305deda5-4c38-4218-b347-8b3cc4dbeac4", + "customer": { + "customer_id": "016eb053-73ba-46b2-b332-30ca8b51969d", + "name": "Andrea Williams", + "email": "lynn20@example.com", + "phone": "796.398.2155x5822", + "address": { + "street": "13351 Sonia Shoals Apt. 978", + "city": "Lake Maureen", + "state": "Colorado", + "zip": "16457", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T09:34:04.121Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 130.73, + "subtotal": 130.73 + }, + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 79.22, + "subtotal": 79.22 + }, + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 1, + "unit_price": 88.74, + "subtotal": 88.74 + } + ], + "total_price": 298.69, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 10.51, + "expected_delivery": { + "$date": "2025-05-10T09:34:04.121Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.329Z" + } + }, + { + "order_id": "ee2a0e90-e654-4cd1-8602-ca2fc23fd4cf", + "customer": { + "customer_id": "18df47d2-117a-4bca-b1a7-5f03cec32075", + "name": "Jason Fitzgerald", + "email": "randolphdonna@example.org", + "phone": "(823)563-3167x419", + "address": { + "street": "27715 Richardson Cliffs Apt. 864", + "city": "Lake Vincent", + "state": "Kentucky", + "zip": "40169", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T13:50:47.725Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 124.73, + "subtotal": 249.46 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 95.75, + "subtotal": 191.5 + } + ], + "total_price": 440.96, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 12.35, + "expected_delivery": { + "$date": "2025-05-14T13:50:47.725Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.329Z" + } + }, + { + "order_id": "05ccd591-35c3-41cd-b9ca-5c43f15f7da9", + "customer": { + "customer_id": "45726447-dd27-46ca-939f-f4f66a1881c0", + "name": "Chelsea Potter", + "email": "paul84@example.org", + "phone": "+1-631-848-8246x698", + "address": { + "street": "8259 Moore Course Suite 662", + "city": "Fritzhaven", + "state": "New York", + "zip": "82038", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T13:57:04.692Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 101.46, + "subtotal": 202.92 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 85.25, + "subtotal": 170.5 + }, + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 2, + "unit_price": 158.8, + "subtotal": 317.6 + } + ], + "total_price": 691.02, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 16.72, + "expected_delivery": { + "$date": "2025-05-11T13:57:04.692Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.330Z" + } + }, + { + "order_id": "b0b164f5-176e-4cad-ac55-1aa3814ea8ce", + "customer": { + "customer_id": "e11b0615-e8fd-43e9-a429-b28dbc8ba6ee", + "name": "Theresa Davis", + "email": "kelly38@example.com", + "phone": "+1-712-263-8258x3208", + "address": { + "street": "0824 Short Island", + "city": "Gregorymouth", + "state": "Mississippi", + "zip": "08072", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T11:32:25.494Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 122.92, + "subtotal": 245.84 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 62.13, + "subtotal": 124.26 + } + ], + "total_price": 370.1, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 18.88, + "expected_delivery": { + "$date": "2025-05-10T11:32:25.494Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.330Z" + } + }, + { + "order_id": "c6f4cb13-5c60-44aa-9ca4-465f09489dd3", + "customer": { + "customer_id": "c78f94a2-211a-4f24-b0c1-b3e826d04c59", + "name": "Sarah Crawford", + "email": "gallen@example.org", + "phone": "+1-796-276-4698x990", + "address": { + "street": "4911 Spencer Gardens", + "city": "New Justinmouth", + "state": "Delaware", + "zip": "42619", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T22:28:53.694Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 166.8, + "subtotal": 166.8 + } + ], + "total_price": 166.8, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 18.77, + "expected_delivery": { + "$date": "2025-05-14T22:28:53.694Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.330Z" + } + }, + { + "order_id": "ea647c9c-6e67-4e72-8b8f-532670c3651b", + "customer": { + "customer_id": "e4a4f63a-7fa2-4d24-9168-f195b6ea6d92", + "name": "Scott Bradley", + "email": "sheri92@example.org", + "phone": "001-712-206-9912x6887", + "address": { + "street": "261 Jillian Junction Suite 534", + "city": "Ericberg", + "state": "Texas", + "zip": "62153", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T04:27:48.492Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 91.29, + "subtotal": 182.58 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 159.76, + "subtotal": 159.76 + }, + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 60.03, + "subtotal": 60.03 + } + ], + "total_price": 402.37, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 18.86, + "expected_delivery": { + "$date": "2025-05-11T04:27:48.492Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.330Z" + } + }, + { + "order_id": "58d6c71f-1ff6-4063-93da-5ce56c98d9d8", + "customer": { + "customer_id": "cbd98133-b390-45b4-8563-c9d01fcfbd10", + "name": "Anne Perkins", + "email": "hubbardcatherine@example.com", + "phone": "338.448.1795", + "address": { + "street": "943 Pittman Parks Suite 677", + "city": "New Jennifer", + "state": "North Dakota", + "zip": "33576", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T14:57:19.133Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 126.27, + "subtotal": 126.27 + }, + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 2, + "unit_price": 122.86, + "subtotal": 245.72 + } + ], + "total_price": 371.99, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 15.82, + "expected_delivery": { + "$date": "2025-05-17T14:57:19.133Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.331Z" + } + }, + { + "order_id": "7895c80b-8700-4768-a258-8d1aa7d6b33a", + "customer": { + "customer_id": "1c3bf698-7492-4809-b716-b8ee669a46ae", + "name": "Brittany Hopkins", + "email": "alexandra26@example.org", + "phone": "270-385-2155x7286", + "address": { + "street": "941 Tracy Stravenue Suite 405", + "city": "East Alexisport", + "state": "Delaware", + "zip": "88721", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T23:54:04.284Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 2, + "unit_price": 100.48, + "subtotal": 200.96 + }, + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 92.49, + "subtotal": 184.98 + }, + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 1, + "unit_price": 66.09, + "subtotal": 66.09 + } + ], + "total_price": 452.03, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 18.83, + "expected_delivery": { + "$date": "2025-05-15T23:54:04.284Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.331Z" + } + }, + { + "order_id": "9e6e89d1-509e-4fa0-afea-73205d0ca9b6", + "customer": { + "customer_id": "191d9ce6-cea6-4e13-abb0-88f929cae51c", + "name": "Darrell Herrera", + "email": "taylorcarol@example.org", + "phone": "547.550.5885x632", + "address": { + "street": "91565 Sweeney Mission", + "city": "Fernandezshire", + "state": "Massachusetts", + "zip": "36629", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T22:31:39.819Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 1, + "unit_price": 115.7, + "subtotal": 115.7 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 172.02, + "subtotal": 344.04 + } + ], + "total_price": 459.74, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 15.85, + "expected_delivery": { + "$date": "2025-05-14T22:31:39.819Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.331Z" + } + }, + { + "order_id": "d54419c2-d394-46d9-ae9a-ea9e1ef1cf07", + "customer": { + "customer_id": "9e523fed-86b5-427a-9ea6-d7a60c33688b", + "name": "Jeffrey Vega PhD", + "email": "veronicahenderson@example.org", + "phone": "461.663.2522x987", + "address": { + "street": "49337 Anna Gateway", + "city": "South Katherinestad", + "state": "Ohio", + "zip": "33862", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T16:43:56.406Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 71.6, + "subtotal": 143.2 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 153.56, + "subtotal": 307.12 + } + ], + "total_price": 450.32, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 16.59, + "expected_delivery": { + "$date": "2025-05-12T16:43:56.406Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.331Z" + } + }, + { + "order_id": "29df6460-2232-440e-991b-586fc800e802", + "customer": { + "customer_id": "6745f0d8-7846-4862-bcaf-830a6d12621f", + "name": "Eugene Baker", + "email": "lsawyer@example.org", + "phone": "616-516-3757x804", + "address": { + "street": "299 Scott Circle", + "city": "Cookmouth", + "state": "Texas", + "zip": "88927", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T05:56:03.903Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 117.83, + "subtotal": 117.83 + }, + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 175.97, + "subtotal": 351.94 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 76.51, + "subtotal": 153.02 + } + ], + "total_price": 622.79, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 17.71, + "expected_delivery": { + "$date": "2025-05-16T05:56:03.903Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.331Z" + } + }, + { + "order_id": "d92ba4d9-b297-4bb3-9f66-c35c1cf7efaf", + "customer": { + "customer_id": "d44aef8a-0b25-4a8f-87fa-c2bc773c76a1", + "name": "Seth Miranda", + "email": "bbauer@example.com", + "phone": "+1-518-738-7904x4078", + "address": { + "street": "3775 Lisa Coves Apt. 758", + "city": "Scottstad", + "state": "Georgia", + "zip": "65693", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T04:06:47.366Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 81.41, + "subtotal": 162.82 + } + ], + "total_price": 162.82, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 18.38, + "expected_delivery": { + "$date": "2025-05-22T04:06:47.366Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.332Z" + } + }, + { + "order_id": "8a858cdf-af4d-4a24-a247-e74720f89697", + "customer": { + "customer_id": "41038fe9-fa0a-4b58-80cc-fef40082d0cc", + "name": "Amy Pope", + "email": "austinandrea@example.org", + "phone": "902-779-9510x527", + "address": { + "street": "439 Hanson Circle Apt. 674", + "city": "New Christopher", + "state": "Hawaii", + "zip": "47186", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T02:07:30.132Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 95.85, + "subtotal": 191.7 + }, + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 66.15, + "subtotal": 66.15 + } + ], + "total_price": 257.85, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 13.25, + "expected_delivery": { + "$date": "2025-05-18T02:07:30.132Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.332Z" + } + }, + { + "order_id": "47bb3f22-2123-4ad8-826c-91c987cfba82", + "customer": { + "customer_id": "aefdca06-7d93-4083-82e9-f5a8cc49be22", + "name": "Willie Stephens", + "email": "margaret75@example.org", + "phone": "+1-626-481-0670", + "address": { + "street": "7519 Regina Meadow Suite 771", + "city": "West Andrew", + "state": "South Carolina", + "zip": "55389", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T19:20:44.349Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 65.41, + "subtotal": 130.82 + }, + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 112.46, + "subtotal": 224.92 + } + ], + "total_price": 355.74, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 5.81, + "expected_delivery": { + "$date": "2025-05-14T19:20:44.349Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.332Z" + } + }, + { + "order_id": "d4b7d616-d42e-4e4f-bbc7-919a2f7218fb", + "customer": { + "customer_id": "a8e12264-8bab-4036-9cd1-4974a155c59d", + "name": "Brian Stuart", + "email": "crodriguez@example.org", + "phone": "001-934-974-6493x887", + "address": { + "street": "9595 Howell Groves Apt. 808", + "city": "Richardsonshire", + "state": "Montana", + "zip": "14731", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T06:15:12.772Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 73.89, + "subtotal": 73.89 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 161.59, + "subtotal": 161.59 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 149.28, + "subtotal": 298.56 + } + ], + "total_price": 534.04, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 19.52, + "expected_delivery": { + "$date": "2025-05-17T06:15:12.772Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.332Z" + } + }, + { + "order_id": "45451db2-1d5f-4713-ae3f-b9e52a92c190", + "customer": { + "customer_id": "ae212155-fb5b-4ec1-b6bc-7f7f65a58f36", + "name": "Gary Andrews", + "email": "harristyler@example.com", + "phone": "001-682-321-1645x0222", + "address": { + "street": "68588 Valencia Circle", + "city": "Adamtown", + "state": "Arizona", + "zip": "75512", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T12:24:34.841Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 1, + "unit_price": 147.66, + "subtotal": 147.66 + } + ], + "total_price": 147.66, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 11.65, + "expected_delivery": { + "$date": "2025-05-17T12:24:34.841Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.333Z" + } + }, + { + "order_id": "11301ced-ff45-406b-8980-2e9c8514169d", + "customer": { + "customer_id": "bcd0d3bb-9b25-43d0-8587-58f9b4a5d609", + "name": "Barbara Thompson", + "email": "rodriguezrebecca@example.com", + "phone": "794-485-4152", + "address": { + "street": "916 Allen Ways Apt. 660", + "city": "New Sherrymouth", + "state": "Minnesota", + "zip": "31362", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T23:44:07.993Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 80.86, + "subtotal": 161.72 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 103.35, + "subtotal": 206.7 + } + ], + "total_price": 368.42, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 8.91, + "expected_delivery": { + "$date": "2025-05-15T23:44:07.993Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.333Z" + } + }, + { + "order_id": "be918cb7-2acb-42ab-8aba-f59cb487f924", + "customer": { + "customer_id": "bfeab7ee-f8bf-4ded-b2c2-c0476cb5e43b", + "name": "Ronnie Nelson", + "email": "uwatts@example.com", + "phone": "(506)265-2834x5691", + "address": { + "street": "04677 Henry Plaza", + "city": "Ericberg", + "state": "Mississippi", + "zip": "01632", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T12:38:38.780Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 148.89, + "subtotal": 148.89 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 1, + "unit_price": 142.54, + "subtotal": 142.54 + } + ], + "total_price": 291.43, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 15.63, + "expected_delivery": { + "$date": "2025-05-11T12:38:38.780Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.333Z" + } + }, + { + "order_id": "64d6ffb5-ad21-414d-90b6-84d20a9a3799", + "customer": { + "customer_id": "3480f837-90ad-4496-a32a-5e4d7739add0", + "name": "Melissa Poole", + "email": "fmeyer@example.com", + "phone": "791-595-7065", + "address": { + "street": "7558 Chambers Union Apt. 143", + "city": "Richardfort", + "state": "Connecticut", + "zip": "79229", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T22:14:19.479Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 179.69, + "subtotal": 359.38 + } + ], + "total_price": 359.38, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 16.75, + "expected_delivery": { + "$date": "2025-05-16T22:14:19.479Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.333Z" + } + }, + { + "order_id": "c88ddbe2-bfe8-4ec0-86a9-417874badf9b", + "customer": { + "customer_id": "22a5213d-35b4-453d-90ab-4f0e12032649", + "name": "James Navarro", + "email": "garyjones@example.net", + "phone": "441-264-2636x0021", + "address": { + "street": "76486 Martin Rest", + "city": "Port Lauren", + "state": "New Hampshire", + "zip": "27348", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T04:09:40.862Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 120.96, + "subtotal": 241.92 + } + ], + "total_price": 241.92, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 12.46, + "expected_delivery": { + "$date": "2025-05-15T04:09:40.862Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.333Z" + } + }, + { + "order_id": "fa847027-d5ed-46bd-b27e-5749341cd6b9", + "customer": { + "customer_id": "d635b770-efd7-4105-9ef6-63570f018289", + "name": "Nicholas Rivera", + "email": "simongreg@example.com", + "phone": "(567)936-1803x401", + "address": { + "street": "2424 Mcgrath Prairie Apt. 825", + "city": "West Jessicaview", + "state": "Idaho", + "zip": "10318", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T13:29:49.886Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 115.68, + "subtotal": 115.68 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 92.35, + "subtotal": 92.35 + } + ], + "total_price": 208.03, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 12.59, + "expected_delivery": { + "$date": "2025-05-17T13:29:49.886Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.334Z" + } + }, + { + "order_id": "9822dc5e-d05e-45ba-bf71-3c1d99af33fe", + "customer": { + "customer_id": "a780b610-381e-4c09-bebb-84147882a1d3", + "name": "Jeremy Mcgee", + "email": "mark66@example.org", + "phone": "285-387-1998x820", + "address": { + "street": "945 Jeff Drive Suite 835", + "city": "Lake Margaret", + "state": "Utah", + "zip": "76192", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T21:29:20.145Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 1, + "unit_price": 138.64, + "subtotal": 138.64 + }, + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 1, + "unit_price": 173.16, + "subtotal": 173.16 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 86.88, + "subtotal": 173.76 + } + ], + "total_price": 485.56, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 6.33, + "expected_delivery": { + "$date": "2025-05-10T21:29:20.145Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.334Z" + } + }, + { + "order_id": "ab9d48f8-a1be-4784-b893-67568b96aa78", + "customer": { + "customer_id": "5b7ea46f-7aaf-4d62-bed9-a063f8ed3bcb", + "name": "Riley Rodriguez", + "email": "gnorton@example.org", + "phone": "001-870-437-3166", + "address": { + "street": "2774 Phelps Oval Apt. 735", + "city": "Laurenview", + "state": "Hawaii", + "zip": "25593", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T07:21:11.796Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 61.18, + "subtotal": 61.18 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 138.76, + "subtotal": 138.76 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 77.34, + "subtotal": 77.34 + } + ], + "total_price": 277.28, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 5.65, + "expected_delivery": { + "$date": "2025-05-22T07:21:11.796Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.334Z" + } + }, + { + "order_id": "4e065f1a-2e1d-42ae-8dec-6ccb64cdb4e0", + "customer": { + "customer_id": "b5c43bd5-dcf2-4138-9144-563efa60502f", + "name": "Dr. Angel Bates", + "email": "mike35@example.com", + "phone": "220-956-8038x6930", + "address": { + "street": "413 Lopez Light", + "city": "Moralesville", + "state": "North Carolina", + "zip": "38143", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T04:22:15.654Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 2, + "unit_price": 109.89, + "subtotal": 219.78 + }, + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 167.05, + "subtotal": 167.05 + } + ], + "total_price": 386.83, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 19.28, + "expected_delivery": { + "$date": "2025-05-16T04:22:15.654Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.334Z" + } + }, + { + "order_id": "227860ed-3577-4098-9afe-8b6f7bde1849", + "customer": { + "customer_id": "bb69a952-b1a5-4695-a712-2af3ea4dfd0a", + "name": "Michael Daniel", + "email": "maria18@example.org", + "phone": "403.412.0360x37106", + "address": { + "street": "6309 Yang Squares", + "city": "Lake Justinbury", + "state": "North Carolina", + "zip": "06736", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T09:53:34.459Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 94.41, + "subtotal": 94.41 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 162.72, + "subtotal": 325.44 + } + ], + "total_price": 419.85, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 8.94, + "expected_delivery": { + "$date": "2025-05-15T09:53:34.459Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.335Z" + } + }, + { + "order_id": "56601372-bd1f-4828-aa8c-d023f6be6ca9", + "customer": { + "customer_id": "ead11423-8460-4f9f-b36b-cc85d8ccdfcd", + "name": "April Miller", + "email": "evansjennifer@example.org", + "phone": "+1-958-973-0634x992", + "address": { + "street": "75198 Hill Green Apt. 139", + "city": "East Mary", + "state": "Virginia", + "zip": "37396", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T08:24:56.538Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 166.98, + "subtotal": 166.98 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 99.52, + "subtotal": 99.52 + } + ], + "total_price": 266.5, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 11.72, + "expected_delivery": { + "$date": "2025-05-16T08:24:56.538Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.335Z" + } + }, + { + "order_id": "53cf1aaf-fe6a-47cd-965c-9c4fec02af3c", + "customer": { + "customer_id": "95f9335c-2a7e-449d-a860-5354a61d1a3c", + "name": "Evan Patel", + "email": "juan03@example.org", + "phone": "+1-393-533-0232x1883", + "address": { + "street": "175 Christine Loaf", + "city": "East Caitlinfort", + "state": "New Jersey", + "zip": "53536", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T08:36:47.088Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 2, + "unit_price": 82.0, + "subtotal": 164.0 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 137.21, + "subtotal": 137.21 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 160.18, + "subtotal": 320.36 + } + ], + "total_price": 621.57, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 5.31, + "expected_delivery": { + "$date": "2025-05-13T08:36:47.088Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.335Z" + } + }, + { + "order_id": "e6e88bb4-fb17-4e21-a60a-d202de45d7ae", + "customer": { + "customer_id": "8091018a-1d19-4b6a-ad87-a0c3293f24be", + "name": "Randy Sandoval", + "email": "ericcoleman@example.net", + "phone": "578.219.8608x142", + "address": { + "street": "5615 Espinoza Radial", + "city": "Port Juliatown", + "state": "Hawaii", + "zip": "41976", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T09:57:37.418Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 2, + "unit_price": 64.63, + "subtotal": 129.26 + }, + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 1, + "unit_price": 120.86, + "subtotal": 120.86 + } + ], + "total_price": 250.12, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 14.21, + "expected_delivery": { + "$date": "2025-05-12T09:57:37.418Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.335Z" + } + }, + { + "order_id": "fa145fd5-32c6-4015-8803-e06049daf8d1", + "customer": { + "customer_id": "dec009c0-92b7-4324-ba3e-d2ed8ef3c90b", + "name": "Michael Chapman", + "email": "robertmiller@example.com", + "phone": "919-491-9844x600", + "address": { + "street": "2214 Deborah Flat Suite 149", + "city": "South Toddhaven", + "state": "Michigan", + "zip": "06628", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T00:19:46.005Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 77.62, + "subtotal": 77.62 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 142.02, + "subtotal": 142.02 + }, + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 172.3, + "subtotal": 344.6 + } + ], + "total_price": 564.24, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 19.67, + "expected_delivery": { + "$date": "2025-05-13T00:19:46.005Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.336Z" + } + }, + { + "order_id": "021d6c5e-f447-499d-bea6-d457a5625e17", + "customer": { + "customer_id": "eaf49ac2-1e61-4f42-b3b5-6b1fbf7a2e12", + "name": "Wayne Decker", + "email": "zhale@example.org", + "phone": "(452)908-9000", + "address": { + "street": "9320 Craig Dam Apt. 247", + "city": "Davisbury", + "state": "North Dakota", + "zip": "34707", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T12:36:10.915Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 163.33, + "subtotal": 163.33 + } + ], + "total_price": 163.33, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 15.37, + "expected_delivery": { + "$date": "2025-05-14T12:36:10.915Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.336Z" + } + }, + { + "order_id": "cfe52640-07b4-484d-9f1a-cfd9b18f3679", + "customer": { + "customer_id": "429e6034-5077-4377-84e5-c6adca02fe30", + "name": "Mr. Max Cummings", + "email": "dmoore@example.com", + "phone": "231-649-4203x55864", + "address": { + "street": "3070 Stephanie Flats", + "city": "Terrymouth", + "state": "West Virginia", + "zip": "35125", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T10:42:52.864Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 167.99, + "subtotal": 335.98 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 1, + "unit_price": 140.36, + "subtotal": 140.36 + }, + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 64.85, + "subtotal": 64.85 + } + ], + "total_price": 541.19, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 13.56, + "expected_delivery": { + "$date": "2025-05-15T10:42:52.864Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.336Z" + } + }, + { + "order_id": "999829c6-05bc-41cf-90d0-68eafd6ba78d", + "customer": { + "customer_id": "5b0d4b4c-a0ea-49a6-995d-faa2b73fcd18", + "name": "Jason Wilson", + "email": "umiller@example.net", + "phone": "001-523-769-0835x93385", + "address": { + "street": "48256 John Mission", + "city": "Haroldmouth", + "state": "California", + "zip": "52484", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T21:10:44.912Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 1, + "unit_price": 133.83, + "subtotal": 133.83 + } + ], + "total_price": 133.83, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 11.38, + "expected_delivery": { + "$date": "2025-05-17T21:10:44.912Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.336Z" + } + }, + { + "order_id": "0eb9e49c-2eb4-4c00-b3b1-1fd37f4beb25", + "customer": { + "customer_id": "c0c0eaef-1ae5-4ec4-ad62-8172972a493d", + "name": "Elizabeth Bryant", + "email": "stephen80@example.com", + "phone": "001-534-749-9824x3223", + "address": { + "street": "881 Donna Ville Suite 751", + "city": "Port Brookeville", + "state": "Massachusetts", + "zip": "22905", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T00:58:52.873Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 150.98, + "subtotal": 301.96 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 66.59, + "subtotal": 66.59 + } + ], + "total_price": 368.55, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 8.02, + "expected_delivery": { + "$date": "2025-05-12T00:58:52.873Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.336Z" + } + }, + { + "order_id": "4eeb6947-aabf-456b-b55d-0a9cd86c97fd", + "customer": { + "customer_id": "5efd2c4d-4295-4e15-ba6b-eef86f4b8c52", + "name": "James Gonzalez", + "email": "daniel95@example.org", + "phone": "295.295.1270", + "address": { + "street": "6486 Jeffery Row", + "city": "Port Carlyport", + "state": "Ohio", + "zip": "96132", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T10:31:20.528Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 169.64, + "subtotal": 169.64 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 91.24, + "subtotal": 182.48 + } + ], + "total_price": 352.12, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 7.9, + "expected_delivery": { + "$date": "2025-05-14T10:31:20.528Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.337Z" + } + }, + { + "order_id": "c7963fc5-797e-44fc-b58d-0fb638babc2e", + "customer": { + "customer_id": "04950d52-27e5-40fc-b273-f4e62bb771cc", + "name": "Grant Johnson", + "email": "fostercolleen@example.net", + "phone": "+1-293-925-7550", + "address": { + "street": "872 Daniels Knoll Suite 552", + "city": "Edwardport", + "state": "Washington", + "zip": "38703", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T22:50:58.487Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 95.63, + "subtotal": 191.26 + } + ], + "total_price": 191.26, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 18.82, + "expected_delivery": { + "$date": "2025-05-17T22:50:58.487Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.337Z" + } + }, + { + "order_id": "7525d42d-0285-4996-874e-8927378925b4", + "customer": { + "customer_id": "3df8d1a7-d146-4bb8-a097-ae4e1fb78c30", + "name": "Alexis Lawson", + "email": "snyderjose@example.com", + "phone": "256-502-3455", + "address": { + "street": "97966 Lara Islands", + "city": "Port Rebecca", + "state": "California", + "zip": "72495", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T01:01:25.470Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 71.61, + "subtotal": 71.61 + } + ], + "total_price": 71.61, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 5.56, + "expected_delivery": { + "$date": "2025-05-21T01:01:25.470Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.337Z" + } + }, + { + "order_id": "3d561e67-da55-4013-87d2-290e318ef320", + "customer": { + "customer_id": "09506f80-512b-4018-b692-f474d61cac78", + "name": "Leslie Rios", + "email": "hmejia@example.org", + "phone": "001-926-582-8004x927", + "address": { + "street": "10804 Garrett Burg Apt. 578", + "city": "Dianeberg", + "state": "New Jersey", + "zip": "46447", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T22:03:49.668Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 123.11, + "subtotal": 246.22 + }, + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 138.88, + "subtotal": 138.88 + } + ], + "total_price": 385.1, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 9.4, + "expected_delivery": { + "$date": "2025-05-11T22:03:49.668Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.337Z" + } + }, + { + "order_id": "64ffa811-ba07-47ac-8748-cbd7599e296b", + "customer": { + "customer_id": "ba3adc2e-baf5-4fe5-9930-2c3de370fed3", + "name": "Sherry Wheeler", + "email": "zcruz@example.com", + "phone": "853-873-1177", + "address": { + "street": "14593 Dean Ports", + "city": "North Jennifer", + "state": "New Mexico", + "zip": "43500", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T00:08:56.869Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 131.38, + "subtotal": 131.38 + }, + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 74.99, + "subtotal": 74.99 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 155.79, + "subtotal": 311.58 + } + ], + "total_price": 517.95, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 13.07, + "expected_delivery": { + "$date": "2025-05-09T00:08:56.869Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.338Z" + } + }, + { + "order_id": "cf85487b-9764-49d7-b3a4-5769671f1648", + "customer": { + "customer_id": "d56f3016-b385-409e-bed5-fbb25dfa7b96", + "name": "Amy Wu", + "email": "xbaker@example.org", + "phone": "(975)200-3178x648", + "address": { + "street": "60535 Schmidt Roads Apt. 107", + "city": "Anthonyfurt", + "state": "Maine", + "zip": "51890", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T16:51:53.672Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 132.95, + "subtotal": 265.9 + } + ], + "total_price": 265.9, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 19.44, + "expected_delivery": { + "$date": "2025-05-20T16:51:53.672Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.338Z" + } + }, + { + "order_id": "dafe7cbe-3a60-4e77-9318-fb12ed84f2b2", + "customer": { + "customer_id": "d78be97b-2bcc-4650-81d9-4494e73933e1", + "name": "Jonathan Meadows", + "email": "nathan84@example.net", + "phone": "+1-684-536-1630", + "address": { + "street": "757 Daniel Spur Suite 378", + "city": "Hernandeztown", + "state": "Connecticut", + "zip": "79961", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T11:23:02.296Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 156.8, + "subtotal": 156.8 + }, + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 162.44, + "subtotal": 324.88 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 144.05, + "subtotal": 288.1 + } + ], + "total_price": 769.78, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 17.46, + "expected_delivery": { + "$date": "2025-05-18T11:23:02.296Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.338Z" + } + }, + { + "order_id": "fa19e897-d998-4621-9d26-27d4d90da7b6", + "customer": { + "customer_id": "8aa0f4ca-df53-48c4-ac5d-4ac43341432e", + "name": "Rachel Powell", + "email": "avelazquez@example.net", + "phone": "+1-790-262-1852x008", + "address": { + "street": "65975 Berry Course", + "city": "Lake Daniel", + "state": "Illinois", + "zip": "46044", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T07:02:52.665Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 2, + "unit_price": 93.61, + "subtotal": 187.22 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 93.23, + "subtotal": 186.46 + } + ], + "total_price": 373.68, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 10.07, + "expected_delivery": { + "$date": "2025-05-13T07:02:52.665Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.338Z" + } + }, + { + "order_id": "9b728ffc-2075-4e34-abbc-ab17d97c815c", + "customer": { + "customer_id": "2d56f7bd-d1af-4e8a-b8f8-feef8ec19f9e", + "name": "Sandra Phillips", + "email": "dharris@example.com", + "phone": "699-257-6440x24153", + "address": { + "street": "78003 Kevin Skyway", + "city": "Lisahaven", + "state": "Colorado", + "zip": "30125", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T09:10:48.200Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 88.84, + "subtotal": 177.68 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 122.55, + "subtotal": 122.55 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 94.59, + "subtotal": 94.59 + } + ], + "total_price": 394.82, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 18.7, + "expected_delivery": { + "$date": "2025-05-22T09:10:48.200Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.338Z" + } + }, + { + "order_id": "0e3e1c86-7460-41af-9296-f2c2f1a01e7c", + "customer": { + "customer_id": "b6f4e86d-a843-49c5-ba7f-7644028954a8", + "name": "Christopher Lin", + "email": "griffinstephen@example.com", + "phone": "+1-404-270-9635x4724", + "address": { + "street": "5909 Thomas Valleys Suite 962", + "city": "Watsonport", + "state": "Utah", + "zip": "07081", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T20:56:29.764Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 84.49, + "subtotal": 84.49 + } + ], + "total_price": 84.49, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 16.62, + "expected_delivery": { + "$date": "2025-05-16T20:56:29.764Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.339Z" + } + }, + { + "order_id": "60953ad3-1343-4aa4-b6a0-99a1200b7740", + "customer": { + "customer_id": "54303517-c390-47c5-9f4d-ac754a50853d", + "name": "Benjamin Ferguson", + "email": "vreyes@example.org", + "phone": "+1-371-426-2908x70522", + "address": { + "street": "25015 Brendan Expressway", + "city": "Morrisonmouth", + "state": "Montana", + "zip": "29919", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T01:27:57.995Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 1, + "unit_price": 169.51, + "subtotal": 169.51 + }, + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 1, + "unit_price": 61.19, + "subtotal": 61.19 + }, + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 108.28, + "subtotal": 216.56 + } + ], + "total_price": 447.26, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 11.99, + "expected_delivery": { + "$date": "2025-05-16T01:27:57.995Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.339Z" + } + }, + { + "order_id": "fa397c4b-aaf4-4aff-be02-81fc86a3c6dd", + "customer": { + "customer_id": "a5e0a116-2412-4f92-8d40-fb622a0f2ce0", + "name": "Renee Ellison", + "email": "xramos@example.com", + "phone": "+1-953-282-5319x487", + "address": { + "street": "00701 Martinez Prairie", + "city": "Colinmouth", + "state": "Texas", + "zip": "52028", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T16:19:23.153Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 94.61, + "subtotal": 189.22 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 108.87, + "subtotal": 217.74 + } + ], + "total_price": 406.96, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 16.17, + "expected_delivery": { + "$date": "2025-05-14T16:19:23.153Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.339Z" + } + }, + { + "order_id": "ead85976-1bed-46e5-9b33-bbebe4370b91", + "customer": { + "customer_id": "7cd790a8-c6f9-4a64-9693-d661ddee1998", + "name": "Benjamin Collier", + "email": "fernando14@example.com", + "phone": "296-924-3093x49280", + "address": { + "street": "8803 Chris Haven Apt. 193", + "city": "North Jacob", + "state": "Michigan", + "zip": "27378", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T22:19:13.235Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 133.96, + "subtotal": 267.92 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 152.84, + "subtotal": 305.68 + }, + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 133.35, + "subtotal": 133.35 + } + ], + "total_price": 706.95, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 10.05, + "expected_delivery": { + "$date": "2025-05-17T22:19:13.235Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.339Z" + } + }, + { + "order_id": "5e11ff75-44f0-4390-b195-b2e521758156", + "customer": { + "customer_id": "82db76d1-c0fa-4669-bb6b-3e0d9de86b98", + "name": "Jessica Boyd", + "email": "sarah65@example.net", + "phone": "(378)754-6083", + "address": { + "street": "380 Smith Cliff", + "city": "Hendersonton", + "state": "Louisiana", + "zip": "57649", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T12:45:04.732Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 106.08, + "subtotal": 106.08 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 91.55, + "subtotal": 91.55 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 132.86, + "subtotal": 132.86 + } + ], + "total_price": 330.49, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 9.17, + "expected_delivery": { + "$date": "2025-05-14T12:45:04.732Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.339Z" + } + }, + { + "order_id": "47928f3b-bef8-41a4-8510-bc93b25944e1", + "customer": { + "customer_id": "ceeb6ac4-2073-4fc0-a57b-adfb1e4039e5", + "name": "William Pierce", + "email": "jason81@example.net", + "phone": "950.668.1365x48220", + "address": { + "street": "802 Alexander Point", + "city": "Perezshire", + "state": "Nebraska", + "zip": "75154", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T04:12:59.211Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 165.99, + "subtotal": 331.98 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 149.49, + "subtotal": 149.49 + }, + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 143.51, + "subtotal": 287.02 + } + ], + "total_price": 768.49, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 6.04, + "expected_delivery": { + "$date": "2025-05-19T04:12:59.211Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.340Z" + } + }, + { + "order_id": "34ed3594-0014-485c-84b5-0b9c75fcb441", + "customer": { + "customer_id": "19408b79-3ee5-4366-a202-c60fdc8a1832", + "name": "Joshua Mercer", + "email": "jasminemiller@example.org", + "phone": "+1-331-483-4465x5402", + "address": { + "street": "10144 Garcia Crossing Apt. 169", + "city": "Kimberg", + "state": "Colorado", + "zip": "69272", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T22:05:59.958Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 135.81, + "subtotal": 135.81 + }, + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 154.71, + "subtotal": 309.42 + } + ], + "total_price": 445.23, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 5.78, + "expected_delivery": { + "$date": "2025-05-16T22:05:59.958Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.340Z" + } + }, + { + "order_id": "ed8c7959-5b16-43ee-ab79-fc82b596e640", + "customer": { + "customer_id": "82f690e9-f48f-4fac-9c39-f5a4fa987be7", + "name": "Dylan Adams", + "email": "stephaniehodges@example.com", + "phone": "3742011295", + "address": { + "street": "80925 Glover Throughway", + "city": "Pagetown", + "state": "Georgia", + "zip": "26446", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T17:58:33.973Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 142.26, + "subtotal": 142.26 + }, + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 72.19, + "subtotal": 144.38 + } + ], + "total_price": 286.64, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 12.16, + "expected_delivery": { + "$date": "2025-05-09T17:58:33.973Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.340Z" + } + }, + { + "order_id": "67f5f5b9-efde-4234-944e-f5ab56de6f52", + "customer": { + "customer_id": "0b12234d-149d-49a7-a18a-78fce26d22ed", + "name": "Dustin Carter", + "email": "annette03@example.org", + "phone": "+1-682-801-4386x12720", + "address": { + "street": "4879 James Green Apt. 153", + "city": "Fosterburgh", + "state": "Maine", + "zip": "92787", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T12:26:51.799Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 68.99, + "subtotal": 137.98 + } + ], + "total_price": 137.98, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 14.74, + "expected_delivery": { + "$date": "2025-05-16T12:26:51.799Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.340Z" + } + }, + { + "order_id": "557f1898-dd1f-482c-8070-9e22c622b9b0", + "customer": { + "customer_id": "d1b1f3c1-c33a-4fdd-89f3-277b650f16a2", + "name": "Peter Li", + "email": "bsimpson@example.org", + "phone": "348-705-8231", + "address": { + "street": "62480 Timothy Bridge Suite 445", + "city": "Lake Donnatown", + "state": "Minnesota", + "zip": "31664", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T02:54:02.850Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 91.06, + "subtotal": 91.06 + } + ], + "total_price": 91.06, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 12.54, + "expected_delivery": { + "$date": "2025-05-17T02:54:02.850Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.341Z" + } + }, + { + "order_id": "6c2f09a9-7a95-4fa0-8c09-d3494a58d66d", + "customer": { + "customer_id": "003fb531-08cf-4afe-a1ab-2b8848afc155", + "name": "David Norton", + "email": "angelaestrada@example.org", + "phone": "(898)893-7307x7790", + "address": { + "street": "3108 Morgan Rapids", + "city": "East Jenniferland", + "state": "Colorado", + "zip": "39065", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T04:55:16.456Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 158.94, + "subtotal": 158.94 + } + ], + "total_price": 158.94, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 12.46, + "expected_delivery": { + "$date": "2025-05-14T04:55:16.456Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.341Z" + } + }, + { + "order_id": "5d4378fe-5c72-493a-ab51-8207b78a45d7", + "customer": { + "customer_id": "8d42af14-d550-48c6-8bce-6cff1d62b604", + "name": "Jack Oliver", + "email": "ymiller@example.net", + "phone": "570-592-5735", + "address": { + "street": "921 Crosby Grove Suite 170", + "city": "Lake Jesse", + "state": "Rhode Island", + "zip": "25149", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T02:06:27.415Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 61.44, + "subtotal": 61.44 + } + ], + "total_price": 61.44, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 12.14, + "expected_delivery": { + "$date": "2025-05-12T02:06:27.415Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.341Z" + } + }, + { + "order_id": "8bff523f-1654-4100-b0b9-c72af92f9ddb", + "customer": { + "customer_id": "7a9af976-b069-4109-8f7f-0b34d41b6361", + "name": "Karla Bennett", + "email": "vnoble@example.com", + "phone": "(636)474-4760", + "address": { + "street": "6414 May Crest", + "city": "Hamiltonhaven", + "state": "Nevada", + "zip": "70636", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T10:23:24.842Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 99.22, + "subtotal": 99.22 + } + ], + "total_price": 99.22, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 10.59, + "expected_delivery": { + "$date": "2025-05-15T10:23:24.842Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.341Z" + } + }, + { + "order_id": "7c2e26af-566d-4fe1-ab96-aae8aa105b18", + "customer": { + "customer_id": "697f6c32-7780-46db-9180-fe6b9da1999c", + "name": "Cristian Sweeney", + "email": "omiller@example.com", + "phone": "2209868056", + "address": { + "street": "3160 Karen Mall", + "city": "Jordanville", + "state": "Oregon", + "zip": "50185", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T07:00:36.335Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 173.84, + "subtotal": 173.84 + } + ], + "total_price": 173.84, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 8.66, + "expected_delivery": { + "$date": "2025-05-10T07:00:36.335Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.341Z" + } + }, + { + "order_id": "7567cb48-c6f3-4f71-afe7-0db2c1c03a1c", + "customer": { + "customer_id": "a78a0317-928b-4041-84fb-e4523c5ca00a", + "name": "Jennifer Hurley", + "email": "yjohnson@example.com", + "phone": "4909755976", + "address": { + "street": "5453 Parker Stream Suite 554", + "city": "West Crystal", + "state": "New Mexico", + "zip": "91480", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T02:02:59.184Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 108.46, + "subtotal": 108.46 + }, + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 77.34, + "subtotal": 77.34 + } + ], + "total_price": 185.8, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 13.6, + "expected_delivery": { + "$date": "2025-05-19T02:02:59.184Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.342Z" + } + }, + { + "order_id": "722a191f-25a3-4e61-93eb-9e44f068b6f3", + "customer": { + "customer_id": "2e1f8079-56ed-48f8-b1e1-ab52450ce48a", + "name": "Veronica Castillo", + "email": "gbrown@example.org", + "phone": "+1-653-677-3205", + "address": { + "street": "100 Katherine Gateway", + "city": "Terriberg", + "state": "New Hampshire", + "zip": "61919", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T17:25:47.872Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 110.08, + "subtotal": 110.08 + } + ], + "total_price": 110.08, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 11.25, + "expected_delivery": { + "$date": "2025-05-12T17:25:47.872Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.342Z" + } + }, + { + "order_id": "169b819f-4ab2-4eb0-a3b3-8a61e47a9955", + "customer": { + "customer_id": "ef6ffd80-c0b1-49b1-8017-d26c78e46a42", + "name": "Dana Sanchez", + "email": "daniel79@example.net", + "phone": "+1-269-682-1473", + "address": { + "street": "794 Leonard Island", + "city": "Trevorport", + "state": "Alabama", + "zip": "94699", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T02:56:23.429Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 63.04, + "subtotal": 63.04 + } + ], + "total_price": 63.04, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 16.43, + "expected_delivery": { + "$date": "2025-05-12T02:56:23.429Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.342Z" + } + }, + { + "order_id": "5e25fc62-2838-43a9-b760-21a8ebcc782b", + "customer": { + "customer_id": "c49a3e44-8af3-4e9f-b5a2-12a0447dd814", + "name": "David Robertson", + "email": "susanmartin@example.org", + "phone": "979.335.3606x8848", + "address": { + "street": "714 Stark Street", + "city": "Lake Robert", + "state": "Kansas", + "zip": "22573", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T19:12:24.821Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 1, + "unit_price": 86.33, + "subtotal": 86.33 + }, + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 133.43, + "subtotal": 133.43 + } + ], + "total_price": 219.76, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 9.45, + "expected_delivery": { + "$date": "2025-05-15T19:12:24.821Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.342Z" + } + }, + { + "order_id": "774d30c5-7733-4e41-b039-a51f61b85b08", + "customer": { + "customer_id": "8f93a770-504f-4c1e-9425-2e1c2ca0ba75", + "name": "Micheal Nichols", + "email": "kmartinez@example.net", + "phone": "580.596.4751", + "address": { + "street": "299 Oconnor Lakes Suite 071", + "city": "New Andrewberg", + "state": "North Carolina", + "zip": "80449", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T22:19:54.258Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 143.95, + "subtotal": 287.9 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 87.72, + "subtotal": 175.44 + }, + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 178.82, + "subtotal": 357.64 + } + ], + "total_price": 820.98, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 18.15, + "expected_delivery": { + "$date": "2025-05-16T22:19:54.258Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.343Z" + } + }, + { + "order_id": "99cdf071-bc34-4328-87e5-6e85b4124f65", + "customer": { + "customer_id": "5bbb283a-dbd9-4c1b-8258-cf7e22058c0b", + "name": "Brian Tanner", + "email": "michaeldillon@example.net", + "phone": "2677240648", + "address": { + "street": "27765 Lee Hollow Apt. 060", + "city": "West Sarah", + "state": "Delaware", + "zip": "79441", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T10:02:59.354Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 1, + "unit_price": 144.3, + "subtotal": 144.3 + }, + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 2, + "unit_price": 174.35, + "subtotal": 348.7 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 171.07, + "subtotal": 171.07 + } + ], + "total_price": 664.07, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 10.94, + "expected_delivery": { + "$date": "2025-05-16T10:02:59.354Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.343Z" + } + }, + { + "order_id": "b09573de-09cc-4d90-845d-a8232bf225d5", + "customer": { + "customer_id": "60a2cb83-cc05-4824-b8f6-d6660afea86d", + "name": "Kevin Simpson", + "email": "scottluis@example.org", + "phone": "511-444-1181x165", + "address": { + "street": "494 Brown Unions", + "city": "Meghanborough", + "state": "Alaska", + "zip": "28825", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T19:29:48.725Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 93.1, + "subtotal": 93.1 + }, + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 2, + "unit_price": 150.21, + "subtotal": 300.42 + } + ], + "total_price": 393.52, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 13.92, + "expected_delivery": { + "$date": "2025-05-18T19:29:48.725Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.343Z" + } + }, + { + "order_id": "49d5a0d7-7f14-4f19-ba8a-05853a333e75", + "customer": { + "customer_id": "65af49f2-3502-4761-9832-71e5825b5237", + "name": "David Blake", + "email": "smithterrance@example.org", + "phone": "310-739-5302x458", + "address": { + "street": "92480 Kimberly Crest Apt. 401", + "city": "Port Rebeccaport", + "state": "South Carolina", + "zip": "70592", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T22:56:34.670Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 1, + "unit_price": 177.96, + "subtotal": 177.96 + }, + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 62.65, + "subtotal": 62.65 + }, + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 1, + "unit_price": 140.31, + "subtotal": 140.31 + } + ], + "total_price": 380.92, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 8.89, + "expected_delivery": { + "$date": "2025-05-16T22:56:34.670Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.343Z" + } + }, + { + "order_id": "e26351d1-56a8-48aa-afbe-e5d6b88b7673", + "customer": { + "customer_id": "9ead9ab8-7188-4f23-ad03-8fd4df5a521a", + "name": "John Clements", + "email": "bryanharris@example.com", + "phone": "917-546-2005x8387", + "address": { + "street": "2968 Jensen Highway", + "city": "Andersonhaven", + "state": "Maine", + "zip": "28893", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T20:51:18.854Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 2, + "unit_price": 74.05, + "subtotal": 148.1 + }, + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 174.84, + "subtotal": 349.68 + }, + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 1, + "unit_price": 158.85, + "subtotal": 158.85 + } + ], + "total_price": 656.63, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 16.68, + "expected_delivery": { + "$date": "2025-05-14T20:51:18.854Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.344Z" + } + }, + { + "order_id": "2868d282-4fb1-43a9-8db9-6e29bffb49bd", + "customer": { + "customer_id": "653d3093-f506-492b-a0d3-83bdd517b479", + "name": "Kevin Guerrero", + "email": "krichardson@example.com", + "phone": "914-928-3623", + "address": { + "street": "267 Wong Keys", + "city": "Scottfurt", + "state": "Oregon", + "zip": "48219", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T10:13:44.171Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 2, + "unit_price": 117.92, + "subtotal": 235.84 + } + ], + "total_price": 235.84, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 5.07, + "expected_delivery": { + "$date": "2025-05-19T10:13:44.171Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.344Z" + } + }, + { + "order_id": "c3d96530-fa2f-4ac9-ae7e-b412d5c574c3", + "customer": { + "customer_id": "473e5d1c-50c3-458f-82cb-a32214ede55a", + "name": "Justin Richardson", + "email": "penningtonkelly@example.com", + "phone": "(813)311-5489", + "address": { + "street": "35429 Chung Island", + "city": "South Chadfort", + "state": "North Carolina", + "zip": "36375", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T23:23:59.724Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 156.02, + "subtotal": 156.02 + } + ], + "total_price": 156.02, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 6.52, + "expected_delivery": { + "$date": "2025-05-14T23:23:59.724Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.344Z" + } + }, + { + "order_id": "b6487cc3-8e4c-4a39-9f1b-f1a832713806", + "customer": { + "customer_id": "4cbd318a-277d-41a9-9d31-f3a13f2f2696", + "name": "Larry Pierce", + "email": "annalang@example.com", + "phone": "+1-912-886-4568x494", + "address": { + "street": "430 Amy Plains", + "city": "Jesusburgh", + "state": "Hawaii", + "zip": "76921", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T19:54:47.910Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 61.75, + "subtotal": 61.75 + }, + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 1, + "unit_price": 67.79, + "subtotal": 67.79 + } + ], + "total_price": 129.54, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 5.81, + "expected_delivery": { + "$date": "2025-05-18T19:54:47.910Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.344Z" + } + }, + { + "order_id": "226a10d5-3b42-4510-b349-34cd0153b3e6", + "customer": { + "customer_id": "20ab14a7-aac6-454d-a829-01a234c12e77", + "name": "Sarah Evans", + "email": "amandadavila@example.net", + "phone": "681.803.5114", + "address": { + "street": "98362 Lisa Light", + "city": "East Theresafurt", + "state": "South Dakota", + "zip": "14643", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T14:52:42.729Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 126.71, + "subtotal": 253.42 + } + ], + "total_price": 253.42, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 11.95, + "expected_delivery": { + "$date": "2025-05-15T14:52:42.729Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.345Z" + } + }, + { + "order_id": "346b348f-a5cb-40cc-8e34-7b161293d325", + "customer": { + "customer_id": "f5261962-7e0f-4203-a5f0-7631dd6f4e65", + "name": "Matthew Miller", + "email": "evelynjohnson@example.com", + "phone": "253.620.4034x59027", + "address": { + "street": "3762 Austin Stravenue Suite 188", + "city": "Michelleton", + "state": "Nevada", + "zip": "46962", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T07:28:58.807Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 87.2, + "subtotal": 174.4 + } + ], + "total_price": 174.4, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 19.27, + "expected_delivery": { + "$date": "2025-05-19T07:28:58.807Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.345Z" + } + }, + { + "order_id": "cdf4d2c8-d9ab-4857-9c72-ae69a780f672", + "customer": { + "customer_id": "e2610e44-4398-41e4-a7b8-f7936957b3a9", + "name": "Roberta Marshall", + "email": "fchan@example.org", + "phone": "319-335-8473", + "address": { + "street": "685 Peterson Square", + "city": "West Ethanchester", + "state": "North Carolina", + "zip": "86345", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T13:28:26.039Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 149.13, + "subtotal": 149.13 + }, + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 91.99, + "subtotal": 183.98 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 88.26, + "subtotal": 88.26 + } + ], + "total_price": 421.37, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 10.24, + "expected_delivery": { + "$date": "2025-05-14T13:28:26.039Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.345Z" + } + }, + { + "order_id": "c800a6ce-7735-43bc-b6e6-13aa705219d5", + "customer": { + "customer_id": "39e29455-1b96-4364-84e0-95265a26bccc", + "name": "Bruce Alexander", + "email": "burnsmark@example.com", + "phone": "(335)942-0335x6933", + "address": { + "street": "6542 Tracy Extension Apt. 094", + "city": "Walterland", + "state": "Texas", + "zip": "16645", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T16:51:10.152Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 60.33, + "subtotal": 120.66 + }, + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 2, + "unit_price": 174.18, + "subtotal": 348.36 + }, + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 67.12, + "subtotal": 134.24 + } + ], + "total_price": 603.26, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 12.11, + "expected_delivery": { + "$date": "2025-05-16T16:51:10.152Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.345Z" + } + }, + { + "order_id": "070bb754-c1e3-4904-ab3e-e831913fc191", + "customer": { + "customer_id": "02291d22-568d-4955-bb54-1bf4c99da543", + "name": "Aaron Johnston", + "email": "carriespencer@example.org", + "phone": "001-466-705-4463x608", + "address": { + "street": "021 Joy Plaza", + "city": "Lake Emily", + "state": "Virginia", + "zip": "49303", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T00:26:55.485Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 113.54, + "subtotal": 227.08 + }, + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 1, + "unit_price": 87.85, + "subtotal": 87.85 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 81.63, + "subtotal": 163.26 + } + ], + "total_price": 478.19, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 5.02, + "expected_delivery": { + "$date": "2025-05-11T00:26:55.485Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.345Z" + } + }, + { + "order_id": "44fe0694-fbbc-4016-a260-f7c66fdc0020", + "customer": { + "customer_id": "cf8f684a-517f-4d9d-ab49-8883b0600bd9", + "name": "Joseph Turner", + "email": "woodsjames@example.net", + "phone": "(624)347-8636x94501", + "address": { + "street": "572 Kyle Vista", + "city": "Rayborough", + "state": "Pennsylvania", + "zip": "55541", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T09:58:21.036Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 1, + "unit_price": 61.8, + "subtotal": 61.8 + }, + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 1, + "unit_price": 91.55, + "subtotal": 91.55 + }, + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 130.03, + "subtotal": 260.06 + } + ], + "total_price": 413.41, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 11.15, + "expected_delivery": { + "$date": "2025-05-16T09:58:21.036Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.346Z" + } + }, + { + "order_id": "5eb64d79-16e4-4b70-a692-f2721ae5d11f", + "customer": { + "customer_id": "038bb331-aa9f-4261-a847-e22eeec5ee4c", + "name": "Holly Williams", + "email": "stephen02@example.org", + "phone": "+1-277-466-9416x2045", + "address": { + "street": "23683 Michelle Canyon Apt. 230", + "city": "Mccarthyborough", + "state": "Georgia", + "zip": "30802", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T11:35:58.245Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 177.35, + "subtotal": 177.35 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 82.21, + "subtotal": 164.42 + } + ], + "total_price": 341.77, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 7.85, + "expected_delivery": { + "$date": "2025-05-16T11:35:58.245Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.346Z" + } + }, + { + "order_id": "63f28af8-eb41-4948-bd87-efc5f1e537c6", + "customer": { + "customer_id": "0f14d701-581e-41e8-8c37-a82f718175e6", + "name": "Victoria Hall", + "email": "xgarcia@example.com", + "phone": "589.580.4972x3729", + "address": { + "street": "171 Acevedo Ferry Suite 072", + "city": "Dawnview", + "state": "Delaware", + "zip": "78664", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T14:23:37.451Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 2, + "unit_price": 125.02, + "subtotal": 250.04 + } + ], + "total_price": 250.04, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 7.18, + "expected_delivery": { + "$date": "2025-05-21T14:23:37.451Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.346Z" + } + }, + { + "order_id": "518dec4d-697c-4adc-89b9-f60d5de7c1d2", + "customer": { + "customer_id": "4ed357e0-0fac-49e9-ba1a-27cdf133dc74", + "name": "Nicole Baker", + "email": "zwatts@example.net", + "phone": "(477)497-1050x449", + "address": { + "street": "20620 Tammy Squares", + "city": "Lake Danielshire", + "state": "Alabama", + "zip": "43185", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T16:38:52.257Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 129.23, + "subtotal": 129.23 + } + ], + "total_price": 129.23, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 18.39, + "expected_delivery": { + "$date": "2025-05-14T16:38:52.257Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.346Z" + } + }, + { + "order_id": "c37e0bf8-a508-4d5d-be20-4c758cd64913", + "customer": { + "customer_id": "b1fc8550-78f4-411a-9133-cc4755d8ed8a", + "name": "Anita Harvey", + "email": "khowell@example.net", + "phone": "(298)893-7571", + "address": { + "street": "24379 David Shores", + "city": "Port Michaelport", + "state": "South Dakota", + "zip": "24057", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T03:57:32.379Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 1, + "unit_price": 123.59, + "subtotal": 123.59 + } + ], + "total_price": 123.59, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 12.8, + "expected_delivery": { + "$date": "2025-05-17T03:57:32.379Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.346Z" + } + }, + { + "order_id": "c831e296-abf5-4f78-ab7d-2ee3c1bfd49c", + "customer": { + "customer_id": "89c6a41a-62fc-4b82-b491-a96c8fd2aa43", + "name": "Megan Wolf", + "email": "michellemora@example.net", + "phone": "+1-742-591-6070x73184", + "address": { + "street": "76874 Charles Hill", + "city": "North Ericaborough", + "state": "Idaho", + "zip": "47704", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T07:54:35.161Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 127.04, + "subtotal": 127.04 + } + ], + "total_price": 127.04, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 14.57, + "expected_delivery": { + "$date": "2025-05-16T07:54:35.161Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.347Z" + } + }, + { + "order_id": "bc1e0b1a-27fe-4fbe-a729-dbca68265574", + "customer": { + "customer_id": "74201e60-821c-4cf9-b8b7-d78d7a6593fd", + "name": "Michael Strickland", + "email": "vhowell@example.org", + "phone": "(811)733-6117x8150", + "address": { + "street": "9596 Sanchez Mountains", + "city": "East Juanview", + "state": "New York", + "zip": "36520", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T20:59:24.430Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 2, + "unit_price": 92.62, + "subtotal": 185.24 + }, + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 124.35, + "subtotal": 124.35 + } + ], + "total_price": 309.59, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 11.83, + "expected_delivery": { + "$date": "2025-05-11T20:59:24.430Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.347Z" + } + }, + { + "order_id": "ef5598a0-547c-4cba-87d4-e7c9a5082127", + "customer": { + "customer_id": "c57bee0c-805e-47e1-9a2e-cb858952cb16", + "name": "Eugene Edwards", + "email": "srogers@example.net", + "phone": "001-706-981-5342x80125", + "address": { + "street": "402 Lynch Causeway Apt. 403", + "city": "West Hunterside", + "state": "Oklahoma", + "zip": "47151", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T12:59:46.787Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 155.12, + "subtotal": 155.12 + }, + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 110.98, + "subtotal": 110.98 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 150.64, + "subtotal": 301.28 + } + ], + "total_price": 567.38, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 6.86, + "expected_delivery": { + "$date": "2025-05-19T12:59:46.787Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.347Z" + } + }, + { + "order_id": "fe399ae1-52dd-4fb3-8fc9-3513bb8c37da", + "customer": { + "customer_id": "94018fd4-b88e-4cda-8854-79f8bc6f50f8", + "name": "Lisa Wilson", + "email": "reynoldshaley@example.com", + "phone": "+1-709-635-6148", + "address": { + "street": "30632 Carl Mountains", + "city": "Lake Josephberg", + "state": "South Carolina", + "zip": "32733", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T15:26:02.094Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 75.63, + "subtotal": 151.26 + } + ], + "total_price": 151.26, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 18.86, + "expected_delivery": { + "$date": "2025-05-19T15:26:02.094Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.347Z" + } + }, + { + "order_id": "4aa1c175-db64-4d99-906a-f634289023a8", + "customer": { + "customer_id": "d8ddcb09-864c-4399-8541-fa81a633db4a", + "name": "Dustin Marquez", + "email": "simsalexandra@example.net", + "phone": "937-844-0961", + "address": { + "street": "0170 Rachel Overpass Apt. 449", + "city": "Mollyberg", + "state": "New York", + "zip": "08285", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T12:09:46.042Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 86.68, + "subtotal": 173.36 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 123.07, + "subtotal": 123.07 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 88.93, + "subtotal": 177.86 + } + ], + "total_price": 474.29, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 9.02, + "expected_delivery": { + "$date": "2025-05-13T12:09:46.042Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.348Z" + } + }, + { + "order_id": "181e8282-04a9-45dd-b576-5c4bf0bd2ff9", + "customer": { + "customer_id": "e1668325-0b8c-402c-a560-3089d926128c", + "name": "Michael Mitchell", + "email": "hmarsh@example.org", + "phone": "(452)847-1236", + "address": { + "street": "2084 Debra Trail", + "city": "Geraldshire", + "state": "West Virginia", + "zip": "41702", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T12:26:18.907Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 81.81, + "subtotal": 163.62 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 103.18, + "subtotal": 103.18 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 61.21, + "subtotal": 61.21 + } + ], + "total_price": 328.01, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 7.99, + "expected_delivery": { + "$date": "2025-05-12T12:26:18.907Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.348Z" + } + }, + { + "order_id": "26872b75-6929-4717-96ff-3eb29dd27461", + "customer": { + "customer_id": "1daefd9b-178c-43f8-a7a4-ec87f13bbad6", + "name": "Denise Wolf", + "email": "collin57@example.com", + "phone": "001-634-658-6852x6185", + "address": { + "street": "134 Robert Manors Apt. 257", + "city": "South Heatherton", + "state": "Oregon", + "zip": "31607", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T23:03:15.371Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 1, + "unit_price": 161.01, + "subtotal": 161.01 + }, + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 122.07, + "subtotal": 122.07 + }, + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 105.93, + "subtotal": 211.86 + } + ], + "total_price": 494.94, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 16.48, + "expected_delivery": { + "$date": "2025-05-14T23:03:15.371Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.348Z" + } + }, + { + "order_id": "62f0cb15-1312-47d6-ac57-c24da856be78", + "customer": { + "customer_id": "3f443bb2-4da3-4116-8f14-7566e342dfa6", + "name": "Christian Hernandez", + "email": "hschmidt@example.net", + "phone": "(628)849-4755", + "address": { + "street": "462 Christina Branch", + "city": "Wilsonstad", + "state": "Kansas", + "zip": "34500", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T11:09:22.106Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 65.72, + "subtotal": 131.44 + } + ], + "total_price": 131.44, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 16.85, + "expected_delivery": { + "$date": "2025-05-12T11:09:22.106Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.348Z" + } + }, + { + "order_id": "27063865-b142-4a9f-9f59-2ebeefa8152f", + "customer": { + "customer_id": "1f7f4d07-ded7-42cf-866c-c77dc2fa2978", + "name": "Kathryn Miller", + "email": "michael59@example.org", + "phone": "001-569-289-5571", + "address": { + "street": "325 Rice Run", + "city": "Taylorborough", + "state": "Oregon", + "zip": "87534", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T21:30:38.678Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 104.03, + "subtotal": 104.03 + }, + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 158.83, + "subtotal": 317.66 + }, + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 137.27, + "subtotal": 137.27 + } + ], + "total_price": 558.96, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 13.09, + "expected_delivery": { + "$date": "2025-05-17T21:30:38.678Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.348Z" + } + }, + { + "order_id": "91c98953-c2f4-431f-abc3-c3105f005bfe", + "customer": { + "customer_id": "185be868-c0c3-42a0-9423-10d5d92e7454", + "name": "Sylvia Murphy", + "email": "alevine@example.com", + "phone": "+1-354-740-1679x2567", + "address": { + "street": "15057 Beth Keys", + "city": "Dominguezbury", + "state": "Missouri", + "zip": "92457", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T15:12:36.018Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 99.66, + "subtotal": 199.32 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 111.84, + "subtotal": 223.68 + }, + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 139.39, + "subtotal": 139.39 + } + ], + "total_price": 562.39, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 5.38, + "expected_delivery": { + "$date": "2025-05-15T15:12:36.018Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.349Z" + } + }, + { + "order_id": "ffeb3ba5-eee8-4b31-8c82-a53eb4da0750", + "customer": { + "customer_id": "2690fdc1-44e1-407a-867e-e6f4703cc7f0", + "name": "Wanda Simmons", + "email": "tvasquez@example.net", + "phone": "609-705-3196x36607", + "address": { + "street": "1131 Evans Fork", + "city": "Colinport", + "state": "Nevada", + "zip": "19270", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T16:41:58.994Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 1, + "unit_price": 127.31, + "subtotal": 127.31 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 160.88, + "subtotal": 160.88 + } + ], + "total_price": 288.19, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 8.65, + "expected_delivery": { + "$date": "2025-05-19T16:41:58.994Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.349Z" + } + }, + { + "order_id": "37046283-30b1-4bd9-88f8-139bcb7ab71b", + "customer": { + "customer_id": "09302cba-3e59-4819-a3a6-ba4a18125c33", + "name": "Robert Miller", + "email": "scottashley@example.com", + "phone": "526.921.7853x0187", + "address": { + "street": "080 Thomas Center Apt. 898", + "city": "East Zacharyside", + "state": "Colorado", + "zip": "13627", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T06:06:53.476Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 123.68, + "subtotal": 247.36 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 96.56, + "subtotal": 193.12 + } + ], + "total_price": 440.48, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 17.1, + "expected_delivery": { + "$date": "2025-05-20T06:06:53.476Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.349Z" + } + }, + { + "order_id": "9db0e846-cf12-4a2e-aba0-f6a6e396850f", + "customer": { + "customer_id": "ed2f9a9b-98c2-4a2a-9143-baf75094a729", + "name": "Stephen Miller", + "email": "ebrown@example.com", + "phone": "+1-422-398-3464x18224", + "address": { + "street": "67537 Ebony Roads", + "city": "Jonesside", + "state": "Wisconsin", + "zip": "63096", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T08:01:06.978Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 177.81, + "subtotal": 177.81 + } + ], + "total_price": 177.81, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 13.68, + "expected_delivery": { + "$date": "2025-05-11T08:01:06.978Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.349Z" + } + }, + { + "order_id": "8bbbca9e-143c-4577-adc6-a8f1fd522df4", + "customer": { + "customer_id": "3948d29f-e7e1-4fb6-9579-ecda0e86dd3b", + "name": "Troy Smith", + "email": "walkercassie@example.org", + "phone": "680-462-7253", + "address": { + "street": "523 Eric Square Suite 596", + "city": "Gonzalezton", + "state": "Montana", + "zip": "38437", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T19:21:32.306Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 111.86, + "subtotal": 223.72 + }, + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 163.45, + "subtotal": 163.45 + } + ], + "total_price": 387.17, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 13.21, + "expected_delivery": { + "$date": "2025-05-18T19:21:32.306Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.349Z" + } + }, + { + "order_id": "ed5f0436-5f35-4de3-b59b-bfbc044c55f2", + "customer": { + "customer_id": "2ef48c2f-482e-4fa1-86c5-229e248a0733", + "name": "George Watkins", + "email": "porterjennifer@example.net", + "phone": "8423896937", + "address": { + "street": "01194 Gamble Overpass", + "city": "Lake Amyton", + "state": "Pennsylvania", + "zip": "61289", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T15:00:06.840Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 118.67, + "subtotal": 237.34 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 79.89, + "subtotal": 159.78 + }, + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 65.3, + "subtotal": 130.6 + } + ], + "total_price": 527.72, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 14.69, + "expected_delivery": { + "$date": "2025-05-09T15:00:06.840Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.350Z" + } + }, + { + "order_id": "4ca40a11-b2f3-4cfa-a2df-a11c182cad53", + "customer": { + "customer_id": "455acd9d-3123-4711-90c5-c4e347b06836", + "name": "Monica Gordon", + "email": "monicaanderson@example.net", + "phone": "(826)451-3292", + "address": { + "street": "415 Rogers Stravenue", + "city": "Wolfeton", + "state": "Wyoming", + "zip": "64930", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T04:47:46.016Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 61.0, + "subtotal": 122.0 + }, + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 117.68, + "subtotal": 235.36 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 171.5, + "subtotal": 171.5 + } + ], + "total_price": 528.86, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 18.89, + "expected_delivery": { + "$date": "2025-05-14T04:47:46.016Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.350Z" + } + }, + { + "order_id": "761eec23-d482-46ea-a763-bd29402786ee", + "customer": { + "customer_id": "d3b5d6d6-452b-4a00-88d2-572cd6cea1fc", + "name": "Alexandra Woods", + "email": "hillheather@example.net", + "phone": "457-596-8212", + "address": { + "street": "3450 Valencia Lodge", + "city": "Johntown", + "state": "Wisconsin", + "zip": "00637", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T23:55:58.998Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 176.71, + "subtotal": 353.42 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 1, + "unit_price": 98.47, + "subtotal": 98.47 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 1, + "unit_price": 163.57, + "subtotal": 163.57 + } + ], + "total_price": 615.46, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 17.18, + "expected_delivery": { + "$date": "2025-05-16T23:55:58.998Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.350Z" + } + }, + { + "order_id": "b5d163fe-ae72-4129-8d13-4cecb685a3c7", + "customer": { + "customer_id": "37467b0a-ce3a-4b7c-985f-95db9ecef4fe", + "name": "Kristi Patel", + "email": "joshua52@example.org", + "phone": "896-599-0512x56458", + "address": { + "street": "087 Philip Turnpike", + "city": "Lauraburgh", + "state": "Iowa", + "zip": "08534", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T17:05:28.098Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 143.81, + "subtotal": 287.62 + }, + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 165.74, + "subtotal": 165.74 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 146.68, + "subtotal": 293.36 + } + ], + "total_price": 746.72, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 19.45, + "expected_delivery": { + "$date": "2025-05-21T17:05:28.098Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.350Z" + } + }, + { + "order_id": "b24d41ed-f77f-499b-b663-f6d5f62b804d", + "customer": { + "customer_id": "16c715c9-5f2d-4d20-a2c3-c4ff1d8ec8ca", + "name": "Elizabeth Bradley", + "email": "jenniferlewis@example.com", + "phone": "001-514-502-6447x917", + "address": { + "street": "1218 Chad Lane", + "city": "North Robertberg", + "state": "Oklahoma", + "zip": "22750", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T18:22:41.944Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 1, + "unit_price": 162.31, + "subtotal": 162.31 + }, + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 61.06, + "subtotal": 61.06 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 79.35, + "subtotal": 158.7 + } + ], + "total_price": 382.07, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 16.1, + "expected_delivery": { + "$date": "2025-05-14T18:22:41.944Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.351Z" + } + }, + { + "order_id": "7df260af-8db4-41c5-a476-b552c94dcf66", + "customer": { + "customer_id": "d86e5197-f16e-45b9-9e92-af6d3a6ead1f", + "name": "Stacy Mendez", + "email": "selenadavis@example.com", + "phone": "(285)301-7932", + "address": { + "street": "67167 Jennifer Circle Apt. 620", + "city": "South Davidville", + "state": "New York", + "zip": "44174", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T04:30:31.079Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 76.6, + "subtotal": 153.2 + } + ], + "total_price": 153.2, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 12.78, + "expected_delivery": { + "$date": "2025-05-14T04:30:31.079Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.351Z" + } + }, + { + "order_id": "cae71b63-315a-4b75-8c2c-6d0359e6dba7", + "customer": { + "customer_id": "e2b06925-5ebc-44c8-830b-d27bfb9e97c2", + "name": "Amber Williams", + "email": "syoung@example.org", + "phone": "405.580.2085", + "address": { + "street": "9833 Jennifer Street", + "city": "East Christopherport", + "state": "Nebraska", + "zip": "27450", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T16:12:12.131Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 140.84, + "subtotal": 281.68 + } + ], + "total_price": 281.68, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 10.41, + "expected_delivery": { + "$date": "2025-05-15T16:12:12.131Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.351Z" + } + }, + { + "order_id": "157c5ee9-0efd-486e-a1ec-8f0b011ebb15", + "customer": { + "customer_id": "dd9a78e7-2c88-4249-85ad-d5fbd5453d07", + "name": "Corey Wilson", + "email": "jasonmiranda@example.com", + "phone": "861.981.6825x2994", + "address": { + "street": "9275 Debra Trail", + "city": "Melissaborough", + "state": "Connecticut", + "zip": "12351", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T08:31:11.313Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 150.89, + "subtotal": 150.89 + }, + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 89.67, + "subtotal": 179.34 + } + ], + "total_price": 330.23, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 13.33, + "expected_delivery": { + "$date": "2025-05-14T08:31:11.313Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.351Z" + } + }, + { + "order_id": "c23dc8f1-77a0-4079-9d13-5847abde4718", + "customer": { + "customer_id": "c2cc1b76-99aa-4272-8746-654d96f5544c", + "name": "Stacy Daniels", + "email": "catherine49@example.org", + "phone": "+1-584-872-4212", + "address": { + "street": "60432 Randall Street", + "city": "West Eric", + "state": "Minnesota", + "zip": "48977", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T21:47:35.977Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 89.8, + "subtotal": 179.6 + }, + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 89.61, + "subtotal": 179.22 + }, + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 158.0, + "subtotal": 316.0 + } + ], + "total_price": 674.82, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 15.01, + "expected_delivery": { + "$date": "2025-05-12T21:47:35.977Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.351Z" + } + }, + { + "order_id": "04caf891-6dac-4da0-a8f4-5df86f69cfcc", + "customer": { + "customer_id": "a8581b63-5849-4c8b-9f33-66698bae91b1", + "name": "Patrick Gonzalez", + "email": "tranchristine@example.org", + "phone": "001-567-620-9014x9220", + "address": { + "street": "5246 Turner Square Suite 910", + "city": "Debbieburgh", + "state": "Hawaii", + "zip": "07624", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T11:31:26.321Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 127.63, + "subtotal": 255.26 + } + ], + "total_price": 255.26, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 13.76, + "expected_delivery": { + "$date": "2025-05-13T11:31:26.321Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.352Z" + } + }, + { + "order_id": "9dd45e10-6fbc-4035-9597-e571d672f90b", + "customer": { + "customer_id": "b1dd50de-585c-4bed-a5f3-c7faf901d209", + "name": "Andrew Bell DDS", + "email": "stacy68@example.com", + "phone": "+1-564-632-6225x069", + "address": { + "street": "801 David Roads Apt. 300", + "city": "New Alisonhaven", + "state": "Wisconsin", + "zip": "21032", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T18:07:44.829Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 2, + "unit_price": 162.93, + "subtotal": 325.86 + } + ], + "total_price": 325.86, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 15.2, + "expected_delivery": { + "$date": "2025-05-17T18:07:44.829Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.352Z" + } + }, + { + "order_id": "d09bf6d6-8fdb-4a8b-a63a-574559a80145", + "customer": { + "customer_id": "ed46b7b2-bf94-4735-b5ff-64d0a0bfb1fa", + "name": "William Hunt", + "email": "lynndavid@example.net", + "phone": "(638)812-9995x056", + "address": { + "street": "73895 Cynthia Courts Apt. 020", + "city": "East Mark", + "state": "Maryland", + "zip": "69167", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T03:14:28.723Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 95.02, + "subtotal": 190.04 + } + ], + "total_price": 190.04, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 6.95, + "expected_delivery": { + "$date": "2025-05-13T03:14:28.723Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.352Z" + } + }, + { + "order_id": "b6a12ab8-0d38-4a46-9714-24125f32fb2d", + "customer": { + "customer_id": "9289c0a7-108e-4e57-bbd7-e2f2aff929c8", + "name": "Jimmy Lopez", + "email": "brendanfloyd@example.com", + "phone": "+1-466-231-3010x112", + "address": { + "street": "0932 Moore Park", + "city": "North Matthewchester", + "state": "Idaho", + "zip": "01171", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T21:17:05.996Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 124.63, + "subtotal": 124.63 + }, + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 178.92, + "subtotal": 178.92 + }, + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 158.83, + "subtotal": 317.66 + } + ], + "total_price": 621.21, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 15.74, + "expected_delivery": { + "$date": "2025-05-11T21:17:05.996Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.352Z" + } + }, + { + "order_id": "a0858ab3-0944-4cc7-bbe3-a52ebb215c11", + "customer": { + "customer_id": "e7482b92-f26e-4792-9bdc-dcf485de3ede", + "name": "Karen Ford", + "email": "robert09@example.com", + "phone": "(848)816-6322x219", + "address": { + "street": "7358 James Vista Suite 175", + "city": "South Deborahtown", + "state": "North Dakota", + "zip": "09184", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T11:33:08.278Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 89.16, + "subtotal": 89.16 + } + ], + "total_price": 89.16, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 13.51, + "expected_delivery": { + "$date": "2025-05-11T11:33:08.278Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.353Z" + } + }, + { + "order_id": "6141fa3f-745f-4406-a4f1-7e150a6e0a61", + "customer": { + "customer_id": "66870c50-bf42-403f-bd8e-0bd19772e0b9", + "name": "Stephanie Chapman", + "email": "nperez@example.com", + "phone": "+1-430-318-4142", + "address": { + "street": "21694 Hawkins Isle Suite 250", + "city": "New Williamside", + "state": "Texas", + "zip": "06169", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T10:34:04.616Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 85.64, + "subtotal": 85.64 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 103.66, + "subtotal": 207.32 + } + ], + "total_price": 292.96, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 16.21, + "expected_delivery": { + "$date": "2025-05-15T10:34:04.616Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.353Z" + } + }, + { + "order_id": "dad03fdb-05e1-4a01-9bf7-034963892372", + "customer": { + "customer_id": "d20696d7-be49-4d8c-a061-d0cbd7af1450", + "name": "Charles Turner", + "email": "curtis11@example.org", + "phone": "2385790316", + "address": { + "street": "82696 Jeffrey Viaduct Suite 380", + "city": "Hillfurt", + "state": "South Dakota", + "zip": "57145", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T19:02:36.119Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 110.02, + "subtotal": 110.02 + } + ], + "total_price": 110.02, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 10.4, + "expected_delivery": { + "$date": "2025-05-15T19:02:36.119Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.353Z" + } + }, + { + "order_id": "572dac4e-798d-495c-9107-8521218ff0ee", + "customer": { + "customer_id": "2055f21f-5264-4bdc-8c42-2bc099889c04", + "name": "Nicole Jones", + "email": "anthony24@example.org", + "phone": "975.407.6367", + "address": { + "street": "796 Elizabeth Springs", + "city": "North Robinfurt", + "state": "Georgia", + "zip": "92545", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T12:30:28.141Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 144.93, + "subtotal": 289.86 + } + ], + "total_price": 289.86, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 12.33, + "expected_delivery": { + "$date": "2025-05-20T12:30:28.141Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.353Z" + } + }, + { + "order_id": "7ffc7e33-7667-404b-a9ae-98f214aff9c4", + "customer": { + "customer_id": "abc20c16-c3d1-4e04-a7ce-69990429a2eb", + "name": "Damon Williamson", + "email": "richtravis@example.com", + "phone": "713.585.7024", + "address": { + "street": "7594 Davis Course", + "city": "Farleymouth", + "state": "Vermont", + "zip": "77101", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T10:22:19.985Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 119.39, + "subtotal": 119.39 + }, + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 91.62, + "subtotal": 91.62 + }, + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 91.32, + "subtotal": 91.32 + } + ], + "total_price": 302.33, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 16.75, + "expected_delivery": { + "$date": "2025-05-14T10:22:19.985Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.353Z" + } + }, + { + "order_id": "789c7f8b-dcf6-4177-8c5b-07b988eb4462", + "customer": { + "customer_id": "299e1923-d47a-41bc-9276-c008566906ef", + "name": "Jason Thomas", + "email": "wlevy@example.org", + "phone": "338-442-5856x4812", + "address": { + "street": "7222 Ayala Prairie Suite 334", + "city": "Erinfurt", + "state": "Illinois", + "zip": "88114", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T02:42:08.240Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 100.43, + "subtotal": 200.86 + } + ], + "total_price": 200.86, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 7.23, + "expected_delivery": { + "$date": "2025-05-14T02:42:08.240Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.354Z" + } + }, + { + "order_id": "6db12580-463f-40e3-ba08-9c909debec83", + "customer": { + "customer_id": "22ca1226-7d7b-4902-97ce-ca16c01cd103", + "name": "Kenneth Wagner", + "email": "mcconnellshannon@example.com", + "phone": "241-380-5789", + "address": { + "street": "027 Anderson Lodge Apt. 315", + "city": "Rebeccamouth", + "state": "Oregon", + "zip": "04133", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T10:57:25.243Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 93.75, + "subtotal": 187.5 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 1, + "unit_price": 127.96, + "subtotal": 127.96 + } + ], + "total_price": 315.46, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 10.22, + "expected_delivery": { + "$date": "2025-05-12T10:57:25.243Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.354Z" + } + }, + { + "order_id": "37847b73-682c-4256-9290-9f94b43a7b24", + "customer": { + "customer_id": "83be0679-a657-40c7-8a9d-feffd47cb2e3", + "name": "Olivia Richardson", + "email": "erica64@example.org", + "phone": "9216099459", + "address": { + "street": "92115 John Way Apt. 377", + "city": "Watsonville", + "state": "Iowa", + "zip": "65934", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T21:51:10.837Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 111.88, + "subtotal": 223.76 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 137.62, + "subtotal": 275.24 + }, + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 160.24, + "subtotal": 320.48 + } + ], + "total_price": 819.48, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 18.79, + "expected_delivery": { + "$date": "2025-05-16T21:51:10.837Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.354Z" + } + }, + { + "order_id": "0f6607bf-02ee-4730-8266-b7dd5cfe5fc2", + "customer": { + "customer_id": "5d06de13-7c46-4e51-93a5-1e4d3f280dbf", + "name": "Edward Ray", + "email": "hoffmanjudy@example.org", + "phone": "+1-525-957-8307x6419", + "address": { + "street": "803 Allison Course", + "city": "South Larry", + "state": "Louisiana", + "zip": "49822", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T13:28:53.138Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 120.06, + "subtotal": 240.12 + } + ], + "total_price": 240.12, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 5.64, + "expected_delivery": { + "$date": "2025-05-17T13:28:53.138Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.354Z" + } + }, + { + "order_id": "3f954da1-e94f-406d-938c-928524074cd0", + "customer": { + "customer_id": "ffde059a-184d-4446-83fe-e9ce9219cd55", + "name": "Pamela Rodriguez", + "email": "lmorris@example.net", + "phone": "001-392-598-3188x85879", + "address": { + "street": "3328 Andrews Drive", + "city": "Lake Pamelabury", + "state": "Washington", + "zip": "36553", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T10:32:05.602Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 175.89, + "subtotal": 175.89 + }, + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 125.08, + "subtotal": 125.08 + } + ], + "total_price": 300.97, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 9.3, + "expected_delivery": { + "$date": "2025-05-14T10:32:05.602Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.355Z" + } + }, + { + "order_id": "7d26a974-c414-4191-b510-fe0b087718ca", + "customer": { + "customer_id": "0156d7cf-82f2-45cb-b8b7-50d219333d04", + "name": "Tyler White", + "email": "catherine51@example.net", + "phone": "(715)761-9882", + "address": { + "street": "5851 Sparks Parks Apt. 307", + "city": "East Heatherside", + "state": "Georgia", + "zip": "69637", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T04:46:04.263Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 1, + "unit_price": 125.81, + "subtotal": 125.81 + } + ], + "total_price": 125.81, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 10.91, + "expected_delivery": { + "$date": "2025-05-14T04:46:04.263Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.355Z" + } + }, + { + "order_id": "44339cf6-d0b4-4d78-8210-94e928b35f91", + "customer": { + "customer_id": "d2026ca1-6c65-4c13-ba59-96f95425697e", + "name": "Tony Archer", + "email": "calderoncharles@example.org", + "phone": "818.340.1098x6155", + "address": { + "street": "09814 Solis Union", + "city": "Davischester", + "state": "Rhode Island", + "zip": "79510", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T04:33:33.161Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 99.86, + "subtotal": 199.72 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 143.75, + "subtotal": 287.5 + } + ], + "total_price": 487.22, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 11.69, + "expected_delivery": { + "$date": "2025-05-17T04:33:33.161Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.355Z" + } + }, + { + "order_id": "ff794507-049f-468e-aecc-17ccca407a97", + "customer": { + "customer_id": "24d13984-36d1-4b34-a1fa-f200ae948d23", + "name": "Alexandria Estes", + "email": "jvelasquez@example.org", + "phone": "342-737-2857", + "address": { + "street": "174 Fry Circle", + "city": "North Christopherberg", + "state": "Maryland", + "zip": "46116", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T22:39:23.336Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 167.14, + "subtotal": 167.14 + }, + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 1, + "unit_price": 133.27, + "subtotal": 133.27 + }, + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 2, + "unit_price": 157.51, + "subtotal": 315.02 + } + ], + "total_price": 615.43, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 18.86, + "expected_delivery": { + "$date": "2025-05-22T22:39:23.336Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.355Z" + } + }, + { + "order_id": "5fba17ff-92d5-4815-a4e7-d3d518a95a28", + "customer": { + "customer_id": "c290dbea-61cc-4781-9663-d3e82b162d3d", + "name": "Miss Dana Sanders", + "email": "kaylamcgee@example.org", + "phone": "965.781.5730", + "address": { + "street": "9689 Johnson Forges Apt. 334", + "city": "East Nathan", + "state": "Colorado", + "zip": "50664", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T12:05:58.683Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 174.02, + "subtotal": 174.02 + }, + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 1, + "unit_price": 157.88, + "subtotal": 157.88 + } + ], + "total_price": 331.9, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 18.33, + "expected_delivery": { + "$date": "2025-05-16T12:05:58.683Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.356Z" + } + }, + { + "order_id": "50c627b5-47b5-4bef-ac73-522472ee7764", + "customer": { + "customer_id": "f8427f5b-fb86-4163-9b0b-8fbb4aefd74e", + "name": "Edward Wood", + "email": "loriray@example.org", + "phone": "(618)379-9870", + "address": { + "street": "62315 Holland Run", + "city": "West Kathleen", + "state": "Alaska", + "zip": "62093", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T08:39:31.748Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 89.43, + "subtotal": 178.86 + } + ], + "total_price": 178.86, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 7.57, + "expected_delivery": { + "$date": "2025-05-18T08:39:31.748Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.356Z" + } + }, + { + "order_id": "19680e0d-344e-43ed-9087-ac529ed7e64b", + "customer": { + "customer_id": "1478609d-346a-4aac-a4d7-28cf821d78c1", + "name": "Gregory Dawson", + "email": "martinrichard@example.net", + "phone": "8862579233", + "address": { + "street": "4074 Wright Neck Apt. 341", + "city": "North Christopher", + "state": "Virginia", + "zip": "42218", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T05:48:07.337Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 158.0, + "subtotal": 316.0 + } + ], + "total_price": 316.0, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 9.66, + "expected_delivery": { + "$date": "2025-05-18T05:48:07.337Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.356Z" + } + }, + { + "order_id": "35c84921-9e5e-4e7a-9a47-22ef4a9bf9c0", + "customer": { + "customer_id": "c8403dad-154e-400e-8fab-cfd440246485", + "name": "Sharon Clayton", + "email": "jpark@example.net", + "phone": "996.288.1428", + "address": { + "street": "001 Wilkins Forest", + "city": "North Courtneyburgh", + "state": "New York", + "zip": "48042", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T07:53:53.464Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 107.86, + "subtotal": 215.72 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 129.61, + "subtotal": 259.22 + }, + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 67.98, + "subtotal": 135.96 + } + ], + "total_price": 610.9, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 18.1, + "expected_delivery": { + "$date": "2025-05-11T07:53:53.464Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.356Z" + } + }, + { + "order_id": "e0b96f3a-95b4-4c62-87a4-77df0fbcbc99", + "customer": { + "customer_id": "660676b1-0917-43e1-a722-2775094364db", + "name": "Rebecca Kelly", + "email": "thomaspierce@example.net", + "phone": "243-313-8673", + "address": { + "street": "00097 Price Square Suite 143", + "city": "East Beckystad", + "state": "Tennessee", + "zip": "67690", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T15:10:31.980Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 124.15, + "subtotal": 124.15 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 100.34, + "subtotal": 100.34 + } + ], + "total_price": 224.49, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 11.22, + "expected_delivery": { + "$date": "2025-05-17T15:10:31.980Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.356Z" + } + }, + { + "order_id": "f3ab2186-b5d6-498c-a4dd-39fbb0be9897", + "customer": { + "customer_id": "12cd3198-59a4-494f-a23d-4fdb6f9d52ef", + "name": "Jennifer Nelson", + "email": "brittneyjames@example.com", + "phone": "(348)725-3429x127", + "address": { + "street": "68114 Ashley Lakes", + "city": "East Carlatown", + "state": "North Dakota", + "zip": "44204", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T20:42:39.859Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 104.06, + "subtotal": 104.06 + }, + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 90.9, + "subtotal": 90.9 + } + ], + "total_price": 194.96, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 18.17, + "expected_delivery": { + "$date": "2025-05-16T20:42:39.859Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.357Z" + } + }, + { + "order_id": "07b2ba10-4fd3-4694-a122-948912c7ef31", + "customer": { + "customer_id": "a7d630e2-2aee-41f3-8ce9-12345adc76aa", + "name": "Michelle Johnston", + "email": "alvarezdonna@example.org", + "phone": "+1-582-442-6768", + "address": { + "street": "17879 Chloe Overpass", + "city": "New Angel", + "state": "Ohio", + "zip": "12477", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T17:25:51.811Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 92.98, + "subtotal": 92.98 + } + ], + "total_price": 92.98, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 18.41, + "expected_delivery": { + "$date": "2025-05-15T17:25:51.811Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.357Z" + } + }, + { + "order_id": "4476f07e-39be-4f62-8b84-48cf3ea5702b", + "customer": { + "customer_id": "a7bd19b4-92f8-46a5-b89d-0e2b3ce92b2b", + "name": "Anna King", + "email": "thompsonsharon@example.net", + "phone": "+1-382-485-3358x19083", + "address": { + "street": "658 Maynard Stream", + "city": "Lake Jeffrey", + "state": "Arizona", + "zip": "76339", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T07:26:15.937Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 1, + "unit_price": 91.84, + "subtotal": 91.84 + } + ], + "total_price": 91.84, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 9.06, + "expected_delivery": { + "$date": "2025-05-14T07:26:15.937Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.357Z" + } + }, + { + "order_id": "c3bff07e-7ecd-43fe-9759-503f0f434577", + "customer": { + "customer_id": "48bab735-5e97-4951-8e94-43fb83eeb5e8", + "name": "Sarah Frey", + "email": "cynthiawilliams@example.net", + "phone": "001-593-763-7106x254", + "address": { + "street": "03275 Justin Port Suite 748", + "city": "Morseshire", + "state": "Florida", + "zip": "08246", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T15:03:19.206Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 118.9, + "subtotal": 237.8 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 80.32, + "subtotal": 160.64 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 157.97, + "subtotal": 315.94 + } + ], + "total_price": 714.38, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 16.75, + "expected_delivery": { + "$date": "2025-05-19T15:03:19.206Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.357Z" + } + }, + { + "order_id": "d385506b-9079-41d2-bf78-deb4364ad513", + "customer": { + "customer_id": "d58fc869-df71-432b-a19c-e18d0bf89561", + "name": "Mark Johnson", + "email": "wbutler@example.com", + "phone": "001-408-258-6076x8638", + "address": { + "street": "2629 Laurie Harbor", + "city": "New Dakota", + "state": "Georgia", + "zip": "58679", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T03:23:03.649Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 124.2, + "subtotal": 248.4 + } + ], + "total_price": 248.4, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 14.68, + "expected_delivery": { + "$date": "2025-05-14T03:23:03.649Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.358Z" + } + }, + { + "order_id": "a518d5ba-23e9-4e32-852e-d704a8fac203", + "customer": { + "customer_id": "11608763-f784-4e65-903b-7ca579ef6a7a", + "name": "James Perez", + "email": "zluna@example.org", + "phone": "496-588-8782x84405", + "address": { + "street": "10318 Rush Vista Apt. 668", + "city": "Velasquezmouth", + "state": "Illinois", + "zip": "59019", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T14:57:02.927Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 161.51, + "subtotal": 161.51 + } + ], + "total_price": 161.51, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 10.38, + "expected_delivery": { + "$date": "2025-05-12T14:57:02.927Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.358Z" + } + }, + { + "order_id": "89634ad9-2c07-4891-bc81-ee405d48ed3d", + "customer": { + "customer_id": "5ec92aee-8344-4728-96a4-ba9fcfefeb06", + "name": "William Freeman", + "email": "hamptonjesse@example.org", + "phone": "001-751-341-8486x13137", + "address": { + "street": "60221 Kayla Ranch", + "city": "West Christopher", + "state": "North Dakota", + "zip": "79695", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T08:11:23.319Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 75.79, + "subtotal": 151.58 + }, + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 123.39, + "subtotal": 246.78 + } + ], + "total_price": 398.36, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 13.85, + "expected_delivery": { + "$date": "2025-05-13T08:11:23.319Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.358Z" + } + }, + { + "order_id": "6dd90822-d8ed-4e63-9c16-556a4e16e17c", + "customer": { + "customer_id": "c85b554a-fba6-4603-a296-bfa6aa463234", + "name": "Leslie Martinez", + "email": "stephanie29@example.net", + "phone": "(566)834-8208", + "address": { + "street": "06429 Shawn Avenue Suite 518", + "city": "Jessicaview", + "state": "Pennsylvania", + "zip": "16455", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T05:57:29.293Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 126.67, + "subtotal": 126.67 + }, + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 134.75, + "subtotal": 269.5 + } + ], + "total_price": 396.17, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 7.64, + "expected_delivery": { + "$date": "2025-05-11T05:57:29.293Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.358Z" + } + }, + { + "order_id": "bb6144a7-9f95-4006-a73f-d24216fdabb3", + "customer": { + "customer_id": "56a4ab62-d28c-4f83-a90c-ca4e76263dfc", + "name": "Evelyn Marshall", + "email": "gonzalezjoshua@example.net", + "phone": "001-404-341-9865x166", + "address": { + "street": "15360 Keith Ways Suite 809", + "city": "Kimberlytown", + "state": "Indiana", + "zip": "11070", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T14:28:32.318Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 85.42, + "subtotal": 170.84 + }, + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 2, + "unit_price": 82.94, + "subtotal": 165.88 + }, + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 125.94, + "subtotal": 125.94 + } + ], + "total_price": 462.66, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 10.37, + "expected_delivery": { + "$date": "2025-05-15T14:28:32.318Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.359Z" + } + }, + { + "order_id": "2b05e2ad-00c9-4e9d-9ab1-d30d61b0038c", + "customer": { + "customer_id": "64ceaa58-5ba6-4326-af94-0e4efacd1ef3", + "name": "Cameron Bailey", + "email": "isabella71@example.com", + "phone": "6582550664", + "address": { + "street": "4812 Nichols Tunnel Apt. 519", + "city": "Rachelhaven", + "state": "Georgia", + "zip": "09066", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T04:17:31.258Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 97.92, + "subtotal": 195.84 + } + ], + "total_price": 195.84, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 7.27, + "expected_delivery": { + "$date": "2025-05-10T04:17:31.258Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.359Z" + } + }, + { + "order_id": "06cab835-0a4a-4d7f-8fec-d0c736042e5a", + "customer": { + "customer_id": "3280e9a2-251c-443f-a1ad-e2f759203d0e", + "name": "David Baker", + "email": "mccannbrian@example.net", + "phone": "6787988334", + "address": { + "street": "648 Brown Court", + "city": "Joyborough", + "state": "Idaho", + "zip": "66051", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T21:56:10.809Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 86.04, + "subtotal": 172.08 + }, + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 83.29, + "subtotal": 83.29 + } + ], + "total_price": 255.37, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 15.31, + "expected_delivery": { + "$date": "2025-05-20T21:56:10.809Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.359Z" + } + }, + { + "order_id": "d7e6e026-b267-4eb2-9c52-4f7234093167", + "customer": { + "customer_id": "907dfea9-3aca-49e0-bad7-c2275f9a7b4a", + "name": "Austin Brown", + "email": "christopher02@example.org", + "phone": "(741)783-8331", + "address": { + "street": "73448 Matthew Cape", + "city": "East Susan", + "state": "Massachusetts", + "zip": "26058", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T00:08:18.074Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 79.01, + "subtotal": 158.02 + } + ], + "total_price": 158.02, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 14.43, + "expected_delivery": { + "$date": "2025-05-22T00:08:18.074Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.359Z" + } + }, + { + "order_id": "8f23e200-0b8b-4c2c-8173-28c9a20f767f", + "customer": { + "customer_id": "38769571-6901-43ed-970b-b5dcaab24712", + "name": "Kimberly Smith", + "email": "josephdavis@example.net", + "phone": "584.498.6605", + "address": { + "street": "80519 Michael Camp Suite 382", + "city": "South Dominiqueberg", + "state": "South Carolina", + "zip": "83322", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T17:43:00.845Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 2, + "unit_price": 68.7, + "subtotal": 137.4 + } + ], + "total_price": 137.4, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 19.69, + "expected_delivery": { + "$date": "2025-05-13T17:43:00.845Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.359Z" + } + }, + { + "order_id": "edfc7378-341a-48fe-aa58-82e5fd281e7c", + "customer": { + "customer_id": "cc7877a3-54e7-4b3b-8465-bebc84263839", + "name": "Adrian Walker", + "email": "hubermark@example.org", + "phone": "6374104816", + "address": { + "street": "2209 Linda Viaduct", + "city": "Port Christopherville", + "state": "Virginia", + "zip": "61398", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T08:36:02.842Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 74.61, + "subtotal": 149.22 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 178.47, + "subtotal": 356.94 + } + ], + "total_price": 506.16, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 15.43, + "expected_delivery": { + "$date": "2025-05-13T08:36:02.842Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.360Z" + } + }, + { + "order_id": "4afd9123-53d5-4f23-97a2-bee389b842e5", + "customer": { + "customer_id": "07466e94-1c68-467e-b91a-80285db93c07", + "name": "Jamie Short", + "email": "ronaldanthony@example.com", + "phone": "792-270-3439x903", + "address": { + "street": "0746 Crystal Squares Apt. 882", + "city": "East Michael", + "state": "Oklahoma", + "zip": "44534", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T17:12:51.851Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 81.01, + "subtotal": 162.02 + } + ], + "total_price": 162.02, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 6.66, + "expected_delivery": { + "$date": "2025-05-14T17:12:51.851Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.360Z" + } + }, + { + "order_id": "9577c0fe-dc21-44dc-a056-bad10dd99dad", + "customer": { + "customer_id": "69d2906b-96d3-407c-bb21-25a78a020061", + "name": "Jeffery Lawrence", + "email": "gperry@example.org", + "phone": "001-546-528-5432x003", + "address": { + "street": "4628 Simmons Locks Suite 668", + "city": "East Kimberly", + "state": "Idaho", + "zip": "11194", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T12:48:29.384Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 2, + "unit_price": 162.8, + "subtotal": 325.6 + } + ], + "total_price": 325.6, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 14.88, + "expected_delivery": { + "$date": "2025-05-20T12:48:29.384Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.360Z" + } + }, + { + "order_id": "b9182ccd-0fef-47d5-9e20-1915e3e5820d", + "customer": { + "customer_id": "5887c20e-f3c4-4f56-a7c7-fe713e8496a3", + "name": "Jason Frederick", + "email": "jenniferhaynes@example.net", + "phone": "730.839.0933x284", + "address": { + "street": "824 Harris Plains", + "city": "West Katieberg", + "state": "New Hampshire", + "zip": "56960", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T15:14:16.570Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 148.87, + "subtotal": 297.74 + } + ], + "total_price": 297.74, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 17.31, + "expected_delivery": { + "$date": "2025-05-17T15:14:16.570Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.360Z" + } + }, + { + "order_id": "7169eea5-5c9a-497e-9b1b-3fa8600571d5", + "customer": { + "customer_id": "8184cd86-5263-4c67-bc09-bea2417f06cb", + "name": "Terry Ward MD", + "email": "alexandra08@example.org", + "phone": "001-202-219-6935x7625", + "address": { + "street": "51865 Jennifer Common", + "city": "Michaelfurt", + "state": "Kansas", + "zip": "26377", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T18:44:09.369Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 98.21, + "subtotal": 196.42 + }, + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 135.78, + "subtotal": 135.78 + } + ], + "total_price": 332.2, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 12.3, + "expected_delivery": { + "$date": "2025-05-19T18:44:09.369Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.361Z" + } + }, + { + "order_id": "9901535d-cf19-47be-8101-997f7dde4997", + "customer": { + "customer_id": "d8a8f1ec-c81a-40b7-a58d-ae0762164abe", + "name": "Amy Hardy", + "email": "dtorres@example.net", + "phone": "(995)570-8773", + "address": { + "street": "9134 Nicholas Expressway", + "city": "Bradyhaven", + "state": "Nebraska", + "zip": "29754", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T03:19:01.075Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 174.52, + "subtotal": 349.04 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 77.88, + "subtotal": 155.76 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 62.18, + "subtotal": 62.18 + } + ], + "total_price": 566.98, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 17.75, + "expected_delivery": { + "$date": "2025-05-12T03:19:01.075Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.361Z" + } + }, + { + "order_id": "7b203f19-9a0d-410f-a76d-c9f40c562ada", + "customer": { + "customer_id": "2c7e9e52-1103-47d7-ad6f-1dad923d12c9", + "name": "Sarah Mendez", + "email": "ronaldcalderon@example.com", + "phone": "507.688.7022x81516", + "address": { + "street": "49424 Brown Groves Apt. 113", + "city": "Whiteville", + "state": "North Dakota", + "zip": "26365", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T20:57:11.713Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 1, + "unit_price": 155.13, + "subtotal": 155.13 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 113.36, + "subtotal": 226.72 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 126.09, + "subtotal": 126.09 + } + ], + "total_price": 507.94, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 5.58, + "expected_delivery": { + "$date": "2025-05-15T20:57:11.713Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.361Z" + } + }, + { + "order_id": "d18c6fd5-9702-4953-95d0-c7c2e43088ba", + "customer": { + "customer_id": "1d1aeeb4-b30b-49c1-899c-5eeceabf9457", + "name": "Jamie Gonzalez", + "email": "lreynolds@example.org", + "phone": "+1-922-938-8498x755", + "address": { + "street": "056 Robert Walks Apt. 903", + "city": "North Kimberly", + "state": "Idaho", + "zip": "28542", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T07:54:17.827Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 146.11, + "subtotal": 146.11 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 119.68, + "subtotal": 239.36 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 151.9, + "subtotal": 151.9 + } + ], + "total_price": 537.37, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 10.13, + "expected_delivery": { + "$date": "2025-05-16T07:54:17.827Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.361Z" + } + }, + { + "order_id": "65e5a4e6-0ce3-4615-9466-4ee48cab5af6", + "customer": { + "customer_id": "0d6ee9b2-4d7b-49ba-8664-95a2eb354ce7", + "name": "Brittany Paul", + "email": "geoffrey12@example.com", + "phone": "+1-692-845-1994x97381", + "address": { + "street": "5677 Tanya Ports Apt. 996", + "city": "Friedmanchester", + "state": "Arkansas", + "zip": "25188", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T01:31:14.006Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 99.8, + "subtotal": 99.8 + }, + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 89.79, + "subtotal": 89.79 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 174.78, + "subtotal": 349.56 + } + ], + "total_price": 539.15, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 7.9, + "expected_delivery": { + "$date": "2025-05-14T01:31:14.006Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.362Z" + } + }, + { + "order_id": "a8422ffe-8192-4fee-bd95-f1d4bac235b7", + "customer": { + "customer_id": "9b96c858-c694-43cc-af2b-e1ddba4070c7", + "name": "Paul Holland", + "email": "angelaclark@example.net", + "phone": "348-908-2321", + "address": { + "street": "50949 Henry Garden", + "city": "Lake Jennifer", + "state": "Montana", + "zip": "82579", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T10:19:03.045Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 2, + "unit_price": 68.66, + "subtotal": 137.32 + } + ], + "total_price": 137.32, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 12.9, + "expected_delivery": { + "$date": "2025-05-12T10:19:03.045Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.362Z" + } + }, + { + "order_id": "46201ea6-723d-4299-acd2-dfc8a9b2d2d6", + "customer": { + "customer_id": "c925a534-a062-4c38-b9e6-11b9a97f2a1e", + "name": "Richard Hernandez", + "email": "portervicki@example.com", + "phone": "+1-353-672-3370x4431", + "address": { + "street": "05251 Nicole Lodge", + "city": "New Victoria", + "state": "North Carolina", + "zip": "23239", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T09:02:19.318Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 95.96, + "subtotal": 95.96 + } + ], + "total_price": 95.96, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 11.63, + "expected_delivery": { + "$date": "2025-05-18T09:02:19.318Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.362Z" + } + }, + { + "order_id": "5d791c73-f251-4b35-8e92-37142cd28089", + "customer": { + "customer_id": "efcc7397-46fa-4d33-abed-7240961f1211", + "name": "Deborah Fleming", + "email": "lynchdanielle@example.org", + "phone": "5035128593", + "address": { + "street": "1619 Underwood Crescent Suite 128", + "city": "Westport", + "state": "Washington", + "zip": "44294", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T16:08:25.166Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 128.02, + "subtotal": 256.04 + }, + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 172.72, + "subtotal": 345.44 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 123.23, + "subtotal": 246.46 + } + ], + "total_price": 847.94, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 12.56, + "expected_delivery": { + "$date": "2025-05-11T16:08:25.166Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.362Z" + } + }, + { + "order_id": "4e424d41-0785-4bb4-9c91-0837f3c0a29b", + "customer": { + "customer_id": "8c6f6a23-10b2-4462-aa51-7720776897c1", + "name": "Jason Freeman", + "email": "sharonjones@example.net", + "phone": "733.580.9688", + "address": { + "street": "60824 Bryan Mountains", + "city": "Josephville", + "state": "Louisiana", + "zip": "21321", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T04:01:01.350Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 150.82, + "subtotal": 301.64 + }, + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 132.1, + "subtotal": 264.2 + }, + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 117.77, + "subtotal": 235.54 + } + ], + "total_price": 801.38, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 18.87, + "expected_delivery": { + "$date": "2025-05-11T04:01:01.350Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.363Z" + } + }, + { + "order_id": "7651e012-6bc5-4f0b-82da-7e67a2d75d01", + "customer": { + "customer_id": "fe411191-62fc-4592-8cab-34a5a56193e2", + "name": "Sharon Mcgee", + "email": "hpage@example.net", + "phone": "950-632-9026x059", + "address": { + "street": "570 Maureen Vista", + "city": "South Stephanie", + "state": "Minnesota", + "zip": "06287", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T19:33:19.683Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 2, + "unit_price": 125.68, + "subtotal": 251.36 + } + ], + "total_price": 251.36, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 16.09, + "expected_delivery": { + "$date": "2025-05-19T19:33:19.683Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.363Z" + } + }, + { + "order_id": "e4807514-b939-4020-ab1a-8a8855e83837", + "customer": { + "customer_id": "31e90837-bc52-493c-8412-f35e0ca9b021", + "name": "David Lewis", + "email": "tanyatate@example.net", + "phone": "001-848-865-0632", + "address": { + "street": "55735 Sherry Stravenue", + "city": "South Sandra", + "state": "Maine", + "zip": "20809", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T09:52:17.258Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 93.51, + "subtotal": 187.02 + } + ], + "total_price": 187.02, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 8.75, + "expected_delivery": { + "$date": "2025-05-10T09:52:17.258Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.363Z" + } + }, + { + "order_id": "fa75f845-9b3b-4bb9-93cc-9512c41290c6", + "customer": { + "customer_id": "3296bb0e-1366-49ce-b340-30b2fa75222f", + "name": "Brandon Nguyen", + "email": "jeffreybush@example.net", + "phone": "001-310-826-9253x7997", + "address": { + "street": "4251 Daniel Keys Apt. 494", + "city": "East Maryville", + "state": "Illinois", + "zip": "36668", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T07:10:41.439Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 1, + "unit_price": 136.35, + "subtotal": 136.35 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 105.42, + "subtotal": 105.42 + }, + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 100.71, + "subtotal": 201.42 + } + ], + "total_price": 443.19, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 15.03, + "expected_delivery": { + "$date": "2025-05-15T07:10:41.439Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.363Z" + } + }, + { + "order_id": "4ba14161-e8b3-40ef-b0ee-4dffefee60e6", + "customer": { + "customer_id": "1ce5efc9-7d15-4ee1-bde4-e86c6cf05252", + "name": "Karen Johnson", + "email": "hicksmelissa@example.com", + "phone": "5518614178", + "address": { + "street": "01147 Cheryl Islands", + "city": "Hillstad", + "state": "Tennessee", + "zip": "24280", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T20:04:40.996Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 143.68, + "subtotal": 143.68 + }, + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 75.3, + "subtotal": 75.3 + }, + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 149.59, + "subtotal": 299.18 + } + ], + "total_price": 518.16, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 9.08, + "expected_delivery": { + "$date": "2025-05-12T20:04:40.996Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.363Z" + } + }, + { + "order_id": "2575a684-5dda-450b-a9df-e8718ac23d36", + "customer": { + "customer_id": "51a006bd-4904-4c77-a651-f459dbc6f8d2", + "name": "Charles Brooks", + "email": "collinblack@example.net", + "phone": "5327400852", + "address": { + "street": "277 Mark Alley Suite 477", + "city": "Brownburgh", + "state": "Michigan", + "zip": "78685", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T06:54:52.541Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 158.6, + "subtotal": 158.6 + } + ], + "total_price": 158.6, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 19.32, + "expected_delivery": { + "$date": "2025-05-09T06:54:52.541Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.364Z" + } + }, + { + "order_id": "63ed7666-7614-4548-9bad-8bb556cdabc5", + "customer": { + "customer_id": "1758a3a0-0395-49d2-9e94-b1354220c3f0", + "name": "Kelly Walls", + "email": "myerskimberly@example.com", + "phone": "(405)804-1056x4363", + "address": { + "street": "8182 Pamela Pass Suite 397", + "city": "East Haleyshire", + "state": "Rhode Island", + "zip": "84464", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T06:05:26.282Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 137.86, + "subtotal": 137.86 + }, + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 2, + "unit_price": 111.59, + "subtotal": 223.18 + } + ], + "total_price": 361.04, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 15.2, + "expected_delivery": { + "$date": "2025-05-17T06:05:26.282Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.364Z" + } + }, + { + "order_id": "1f69a86e-9697-4997-871d-acd5d0636a1a", + "customer": { + "customer_id": "c7255b86-f615-40fe-8748-340c495feee1", + "name": "Richard Salazar", + "email": "epeck@example.org", + "phone": "903-904-2814x30737", + "address": { + "street": "3678 Johnston Flats Apt. 053", + "city": "East Tina", + "state": "Rhode Island", + "zip": "38894", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T03:10:15.410Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 69.35, + "subtotal": 138.7 + }, + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 73.28, + "subtotal": 146.56 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 177.0, + "subtotal": 354.0 + } + ], + "total_price": 639.26, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 6.19, + "expected_delivery": { + "$date": "2025-05-18T03:10:15.410Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.364Z" + } + }, + { + "order_id": "48a6e09d-3fec-442e-bc41-3d2c98b49c1f", + "customer": { + "customer_id": "11bd7744-8c12-4f53-93c0-a5fe7fe06e42", + "name": "Kimberly Walsh", + "email": "carladunn@example.net", + "phone": "271-678-8271x406", + "address": { + "street": "87244 Benjamin Causeway", + "city": "Rachaelberg", + "state": "Connecticut", + "zip": "22741", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T18:43:19.557Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 170.76, + "subtotal": 341.52 + } + ], + "total_price": 341.52, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 6.58, + "expected_delivery": { + "$date": "2025-05-11T18:43:19.557Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.364Z" + } + }, + { + "order_id": "243125d3-a159-4e6b-b9f4-198eb7666a89", + "customer": { + "customer_id": "8557dd49-0af7-4b77-bf21-dee8fa8d8b78", + "name": "John Booker", + "email": "briansanchez@example.org", + "phone": "001-447-570-6433x844", + "address": { + "street": "293 Nicholas Branch Apt. 122", + "city": "Williamsland", + "state": "Arkansas", + "zip": "46245", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T21:57:37.242Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 174.6, + "subtotal": 174.6 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 84.78, + "subtotal": 84.78 + } + ], + "total_price": 259.38, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 14.0, + "expected_delivery": { + "$date": "2025-05-12T21:57:37.242Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.365Z" + } + }, + { + "order_id": "22b575cf-c103-441f-b330-d75c3b2ba831", + "customer": { + "customer_id": "c2f2f17a-1996-4b23-b1e3-7837c69269fb", + "name": "Robert Sullivan", + "email": "adam01@example.org", + "phone": "567-611-4899x193", + "address": { + "street": "169 Johnson Station", + "city": "Port Danielle", + "state": "Oregon", + "zip": "18495", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T08:43:22.310Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 163.98, + "subtotal": 327.96 + }, + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 157.86, + "subtotal": 157.86 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 122.75, + "subtotal": 122.75 + } + ], + "total_price": 608.57, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 19.77, + "expected_delivery": { + "$date": "2025-05-08T08:43:22.310Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.365Z" + } + }, + { + "order_id": "dd557e03-30f0-4651-93a7-0f92912d5841", + "customer": { + "customer_id": "2e30b0f8-8524-4beb-b07b-5a1accce441f", + "name": "Jennifer Hansen", + "email": "joseph18@example.com", + "phone": "(576)283-2747x6060", + "address": { + "street": "897 Turner Place", + "city": "West Jacquelineside", + "state": "North Carolina", + "zip": "83330", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T08:27:48.083Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 1, + "unit_price": 107.66, + "subtotal": 107.66 + } + ], + "total_price": 107.66, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 14.48, + "expected_delivery": { + "$date": "2025-05-16T08:27:48.083Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.365Z" + } + }, + { + "order_id": "d473f72d-ab82-476e-8775-65defcad2dae", + "customer": { + "customer_id": "cd7f3cd0-d504-444e-a051-db9f0327f0fe", + "name": "Dorothy Rodgers", + "email": "nguyencrystal@example.com", + "phone": "8776191867", + "address": { + "street": "3395 Bowers Crossing", + "city": "North Deanna", + "state": "Maine", + "zip": "37088", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T20:38:37.879Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 158.96, + "subtotal": 158.96 + }, + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 104.53, + "subtotal": 209.06 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 133.23, + "subtotal": 133.23 + } + ], + "total_price": 501.25, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 7.4, + "expected_delivery": { + "$date": "2025-05-13T20:38:37.879Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.365Z" + } + }, + { + "order_id": "8985ce38-a586-438e-8911-a7b2fe0b11f6", + "customer": { + "customer_id": "3e553083-5707-48e5-a155-475ac84a2ec2", + "name": "Patrick Rasmussen", + "email": "daltonaustin@example.org", + "phone": "(422)981-0420x693", + "address": { + "street": "3913 Griffith Rest", + "city": "Port Bernard", + "state": "Louisiana", + "zip": "29727", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T09:24:22.874Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 94.85, + "subtotal": 189.7 + }, + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 159.39, + "subtotal": 159.39 + }, + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 174.76, + "subtotal": 174.76 + } + ], + "total_price": 523.85, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 14.83, + "expected_delivery": { + "$date": "2025-05-11T09:24:22.874Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.365Z" + } + }, + { + "order_id": "40aa152a-5ec4-4814-9e36-8c575f379b0b", + "customer": { + "customer_id": "22bbaa0d-fbb6-4b78-984d-01c6b5a5404b", + "name": "Christopher Morris", + "email": "whitepaula@example.net", + "phone": "(496)288-9595", + "address": { + "street": "54799 Williams Lakes", + "city": "Davishaven", + "state": "Idaho", + "zip": "85596", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T00:36:56.634Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 164.12, + "subtotal": 328.24 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 148.61, + "subtotal": 148.61 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 94.14, + "subtotal": 94.14 + } + ], + "total_price": 570.99, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 14.77, + "expected_delivery": { + "$date": "2025-05-18T00:36:56.634Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.366Z" + } + }, + { + "order_id": "96ecfef0-eddf-47e7-9cf0-288c71b6a745", + "customer": { + "customer_id": "c02fd45b-f9b1-4e92-9d26-311ed6a5a608", + "name": "Lisa Haney", + "email": "heatherhiggins@example.net", + "phone": "(540)450-9351x501", + "address": { + "street": "533 Ramsey Shore Apt. 323", + "city": "Port Gabrielland", + "state": "Nevada", + "zip": "25597", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T17:07:37.676Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 157.23, + "subtotal": 157.23 + }, + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 138.07, + "subtotal": 138.07 + }, + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 63.61, + "subtotal": 127.22 + } + ], + "total_price": 422.52, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 14.86, + "expected_delivery": { + "$date": "2025-05-16T17:07:37.676Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.366Z" + } + }, + { + "order_id": "1e158720-6895-412a-9ed4-41a1d8e097a6", + "customer": { + "customer_id": "051728d5-6d35-427b-8b82-64b547d7648f", + "name": "Michelle Boyd", + "email": "benjamin06@example.net", + "phone": "001-676-749-8315", + "address": { + "street": "283 Edward Walk Suite 792", + "city": "Hoovermouth", + "state": "North Dakota", + "zip": "08207", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T22:41:33.085Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 138.35, + "subtotal": 138.35 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 164.81, + "subtotal": 329.62 + } + ], + "total_price": 467.97, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 16.42, + "expected_delivery": { + "$date": "2025-05-18T22:41:33.085Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.366Z" + } + }, + { + "order_id": "26e37318-f5f6-4d59-8e67-1c5cb103abf2", + "customer": { + "customer_id": "754cff57-dc7f-4627-b1d0-83eb69189bca", + "name": "Heather Hughes", + "email": "churchjennifer@example.com", + "phone": "3865222750", + "address": { + "street": "685 Jackson Roads Suite 982", + "city": "New Johntown", + "state": "Minnesota", + "zip": "84092", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T23:24:07.127Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 61.6, + "subtotal": 123.2 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 64.61, + "subtotal": 64.61 + } + ], + "total_price": 187.81, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 13.68, + "expected_delivery": { + "$date": "2025-05-16T23:24:07.127Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.366Z" + } + }, + { + "order_id": "4b51a83e-c028-42f3-9a32-902a8f45cc1b", + "customer": { + "customer_id": "70ede324-8bcf-4d8a-ace3-d640a8e7d5f5", + "name": "Morgan Mcdowell", + "email": "briggsmichael@example.org", + "phone": "394.366.6234x973", + "address": { + "street": "231 Megan Glen Suite 433", + "city": "Codyburgh", + "state": "West Virginia", + "zip": "12532", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-05T23:42:03.746Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 1, + "unit_price": 130.89, + "subtotal": 130.89 + }, + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 104.21, + "subtotal": 104.21 + }, + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 2, + "unit_price": 116.01, + "subtotal": 232.02 + } + ], + "total_price": 467.12, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 16.56, + "expected_delivery": { + "$date": "2025-05-14T23:42:03.746Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.367Z" + } + }, + { + "order_id": "fc197e05-21d2-4f19-8b40-9a244568aa63", + "customer": { + "customer_id": "808e76b8-e262-40cb-9f02-92ba7cd03e7b", + "name": "Mark Arnold", + "email": "westsherry@example.com", + "phone": "936-584-0818", + "address": { + "street": "675 Parker Springs", + "city": "New Karenbury", + "state": "Alabama", + "zip": "94672", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T04:07:34.968Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 150.45, + "subtotal": 150.45 + } + ], + "total_price": 150.45, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 19.03, + "expected_delivery": { + "$date": "2025-05-10T04:07:34.968Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.367Z" + } + }, + { + "order_id": "da2c4baf-8e1c-49d0-9529-9bcb20739e0e", + "customer": { + "customer_id": "b208d72d-48b0-469a-9504-862ec76d7de4", + "name": "Benjamin Ross", + "email": "geoffreymoses@example.org", + "phone": "869-519-4257x8863", + "address": { + "street": "35602 Christopher Wall Apt. 695", + "city": "New Joshua", + "state": "Alabama", + "zip": "12744", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T05:42:14.854Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 1, + "unit_price": 170.91, + "subtotal": 170.91 + }, + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 2, + "unit_price": 145.57, + "subtotal": 291.14 + } + ], + "total_price": 462.05, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 10.47, + "expected_delivery": { + "$date": "2025-05-14T05:42:14.854Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.367Z" + } + }, + { + "order_id": "39e494b7-2cc7-4168-9575-16b63745905c", + "customer": { + "customer_id": "1ecd809a-7a95-4625-8f0b-2bad4f32c31c", + "name": "Ashley Holland", + "email": "larrydouglas@example.net", + "phone": "402.979.0293x9092", + "address": { + "street": "1961 Daniel Rapid Apt. 987", + "city": "North Ryanfurt", + "state": "Arizona", + "zip": "10657", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T00:00:41.672Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 116.63, + "subtotal": 233.26 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 97.77, + "subtotal": 195.54 + } + ], + "total_price": 428.8, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 13.89, + "expected_delivery": { + "$date": "2025-05-08T00:00:41.672Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.367Z" + } + }, + { + "order_id": "a2b809a1-70bd-4ce0-add7-8189b45ac1fe", + "customer": { + "customer_id": "45c2f491-2a00-4c11-a8ef-2579eb209144", + "name": "Jenna Thomas", + "email": "jerry68@example.net", + "phone": "001-870-832-8309x24310", + "address": { + "street": "211 Hannah Freeway", + "city": "West Stephanie", + "state": "Arkansas", + "zip": "41545", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T19:55:19.577Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 1, + "unit_price": 141.68, + "subtotal": 141.68 + } + ], + "total_price": 141.68, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 17.47, + "expected_delivery": { + "$date": "2025-05-14T19:55:19.577Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.367Z" + } + }, + { + "order_id": "52b53429-fd34-4681-8eb2-ad9b61236f8f", + "customer": { + "customer_id": "f43b45e7-335f-4011-8104-381f2550b7d7", + "name": "Anna Zavala", + "email": "perezethan@example.net", + "phone": "001-882-997-5779x121", + "address": { + "street": "28968 Farmer Well Apt. 477", + "city": "Jacksonberg", + "state": "South Carolina", + "zip": "34562", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T04:11:22.008Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 178.12, + "subtotal": 178.12 + }, + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 125.41, + "subtotal": 250.82 + }, + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 61.8, + "subtotal": 123.6 + } + ], + "total_price": 552.54, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 12.71, + "expected_delivery": { + "$date": "2025-05-12T04:11:22.008Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.368Z" + } + }, + { + "order_id": "07d6de91-44cf-49ee-b185-2c37737964ae", + "customer": { + "customer_id": "06b60eef-c2aa-408a-a99a-eb4b98375853", + "name": "Jeffrey Foster", + "email": "fischerkelsey@example.org", + "phone": "+1-311-872-4219x903", + "address": { + "street": "0679 Lisa Neck", + "city": "Port Stevenland", + "state": "Connecticut", + "zip": "49197", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T13:34:09.742Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 149.77, + "subtotal": 149.77 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 143.04, + "subtotal": 286.08 + }, + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 1, + "unit_price": 95.93, + "subtotal": 95.93 + } + ], + "total_price": 531.78, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 12.46, + "expected_delivery": { + "$date": "2025-05-21T13:34:09.742Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.368Z" + } + }, + { + "order_id": "83f059fc-2dcd-4677-9c55-e3eaf5884173", + "customer": { + "customer_id": "165505df-5f15-4610-b5c5-7c213e3d29ed", + "name": "Eileen Davis", + "email": "ayerspatricia@example.org", + "phone": "2377761997", + "address": { + "street": "9822 Dennis Curve Suite 678", + "city": "South Kylehaven", + "state": "Montana", + "zip": "04718", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T04:01:49.981Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 76.64, + "subtotal": 153.28 + } + ], + "total_price": 153.28, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 16.35, + "expected_delivery": { + "$date": "2025-05-17T04:01:49.981Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.368Z" + } + }, + { + "order_id": "a6bc5ec0-c47d-46ae-8903-cd5041b607a3", + "customer": { + "customer_id": "2b22e1ec-e538-4158-8cdf-0581248b4d81", + "name": "Dana Jenkins", + "email": "danielcurry@example.com", + "phone": "804.368.3618x3529", + "address": { + "street": "18438 Dustin Shoals Apt. 134", + "city": "South Fernando", + "state": "Oregon", + "zip": "56912", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T18:05:13.749Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 100.48, + "subtotal": 100.48 + } + ], + "total_price": 100.48, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 14.02, + "expected_delivery": { + "$date": "2025-05-13T18:05:13.749Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.368Z" + } + }, + { + "order_id": "0e31686f-1bbb-4149-b02b-743bf87ab28c", + "customer": { + "customer_id": "de4cff20-97b4-4dfc-a82f-f82893047e03", + "name": "Ryan Jackson", + "email": "smithmegan@example.net", + "phone": "882.738.0059", + "address": { + "street": "82069 Anderson Circle", + "city": "Malloryside", + "state": "Virginia", + "zip": "03576", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T16:41:49.357Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 174.69, + "subtotal": 349.38 + }, + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 70.6, + "subtotal": 70.6 + } + ], + "total_price": 419.98, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 11.26, + "expected_delivery": { + "$date": "2025-05-15T16:41:49.357Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.369Z" + } + }, + { + "order_id": "0440c089-6425-48a9-bacd-a19f9ad90392", + "customer": { + "customer_id": "14eca9cc-c591-4195-b6a2-f12673afd200", + "name": "Rebecca Gomez", + "email": "lindarodriguez@example.org", + "phone": "2167347626", + "address": { + "street": "1472 James Falls Suite 281", + "city": "New Carrie", + "state": "Alabama", + "zip": "35415", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T08:53:06.989Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 102.97, + "subtotal": 102.97 + }, + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 1, + "unit_price": 74.34, + "subtotal": 74.34 + }, + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 83.76, + "subtotal": 167.52 + } + ], + "total_price": 344.83, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 18.76, + "expected_delivery": { + "$date": "2025-05-12T08:53:06.989Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.369Z" + } + }, + { + "order_id": "8a5c8d92-a5c3-46c5-95c0-c41a924ac5a3", + "customer": { + "customer_id": "bd18fa3b-850f-424d-bfd7-f0aefc25d7b5", + "name": "Karen Baxter", + "email": "williamsjames@example.com", + "phone": "999-358-7302x057", + "address": { + "street": "8606 Jimenez Spurs", + "city": "Mcintoshside", + "state": "Massachusetts", + "zip": "99870", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T00:49:46.255Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 1, + "unit_price": 157.41, + "subtotal": 157.41 + }, + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 147.23, + "subtotal": 294.46 + }, + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 2, + "unit_price": 155.58, + "subtotal": 311.16 + } + ], + "total_price": 763.03, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 16.52, + "expected_delivery": { + "$date": "2025-05-13T00:49:46.255Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.369Z" + } + }, + { + "order_id": "7af7b541-b246-4bf3-b1ff-136cb4bc06c5", + "customer": { + "customer_id": "40055b70-8c21-4e68-a851-17eb34ccc02a", + "name": "Victoria Thomas", + "email": "hodgessheila@example.org", + "phone": "001-726-310-6777x280", + "address": { + "street": "294 Hall Run Apt. 930", + "city": "North Jody", + "state": "New Hampshire", + "zip": "25059", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T16:42:58.769Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 72.84, + "subtotal": 72.84 + }, + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 174.89, + "subtotal": 349.78 + }, + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 112.18, + "subtotal": 224.36 + } + ], + "total_price": 646.98, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 9.04, + "expected_delivery": { + "$date": "2025-05-14T16:42:58.769Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.369Z" + } + }, + { + "order_id": "5e4c2864-2104-4b59-803b-8208fae0eeef", + "customer": { + "customer_id": "26e44a59-ac52-4f07-a08b-5a67ca5beedd", + "name": "James Watts", + "email": "kelly23@example.net", + "phone": "+1-835-905-4748x7459", + "address": { + "street": "7914 Allison Manor", + "city": "Faulknerborough", + "state": "Pennsylvania", + "zip": "02074", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T18:49:36.997Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 1, + "unit_price": 135.15, + "subtotal": 135.15 + }, + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 106.19, + "subtotal": 106.19 + }, + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 2, + "unit_price": 165.18, + "subtotal": 330.36 + } + ], + "total_price": 571.7, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 13.53, + "expected_delivery": { + "$date": "2025-05-15T18:49:36.997Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.370Z" + } + }, + { + "order_id": "d75cd611-e7ab-430a-9091-ec6139a3c848", + "customer": { + "customer_id": "0a0b557a-1a72-4d5d-b295-efcef0b3c6f4", + "name": "Jamie Moss", + "email": "daniel98@example.com", + "phone": "463-223-6810x14795", + "address": { + "street": "01047 Casey Mews Apt. 692", + "city": "West Julia", + "state": "Alabama", + "zip": "53953", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T03:50:45.395Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 71.44, + "subtotal": 71.44 + } + ], + "total_price": 71.44, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 5.85, + "expected_delivery": { + "$date": "2025-05-13T03:50:45.395Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.370Z" + } + }, + { + "order_id": "53846b60-8fc4-432e-bdca-5110293542d2", + "customer": { + "customer_id": "ebb8faa1-e0d0-41e3-af50-d6eef67938af", + "name": "Dr. Elizabeth Wagner", + "email": "mark25@example.org", + "phone": "387.864.9308", + "address": { + "street": "752 Dean Place Suite 969", + "city": "Kathystad", + "state": "Colorado", + "zip": "93100", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T22:23:37.422Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 75.31, + "subtotal": 75.31 + }, + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 106.09, + "subtotal": 212.18 + } + ], + "total_price": 287.49, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 6.17, + "expected_delivery": { + "$date": "2025-05-14T22:23:37.422Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.370Z" + } + }, + { + "order_id": "e1ac4f16-022c-42f3-81a0-4d2156b1b6a5", + "customer": { + "customer_id": "b068223b-588a-4a09-907e-e637cf1c7c5d", + "name": "Briana Norton", + "email": "mayerjessica@example.com", + "phone": "444-922-5135x8322", + "address": { + "street": "1766 Mullins Meadows", + "city": "Ericafort", + "state": "Wisconsin", + "zip": "65100", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T02:07:22.673Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 75.49, + "subtotal": 150.98 + } + ], + "total_price": 150.98, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 7.19, + "expected_delivery": { + "$date": "2025-05-17T02:07:22.673Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.370Z" + } + }, + { + "order_id": "7be11881-a89c-4841-a2d2-4a3bae043f81", + "customer": { + "customer_id": "2aa2a286-765a-4bae-937b-5651f5b2a4c5", + "name": "William Carpenter", + "email": "ecoleman@example.com", + "phone": "398-765-6427x856", + "address": { + "street": "645 Young Gardens", + "city": "West Joseph", + "state": "Virginia", + "zip": "32061", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T01:52:01.894Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 178.15, + "subtotal": 178.15 + }, + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 165.61, + "subtotal": 331.22 + } + ], + "total_price": 509.37, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 14.78, + "expected_delivery": { + "$date": "2025-05-20T01:52:01.894Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.371Z" + } + }, + { + "order_id": "363ceeb9-63f3-4dde-80a3-bd0a35381c5f", + "customer": { + "customer_id": "9c99514c-280f-4a57-9d21-f8e5948ff026", + "name": "Kimberly Mcpherson", + "email": "vschmidt@example.net", + "phone": "(411)590-6358x653", + "address": { + "street": "93243 Jennifer Harbor", + "city": "East Jason", + "state": "Idaho", + "zip": "15171", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T12:57:03.723Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 174.31, + "subtotal": 348.62 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 112.16, + "subtotal": 112.16 + } + ], + "total_price": 460.78, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 7.82, + "expected_delivery": { + "$date": "2025-05-10T12:57:03.723Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.371Z" + } + }, + { + "order_id": "44f44668-aa23-45f2-aecd-e6c11dbb3d8e", + "customer": { + "customer_id": "af4d5d8a-7714-4be8-b5d9-ace9715004c9", + "name": "Danielle Sparks", + "email": "timothy17@example.net", + "phone": "287-330-5652x18647", + "address": { + "street": "815 Lowe Summit", + "city": "Davidstad", + "state": "Oregon", + "zip": "06570", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T13:24:20.410Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 156.22, + "subtotal": 156.22 + }, + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 175.39, + "subtotal": 175.39 + } + ], + "total_price": 331.61, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 12.38, + "expected_delivery": { + "$date": "2025-05-13T13:24:20.410Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.371Z" + } + }, + { + "order_id": "27c3cb55-82a9-4f85-942f-750c02fc462a", + "customer": { + "customer_id": "235bdb49-ad80-42b0-b9d8-282bf3281f4c", + "name": "John Holmes", + "email": "elizabethgray@example.com", + "phone": "8119487168", + "address": { + "street": "623 Bowman Mountains", + "city": "Smithfurt", + "state": "Wisconsin", + "zip": "43657", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T08:33:28.366Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 108.24, + "subtotal": 216.48 + } + ], + "total_price": 216.48, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 10.73, + "expected_delivery": { + "$date": "2025-05-15T08:33:28.366Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.371Z" + } + }, + { + "order_id": "1688f6d3-6fb1-42be-84fa-ceef06f7d771", + "customer": { + "customer_id": "120d56f7-e0e9-4229-9ca5-64b71d95b4fa", + "name": "Mr. Corey Navarro", + "email": "mary99@example.org", + "phone": "(228)961-3813x617", + "address": { + "street": "963 Sarah Plains", + "city": "Lake Jonathan", + "state": "Maine", + "zip": "63751", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T01:07:06.448Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 61.99, + "subtotal": 61.99 + } + ], + "total_price": 61.99, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 17.91, + "expected_delivery": { + "$date": "2025-05-13T01:07:06.448Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.371Z" + } + }, + { + "order_id": "8dc24570-8b77-4028-9efa-414045a1bfa2", + "customer": { + "customer_id": "bf36d59e-d9e6-41c2-8b11-ac0280a79ea8", + "name": "Jeffrey Wheeler", + "email": "james78@example.net", + "phone": "852-361-8899", + "address": { + "street": "346 Meyer Mill Suite 147", + "city": "North Paulburgh", + "state": "Alabama", + "zip": "24763", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T11:35:27.965Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 100.67, + "subtotal": 201.34 + }, + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 71.46, + "subtotal": 71.46 + } + ], + "total_price": 272.8, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 11.78, + "expected_delivery": { + "$date": "2025-05-08T11:35:27.965Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.372Z" + } + }, + { + "order_id": "884f7b4b-2737-4053-a5cb-b85a5a1704d1", + "customer": { + "customer_id": "e379bdda-1d85-443d-8619-ab04b1f8d457", + "name": "Melinda Randolph", + "email": "nmorse@example.net", + "phone": "703-744-2591x728", + "address": { + "street": "4253 Catherine Walk Apt. 817", + "city": "Richport", + "state": "Wyoming", + "zip": "27611", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T04:55:37.349Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 159.51, + "subtotal": 319.02 + } + ], + "total_price": 319.02, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 13.21, + "expected_delivery": { + "$date": "2025-05-10T04:55:37.349Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.372Z" + } + }, + { + "order_id": "6bda7c53-ba0c-49ba-a8c3-e57b8d92b73f", + "customer": { + "customer_id": "9092ea90-c0cd-4491-86d4-a81482a8d6a1", + "name": "Maurice Soto", + "email": "thomas76@example.org", + "phone": "551.662.3695x0295", + "address": { + "street": "2091 Michelle Green", + "city": "East Natalieport", + "state": "Arizona", + "zip": "17414", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T09:56:24.829Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 135.49, + "subtotal": 270.98 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 70.76, + "subtotal": 141.52 + } + ], + "total_price": 412.5, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 10.49, + "expected_delivery": { + "$date": "2025-05-12T09:56:24.829Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.372Z" + } + }, + { + "order_id": "6fb26545-e02b-413a-b06a-ae3f9366f0d1", + "customer": { + "customer_id": "29d05f09-2670-4dd5-ab28-90835b9b214c", + "name": "Christopher Beltran", + "email": "jamesmolina@example.org", + "phone": "+1-250-595-1479", + "address": { + "street": "927 Corey Wall Apt. 100", + "city": "Pagefurt", + "state": "Arkansas", + "zip": "40872", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T22:05:51.086Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 163.76, + "subtotal": 163.76 + } + ], + "total_price": 163.76, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 19.45, + "expected_delivery": { + "$date": "2025-05-16T22:05:51.086Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.372Z" + } + }, + { + "order_id": "8eb5b7b1-d75b-4eda-a619-b1a2d56b9827", + "customer": { + "customer_id": "fb3b08d6-7046-4a79-8339-48cf3952e11e", + "name": "Daniel Jones", + "email": "lcooper@example.org", + "phone": "5685679452", + "address": { + "street": "683 Brandi Brooks Suite 703", + "city": "Schmidtville", + "state": "Texas", + "zip": "04655", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T08:22:32.408Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 104.0, + "subtotal": 104.0 + } + ], + "total_price": 104.0, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 5.44, + "expected_delivery": { + "$date": "2025-05-13T08:22:32.408Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.373Z" + } + }, + { + "order_id": "0df15ea3-0531-455f-820a-6c8bff904238", + "customer": { + "customer_id": "0a21447e-63ec-4a2b-8602-ac83c94b2149", + "name": "Desiree Obrien", + "email": "kingvirginia@example.net", + "phone": "938.783.3191", + "address": { + "street": "569 Sarah Stream Apt. 856", + "city": "Michelleland", + "state": "New Hampshire", + "zip": "78111", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T07:06:49.489Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 2, + "unit_price": 78.09, + "subtotal": 156.18 + } + ], + "total_price": 156.18, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 15.68, + "expected_delivery": { + "$date": "2025-05-19T07:06:49.489Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.373Z" + } + }, + { + "order_id": "c962d830-e438-47e1-9fb2-7adee11de8f0", + "customer": { + "customer_id": "2323f416-b2aa-4b9e-aeb3-9233d5e242a4", + "name": "Vickie Elliott", + "email": "kyle79@example.com", + "phone": "596.231.0508x1672", + "address": { + "street": "5632 Potts Circles", + "city": "East Chad", + "state": "Kansas", + "zip": "67345", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T05:40:13.518Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 135.5, + "subtotal": 135.5 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 65.45, + "subtotal": 130.9 + }, + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 86.97, + "subtotal": 173.94 + } + ], + "total_price": 440.34, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 18.36, + "expected_delivery": { + "$date": "2025-05-20T05:40:13.518Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.373Z" + } + }, + { + "order_id": "85515513-7094-4109-9814-4e3c23f67600", + "customer": { + "customer_id": "ef56f302-92d6-4c62-8636-2d133e2b98db", + "name": "Ronald Franklin", + "email": "mary01@example.com", + "phone": "+1-635-415-9438x0707", + "address": { + "street": "6867 David Mission Suite 216", + "city": "Davidland", + "state": "Nebraska", + "zip": "82710", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T07:44:04.070Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 106.79, + "subtotal": 106.79 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 174.74, + "subtotal": 174.74 + } + ], + "total_price": 281.53, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 15.36, + "expected_delivery": { + "$date": "2025-05-12T07:44:04.070Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.373Z" + } + }, + { + "order_id": "21cc36f8-f60b-46d8-8bf5-5e22bf2c09f1", + "customer": { + "customer_id": "ce431669-c42b-4f8b-be48-21db2deae538", + "name": "Shaun Weaver", + "email": "yscott@example.com", + "phone": "(695)571-3444", + "address": { + "street": "0853 Brown Avenue Suite 774", + "city": "Ruthberg", + "state": "Alabama", + "zip": "21571", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T00:11:55.197Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 95.58, + "subtotal": 191.16 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 108.61, + "subtotal": 108.61 + }, + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 140.16, + "subtotal": 280.32 + } + ], + "total_price": 580.09, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 13.88, + "expected_delivery": { + "$date": "2025-05-17T00:11:55.197Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.373Z" + } + }, + { + "order_id": "6dbdeacb-3f0a-4781-9122-17092fe3e18d", + "customer": { + "customer_id": "56728670-2fcb-48ca-b92f-b4a29c20fb90", + "name": "Kathryn Mcknight", + "email": "samantha64@example.net", + "phone": "415.373.8139x4478", + "address": { + "street": "3889 Barrera Lights Suite 185", + "city": "South Dakota", + "state": "New Hampshire", + "zip": "73364", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T07:28:03.800Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 134.45, + "subtotal": 268.9 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 139.05, + "subtotal": 278.1 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 179.01, + "subtotal": 358.02 + } + ], + "total_price": 905.02, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 5.63, + "expected_delivery": { + "$date": "2025-05-17T07:28:03.800Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.374Z" + } + }, + { + "order_id": "2f6a322e-4a5c-4b47-8471-55f8351b8a32", + "customer": { + "customer_id": "df1609ea-567f-4277-8187-4ad0b9e3a7bf", + "name": "Mark Kelley", + "email": "elizabeth79@example.com", + "phone": "001-449-467-4706", + "address": { + "street": "23907 Grace Village Suite 278", + "city": "Lake Troytown", + "state": "Hawaii", + "zip": "65175", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T13:54:00.850Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 170.38, + "subtotal": 170.38 + } + ], + "total_price": 170.38, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 7.0, + "expected_delivery": { + "$date": "2025-05-13T13:54:00.850Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.374Z" + } + }, + { + "order_id": "c7841040-e8d5-42a3-8f97-a61894a3c686", + "customer": { + "customer_id": "d5db07b5-b7a2-453e-9e1a-8666af641a13", + "name": "Reginald Payne", + "email": "heatherquinn@example.org", + "phone": "270-582-7599x68471", + "address": { + "street": "71444 Skinner Plains", + "city": "South Brandon", + "state": "Oklahoma", + "zip": "56321", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T13:02:13.997Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 83.19, + "subtotal": 166.38 + } + ], + "total_price": 166.38, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 9.02, + "expected_delivery": { + "$date": "2025-05-19T13:02:13.997Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.374Z" + } + }, + { + "order_id": "68df61a5-19d5-4d51-aedd-0aab860805d6", + "customer": { + "customer_id": "7a3ff9bb-14bd-4109-a663-6091de4d8792", + "name": "Jillian Harris", + "email": "jenningskimberly@example.org", + "phone": "521.239.3405x416", + "address": { + "street": "1198 Lisa Prairie", + "city": "Coreyborough", + "state": "Georgia", + "zip": "20279", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T03:32:13.112Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 149.51, + "subtotal": 149.51 + } + ], + "total_price": 149.51, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 9.71, + "expected_delivery": { + "$date": "2025-05-08T03:32:13.112Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.374Z" + } + }, + { + "order_id": "141688b2-63cb-4cd3-931e-b68e8cc6ed75", + "customer": { + "customer_id": "86e01263-b5d3-43c2-8057-e0f8806c99b2", + "name": "Amber Weber", + "email": "orodgers@example.com", + "phone": "3434725503", + "address": { + "street": "2837 Phillips Freeway", + "city": "Cruzport", + "state": "Missouri", + "zip": "16365", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T19:22:48.006Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 164.48, + "subtotal": 328.96 + }, + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 1, + "unit_price": 167.85, + "subtotal": 167.85 + }, + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 2, + "unit_price": 82.16, + "subtotal": 164.32 + } + ], + "total_price": 661.13, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 15.13, + "expected_delivery": { + "$date": "2025-05-16T19:22:48.006Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.374Z" + } + }, + { + "order_id": "c3e090d5-cc14-4385-b737-0597c3dc87ab", + "customer": { + "customer_id": "2cbb8b47-9513-47ce-a1c6-78f3be0ba1f0", + "name": "Devin Robles", + "email": "lisa78@example.net", + "phone": "001-701-915-7771x661", + "address": { + "street": "85290 Richard Terrace", + "city": "Lake Hannah", + "state": "Indiana", + "zip": "97318", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T02:21:24.409Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 113.48, + "subtotal": 226.96 + }, + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 159.32, + "subtotal": 159.32 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 168.79, + "subtotal": 337.58 + } + ], + "total_price": 723.86, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 10.05, + "expected_delivery": { + "$date": "2025-05-20T02:21:24.409Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.375Z" + } + }, + { + "order_id": "f6d102aa-61e1-4bc6-94aa-34ebde152ed4", + "customer": { + "customer_id": "683cc607-c3c4-4b0a-b639-611c11f59e15", + "name": "Nicholas Kelly", + "email": "dsims@example.org", + "phone": "+1-495-305-0569x63388", + "address": { + "street": "412 David Inlet", + "city": "Murphyport", + "state": "North Dakota", + "zip": "55320", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T16:10:45.541Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 114.64, + "subtotal": 229.28 + }, + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 143.99, + "subtotal": 287.98 + }, + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 2, + "unit_price": 61.26, + "subtotal": 122.52 + } + ], + "total_price": 639.78, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 8.37, + "expected_delivery": { + "$date": "2025-05-10T16:10:45.541Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.375Z" + } + }, + { + "order_id": "0a554c46-a0c5-47f0-b2e2-f6334518295a", + "customer": { + "customer_id": "dd1eb398-d8de-444f-a097-5002d5dfb566", + "name": "Tracy Lambert", + "email": "smithdavid@example.org", + "phone": "441-769-7367x88113", + "address": { + "street": "99905 Evans Viaduct", + "city": "Walkerside", + "state": "Arizona", + "zip": "09631", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T21:28:22.258Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 1, + "unit_price": 155.13, + "subtotal": 155.13 + }, + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 81.89, + "subtotal": 81.89 + } + ], + "total_price": 237.02, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 10.04, + "expected_delivery": { + "$date": "2025-05-15T21:28:22.258Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.375Z" + } + }, + { + "order_id": "59d156ca-d80d-4ffa-80e1-b16cc10b7ad3", + "customer": { + "customer_id": "50486827-44db-4970-a69e-730e9b566dca", + "name": "Mike Mason", + "email": "mcgeerobert@example.org", + "phone": "(335)686-7894x489", + "address": { + "street": "582 Robles Estate Apt. 775", + "city": "Christinemouth", + "state": "Minnesota", + "zip": "06886", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T11:02:19.421Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 122.2, + "subtotal": 244.4 + }, + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 146.3, + "subtotal": 292.6 + } + ], + "total_price": 537.0, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 11.31, + "expected_delivery": { + "$date": "2025-05-13T11:02:19.421Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.375Z" + } + }, + { + "order_id": "00b8e39e-9d86-4442-90dd-dc10131b3dab", + "customer": { + "customer_id": "e82e0ec6-43cd-4036-9e1e-082a91a1a4e0", + "name": "Jennifer Newton", + "email": "valdezmatthew@example.org", + "phone": "753-646-1692x047", + "address": { + "street": "1402 Sara Stream", + "city": "Port Kevin", + "state": "Tennessee", + "zip": "75726", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T08:24:13.329Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 72.92, + "subtotal": 72.92 + } + ], + "total_price": 72.92, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 14.38, + "expected_delivery": { + "$date": "2025-05-15T08:24:13.329Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.376Z" + } + }, + { + "order_id": "186f99bc-753c-48d1-bc82-e689e865bcf5", + "customer": { + "customer_id": "dfe35b30-adf6-41e9-9921-c2bd046913b5", + "name": "Terri Brown", + "email": "cking@example.net", + "phone": "731-895-6260x939", + "address": { + "street": "6054 Ashley Flats", + "city": "Hugheston", + "state": "Colorado", + "zip": "15344", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T18:28:04.024Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 145.98, + "subtotal": 291.96 + }, + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 1, + "unit_price": 145.69, + "subtotal": 145.69 + } + ], + "total_price": 437.65, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 13.23, + "expected_delivery": { + "$date": "2025-05-19T18:28:04.024Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.376Z" + } + }, + { + "order_id": "ce3d494d-4d40-4be9-a269-492791b3b7da", + "customer": { + "customer_id": "6014a51b-e673-466c-b84d-2de3e65af848", + "name": "Daniel Barber DDS", + "email": "michaelrichardson@example.org", + "phone": "+1-768-394-7664", + "address": { + "street": "854 Sanchez Road Suite 719", + "city": "Carriefurt", + "state": "New York", + "zip": "49647", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T02:08:27.536Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 1, + "unit_price": 66.16, + "subtotal": 66.16 + }, + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 1, + "unit_price": 131.48, + "subtotal": 131.48 + }, + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 2, + "unit_price": 163.44, + "subtotal": 326.88 + } + ], + "total_price": 524.52, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 14.5, + "expected_delivery": { + "$date": "2025-05-09T02:08:27.536Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.376Z" + } + }, + { + "order_id": "992d4511-145c-4c8b-910c-e00d6842e9cb", + "customer": { + "customer_id": "cbf4167c-91b3-40b3-83bd-bb963ebd4bf4", + "name": "Mark Peterson", + "email": "janetjones@example.net", + "phone": "559.704.6547x74241", + "address": { + "street": "30967 Scott Port", + "city": "North Ryanburgh", + "state": "New Hampshire", + "zip": "26197", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T19:15:02.649Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 79.53, + "subtotal": 79.53 + } + ], + "total_price": 79.53, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 7.58, + "expected_delivery": { + "$date": "2025-05-19T19:15:02.649Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.377Z" + } + }, + { + "order_id": "aa18ffe0-3dd1-4380-8aeb-b7af5d7ee160", + "customer": { + "customer_id": "d3aa109b-9601-4998-8d14-1e383a41b178", + "name": "Tonya Dixon", + "email": "joel32@example.net", + "phone": "424-439-0573", + "address": { + "street": "303 Kimberly Junctions", + "city": "Port Marissaport", + "state": "Nebraska", + "zip": "27510", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T13:47:09.338Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 178.6, + "subtotal": 178.6 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 85.99, + "subtotal": 171.98 + } + ], + "total_price": 350.58, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 15.02, + "expected_delivery": { + "$date": "2025-05-20T13:47:09.338Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.377Z" + } + }, + { + "order_id": "99331943-ce63-4f73-bf41-1491500b362a", + "customer": { + "customer_id": "b2d747af-9031-4615-b109-f0cb979e4921", + "name": "Eric Lewis", + "email": "lancealvarez@example.com", + "phone": "234-499-9500x832", + "address": { + "street": "83610 Autumn Manor", + "city": "North Douglasmouth", + "state": "Rhode Island", + "zip": "87573", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T03:02:59.530Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 122.7, + "subtotal": 122.7 + } + ], + "total_price": 122.7, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 13.41, + "expected_delivery": { + "$date": "2025-05-17T03:02:59.530Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.377Z" + } + }, + { + "order_id": "54cf1ee0-0411-4b85-8880-e77016f02dba", + "customer": { + "customer_id": "ce55a330-273a-4492-a599-bac460f58819", + "name": "Kelly Johnson", + "email": "lijoshua@example.org", + "phone": "566.537.8346x7886", + "address": { + "street": "5564 Bradley Light Suite 450", + "city": "Jamesland", + "state": "Nevada", + "zip": "29241", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T21:01:34.683Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 77.46, + "subtotal": 154.92 + }, + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 81.31, + "subtotal": 162.62 + } + ], + "total_price": 317.54, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 7.37, + "expected_delivery": { + "$date": "2025-05-19T21:01:34.683Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.378Z" + } + }, + { + "order_id": "934190b2-0479-427e-8c9f-5ef421676b15", + "customer": { + "customer_id": "ed03223b-36f5-47b0-b867-b936e0a0349e", + "name": "Anna Franklin", + "email": "deborahlopez@example.net", + "phone": "579.644.9925", + "address": { + "street": "1847 Sarah Bypass", + "city": "Andrewmouth", + "state": "Alaska", + "zip": "44234", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T04:22:52.173Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 61.97, + "subtotal": 61.97 + }, + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 166.55, + "subtotal": 333.1 + } + ], + "total_price": 395.07, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 18.97, + "expected_delivery": { + "$date": "2025-05-19T04:22:52.173Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.378Z" + } + }, + { + "order_id": "1911432f-6b32-4814-a18f-eee8123749c8", + "customer": { + "customer_id": "7ea234e6-4a4c-4a80-a0d9-78b625a658ca", + "name": "Kyle Weeks", + "email": "frederick91@example.org", + "phone": "7675467436", + "address": { + "street": "784 Natasha Dale", + "city": "Lake Franklinfort", + "state": "Virginia", + "zip": "84956", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T18:30:37.643Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 1, + "unit_price": 84.46, + "subtotal": 84.46 + }, + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 160.32, + "subtotal": 320.64 + } + ], + "total_price": 405.1, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 16.81, + "expected_delivery": { + "$date": "2025-05-13T18:30:37.643Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.378Z" + } + }, + { + "order_id": "9f735355-92f7-46cc-b5ff-335aecca5ea5", + "customer": { + "customer_id": "f9ea96bc-e830-409f-a5f0-caf7e8bce403", + "name": "Brittney Day", + "email": "ptate@example.org", + "phone": "001-859-350-0904x7274", + "address": { + "street": "294 Ryan Tunnel Apt. 045", + "city": "Moniqueburgh", + "state": "Oregon", + "zip": "35605", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T02:13:48.274Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 1, + "unit_price": 115.62, + "subtotal": 115.62 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 155.13, + "subtotal": 310.26 + } + ], + "total_price": 425.88, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 17.39, + "expected_delivery": { + "$date": "2025-05-20T02:13:48.274Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.378Z" + } + }, + { + "order_id": "18163393-cbeb-4897-ae88-d763286f1d9b", + "customer": { + "customer_id": "673e2ef7-3fe2-4a80-a2c8-06d093173c07", + "name": "Robert Maxwell", + "email": "frankjones@example.org", + "phone": "2516195353", + "address": { + "street": "3105 Best Terrace", + "city": "East Johnny", + "state": "Kentucky", + "zip": "07587", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T04:51:29.891Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 156.62, + "subtotal": 156.62 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 175.56, + "subtotal": 351.12 + }, + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 172.65, + "subtotal": 345.3 + } + ], + "total_price": 853.04, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 12.7, + "expected_delivery": { + "$date": "2025-05-17T04:51:29.891Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.379Z" + } + }, + { + "order_id": "ab9e36d7-7dd5-42cf-b58f-7c127e4f1dd9", + "customer": { + "customer_id": "40d98e74-0911-468d-81ad-2d1ceb786b7c", + "name": "Andrew Aguilar", + "email": "bortiz@example.org", + "phone": "+1-616-646-8218x7071", + "address": { + "street": "23441 Douglas Forges Apt. 723", + "city": "East Karenshire", + "state": "Alabama", + "zip": "89055", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T03:06:58.403Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 78.86, + "subtotal": 157.72 + }, + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 160.93, + "subtotal": 321.86 + }, + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 93.09, + "subtotal": 93.09 + } + ], + "total_price": 572.67, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 16.04, + "expected_delivery": { + "$date": "2025-05-17T03:06:58.403Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.379Z" + } + }, + { + "order_id": "3b640c5a-bcf5-4211-8295-57f74e638782", + "customer": { + "customer_id": "6a5cae97-4c65-43d7-b4dc-5eb29fdb0470", + "name": "Ashley Lowery", + "email": "wwarren@example.org", + "phone": "+1-750-214-5389x7364", + "address": { + "street": "31060 Mcclure Prairie", + "city": "Lake Julie", + "state": "Ohio", + "zip": "68746", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T22:51:38.751Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 149.42, + "subtotal": 298.84 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 1, + "unit_price": 101.63, + "subtotal": 101.63 + } + ], + "total_price": 400.47, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 18.89, + "expected_delivery": { + "$date": "2025-05-14T22:51:38.751Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.379Z" + } + }, + { + "order_id": "360b189c-35a4-429d-8740-df5c4a3b17ba", + "customer": { + "customer_id": "27eba141-7861-455f-9cb0-624bf30f9455", + "name": "Craig Mccoy", + "email": "kimberlybrown@example.org", + "phone": "325.951.6038x136", + "address": { + "street": "2821 David Place", + "city": "New Tylershire", + "state": "Maine", + "zip": "92890", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T15:01:30.412Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 106.92, + "subtotal": 213.84 + } + ], + "total_price": 213.84, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 12.02, + "expected_delivery": { + "$date": "2025-05-18T15:01:30.412Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.379Z" + } + }, + { + "order_id": "7261235a-0193-4383-9d56-d88f36f72a4e", + "customer": { + "customer_id": "4d16a42e-32e5-4392-8f61-81243b46d0d3", + "name": "Julie Gallegos", + "email": "cclarke@example.net", + "phone": "614.961.6485", + "address": { + "street": "695 Sarah Plains Apt. 099", + "city": "Morrismouth", + "state": "Maryland", + "zip": "69053", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T23:24:23.719Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 167.11, + "subtotal": 167.11 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 66.44, + "subtotal": 132.88 + } + ], + "total_price": 299.99, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 5.41, + "expected_delivery": { + "$date": "2025-05-20T23:24:23.719Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.380Z" + } + }, + { + "order_id": "8c511b3f-6671-488f-b008-3df7054a74df", + "customer": { + "customer_id": "5f339922-a6d8-4a86-9264-37169ac4f99e", + "name": "Steve Sweeney", + "email": "xprice@example.net", + "phone": "565.598.8561x4624", + "address": { + "street": "8294 Michael Mills Suite 980", + "city": "Gabrielfurt", + "state": "Montana", + "zip": "65542", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T02:21:24.093Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 162.41, + "subtotal": 162.41 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 174.94, + "subtotal": 174.94 + }, + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 1, + "unit_price": 171.48, + "subtotal": 171.48 + } + ], + "total_price": 508.83, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 7.43, + "expected_delivery": { + "$date": "2025-05-16T02:21:24.093Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.380Z" + } + }, + { + "order_id": "dd70ecc1-50c5-48c0-9764-9b14ab535f87", + "customer": { + "customer_id": "1749e5b8-fe10-4d13-b117-db5b73be543a", + "name": "Amanda King", + "email": "ginaswanson@example.com", + "phone": "696.657.3523x661", + "address": { + "street": "5993 Christensen Point", + "city": "West Dennis", + "state": "Illinois", + "zip": "24352", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T22:46:48.296Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 152.55, + "subtotal": 152.55 + }, + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 120.0, + "subtotal": 240.0 + } + ], + "total_price": 392.55, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 15.24, + "expected_delivery": { + "$date": "2025-05-11T22:46:48.296Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.380Z" + } + }, + { + "order_id": "7176b5d9-edd9-4aa6-a6c8-9910d7f41719", + "customer": { + "customer_id": "8b0b0a24-3e8d-427f-b69a-b79b01373ccd", + "name": "David Brewer", + "email": "doylerichard@example.net", + "phone": "+1-893-594-0271", + "address": { + "street": "16295 Jackson Lake", + "city": "South Kathrynhaven", + "state": "Illinois", + "zip": "29018", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T10:19:59.211Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 1, + "unit_price": 96.59, + "subtotal": 96.59 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 1, + "unit_price": 152.93, + "subtotal": 152.93 + } + ], + "total_price": 249.52, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 9.6, + "expected_delivery": { + "$date": "2025-05-18T10:19:59.211Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.380Z" + } + }, + { + "order_id": "b6d59008-21bb-4907-afba-aa9a860d2ec7", + "customer": { + "customer_id": "5a181126-13a8-4d32-bfab-ff6b366783a1", + "name": "Ashley Webb", + "email": "kimberly58@example.com", + "phone": "001-713-932-7508", + "address": { + "street": "94394 Moore Mountain", + "city": "Nealton", + "state": "South Carolina", + "zip": "69103", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T06:17:08.978Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 91.37, + "subtotal": 91.37 + }, + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 121.84, + "subtotal": 243.68 + } + ], + "total_price": 335.05, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 17.56, + "expected_delivery": { + "$date": "2025-05-14T06:17:08.978Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.381Z" + } + }, + { + "order_id": "94b27deb-8cba-4ced-8f8b-87f95593655e", + "customer": { + "customer_id": "958a2bb8-694e-41e4-83df-e4a859f777e4", + "name": "Gregory Campbell", + "email": "zjones@example.com", + "phone": "+1-690-410-9819", + "address": { + "street": "1847 Megan Alley", + "city": "Scottfurt", + "state": "Idaho", + "zip": "05222", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T14:49:11.823Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 91.1, + "subtotal": 91.1 + } + ], + "total_price": 91.1, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 19.72, + "expected_delivery": { + "$date": "2025-05-12T14:49:11.823Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.381Z" + } + }, + { + "order_id": "428c16d6-27bf-4f07-8965-2dd796feedce", + "customer": { + "customer_id": "2c4ec244-a65c-44f9-953e-e7c45bb9ed51", + "name": "Benjamin Yang", + "email": "rhunter@example.net", + "phone": "(931)519-9010x393", + "address": { + "street": "1816 William Coves", + "city": "New Jennifer", + "state": "North Dakota", + "zip": "73261", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T23:47:48.002Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 67.74, + "subtotal": 67.74 + } + ], + "total_price": 67.74, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 11.51, + "expected_delivery": { + "$date": "2025-05-15T23:47:48.002Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.381Z" + } + }, + { + "order_id": "03db4d3f-d24c-429f-9e50-5042461da206", + "customer": { + "customer_id": "295af5a0-3597-46f5-899c-4cfca4243cd8", + "name": "Allen Hawkins", + "email": "lopezkristen@example.org", + "phone": "799.329.0098", + "address": { + "street": "414 Monica Lodge Suite 964", + "city": "West Amanda", + "state": "Tennessee", + "zip": "61814", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T18:28:18.562Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 113.38, + "subtotal": 113.38 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 109.98, + "subtotal": 109.98 + } + ], + "total_price": 223.36, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 8.26, + "expected_delivery": { + "$date": "2025-05-14T18:28:18.562Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.381Z" + } + }, + { + "order_id": "82258d49-74cd-4ffb-addc-94eb9311b1a9", + "customer": { + "customer_id": "98246adb-37d5-404b-8705-640e0872bf54", + "name": "Jennifer Glenn", + "email": "geralddavila@example.org", + "phone": "356-660-1609x214", + "address": { + "street": "053 Aaron Ports Suite 163", + "city": "Arnoldton", + "state": "Arkansas", + "zip": "36647", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T12:27:22.699Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 65.64, + "subtotal": 131.28 + } + ], + "total_price": 131.28, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 19.71, + "expected_delivery": { + "$date": "2025-05-11T12:27:22.699Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.382Z" + } + }, + { + "order_id": "9525966d-3353-4f10-ad42-cc8a65824909", + "customer": { + "customer_id": "a9f9e5c4-62af-44dc-8995-b0bad4723f70", + "name": "Robert Bennett", + "email": "deborah15@example.net", + "phone": "979-593-7437", + "address": { + "street": "468 Carl Island", + "city": "Garrettbury", + "state": "Georgia", + "zip": "12816", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T19:10:15.034Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 1, + "unit_price": 131.69, + "subtotal": 131.69 + } + ], + "total_price": 131.69, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 18.04, + "expected_delivery": { + "$date": "2025-05-12T19:10:15.034Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.382Z" + } + }, + { + "order_id": "e9a6ebbc-1718-40af-91c6-f1f523365ecd", + "customer": { + "customer_id": "bb18d4ef-f4d1-4a95-8442-64907007aa14", + "name": "Karen Salinas", + "email": "amcgee@example.net", + "phone": "735-432-1314", + "address": { + "street": "882 Bell Ports Apt. 157", + "city": "West Jessemouth", + "state": "Connecticut", + "zip": "90734", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T19:31:43.734Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 68.28, + "subtotal": 136.56 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 120.54, + "subtotal": 241.08 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 66.35, + "subtotal": 132.7 + } + ], + "total_price": 510.34, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 7.9, + "expected_delivery": { + "$date": "2025-05-16T19:31:43.734Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.382Z" + } + }, + { + "order_id": "bf7b5994-e6ba-4877-abbb-710942481d28", + "customer": { + "customer_id": "6b49d478-a265-4184-8c4e-19b836f9b508", + "name": "Alexis Chung", + "email": "fordjeanette@example.net", + "phone": "791-941-4395", + "address": { + "street": "180 Levy Springs Suite 239", + "city": "Millerburgh", + "state": "Kansas", + "zip": "35232", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T15:08:48.326Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 70.4, + "subtotal": 70.4 + }, + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 123.24, + "subtotal": 123.24 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 83.77, + "subtotal": 83.77 + } + ], + "total_price": 277.41, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 18.69, + "expected_delivery": { + "$date": "2025-05-22T15:08:48.326Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.382Z" + } + }, + { + "order_id": "877c0ab3-b77c-425a-839a-b92e1e81b73a", + "customer": { + "customer_id": "5902fa42-d6be-4ea5-bb87-567f1536cfc7", + "name": "Jessica Johnson", + "email": "sarahwright@example.net", + "phone": "556.605.9199x43497", + "address": { + "street": "369 Melissa Ville Suite 733", + "city": "Cookburgh", + "state": "Texas", + "zip": "65011", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T00:32:10.056Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 2, + "unit_price": 102.05, + "subtotal": 204.1 + } + ], + "total_price": 204.1, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 17.33, + "expected_delivery": { + "$date": "2025-05-14T00:32:10.056Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.383Z" + } + }, + { + "order_id": "8134935a-fb95-4cdd-9340-61a23acc24d8", + "customer": { + "customer_id": "81399288-0b4e-4e16-ae0f-6fb53758cd02", + "name": "Thomas Moody", + "email": "hesterjonathan@example.com", + "phone": "+1-282-668-6172x0056", + "address": { + "street": "177 Madden Isle", + "city": "South Alison", + "state": "Alaska", + "zip": "27026", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T02:39:34.581Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 2, + "unit_price": 108.2, + "subtotal": 216.4 + } + ], + "total_price": 216.4, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 12.03, + "expected_delivery": { + "$date": "2025-05-12T02:39:34.581Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.383Z" + } + }, + { + "order_id": "251839b2-9c31-452c-850b-3fcf85b393ca", + "customer": { + "customer_id": "b375f16c-b848-44d0-b47d-7c414e678141", + "name": "Tiffany Dominguez", + "email": "kelleyabigail@example.net", + "phone": "278.948.3490x279", + "address": { + "street": "4955 Breanna Lakes", + "city": "Cherylmouth", + "state": "Arkansas", + "zip": "34043", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T04:31:06.721Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 88.94, + "subtotal": 88.94 + }, + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 1, + "unit_price": 63.07, + "subtotal": 63.07 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 121.12, + "subtotal": 242.24 + } + ], + "total_price": 394.25, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 5.35, + "expected_delivery": { + "$date": "2025-05-11T04:31:06.721Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.383Z" + } + }, + { + "order_id": "1fe9a0a0-6ea6-4d49-9bec-4182a54178e8", + "customer": { + "customer_id": "cc5eba99-2aa5-4039-90f6-fe20cfeea34c", + "name": "Kevin Booker", + "email": "watsongloria@example.org", + "phone": "347-335-0349x2561", + "address": { + "street": "84281 Edward Plain", + "city": "North Amber", + "state": "Idaho", + "zip": "10089", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T04:56:11.171Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 143.73, + "subtotal": 287.46 + }, + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 166.94, + "subtotal": 333.88 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 120.65, + "subtotal": 120.65 + } + ], + "total_price": 741.99, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 11.08, + "expected_delivery": { + "$date": "2025-05-21T04:56:11.171Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.384Z" + } + }, + { + "order_id": "55b156ed-1166-431e-b3ff-d9bdf4ba0d00", + "customer": { + "customer_id": "a3162020-4c0b-4423-97de-2e0272b84e9a", + "name": "Laura Sellers", + "email": "angelalucero@example.net", + "phone": "321-907-5321", + "address": { + "street": "63086 Shannon Keys Apt. 774", + "city": "West Reneeburgh", + "state": "Nebraska", + "zip": "23976", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T05:15:12.836Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 152.71, + "subtotal": 152.71 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 88.53, + "subtotal": 177.06 + } + ], + "total_price": 329.77, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 19.23, + "expected_delivery": { + "$date": "2025-05-09T05:15:12.836Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.384Z" + } + }, + { + "order_id": "266976c2-d868-4214-baef-febba93155dc", + "customer": { + "customer_id": "ac574a19-bb98-4381-931c-46df9a88e394", + "name": "Kyle Shaw", + "email": "pkerr@example.com", + "phone": "001-749-627-8550x1066", + "address": { + "street": "873 Martin Views", + "city": "South Christopher", + "state": "South Carolina", + "zip": "26009", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T02:26:46.187Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 117.72, + "subtotal": 117.72 + } + ], + "total_price": 117.72, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 17.53, + "expected_delivery": { + "$date": "2025-05-12T02:26:46.187Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.384Z" + } + }, + { + "order_id": "b2d41630-ac8f-488b-8606-3c11f14bbf93", + "customer": { + "customer_id": "bb114dba-24cc-44c1-ad5c-0e1a8f9a7bff", + "name": "Kendra Murillo", + "email": "christine58@example.org", + "phone": "001-216-824-0406x36432", + "address": { + "street": "63659 Brian Keys", + "city": "Andrewville", + "state": "New York", + "zip": "47623", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T14:22:09.135Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 87.06, + "subtotal": 87.06 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 69.31, + "subtotal": 138.62 + } + ], + "total_price": 225.68, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 12.23, + "expected_delivery": { + "$date": "2025-05-18T14:22:09.135Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.385Z" + } + }, + { + "order_id": "e4047c1e-0b48-46d0-85d5-d097bb4ffef8", + "customer": { + "customer_id": "d896faa7-37c7-41d2-beda-91d10485dc62", + "name": "Jessica Smith", + "email": "daniellopez@example.net", + "phone": "(698)625-7656", + "address": { + "street": "7884 Christine Hills", + "city": "Michaelstad", + "state": "Florida", + "zip": "20278", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T14:26:18.144Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 1, + "unit_price": 71.03, + "subtotal": 71.03 + } + ], + "total_price": 71.03, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 19.04, + "expected_delivery": { + "$date": "2025-05-18T14:26:18.144Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.385Z" + } + }, + { + "order_id": "11a47b6f-cb4a-4cc1-8a8c-a6cc755cb2db", + "customer": { + "customer_id": "06197889-7957-4329-98d6-988f95879f58", + "name": "Emily Gibson", + "email": "fbutler@example.net", + "phone": "452.598.6360", + "address": { + "street": "94744 Dean Mountains", + "city": "Kingmouth", + "state": "Minnesota", + "zip": "69862", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T13:21:35.698Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 2, + "unit_price": 80.45, + "subtotal": 160.9 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 84.5, + "subtotal": 169.0 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 1, + "unit_price": 115.65, + "subtotal": 115.65 + } + ], + "total_price": 445.55, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 6.95, + "expected_delivery": { + "$date": "2025-05-16T13:21:35.698Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.385Z" + } + }, + { + "order_id": "1c6bcd2a-3588-45fb-8803-dcf06c9d63d3", + "customer": { + "customer_id": "4e243300-6503-4c9f-ad28-d7fbb316d408", + "name": "Mark House", + "email": "martinrussell@example.com", + "phone": "814-869-8677x5103", + "address": { + "street": "7321 Bell Station", + "city": "West Deannafurt", + "state": "Massachusetts", + "zip": "17831", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T07:35:01.017Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 80.54, + "subtotal": 161.08 + } + ], + "total_price": 161.08, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 13.5, + "expected_delivery": { + "$date": "2025-05-11T07:35:01.017Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.385Z" + } + }, + { + "order_id": "37846fdc-c665-40d5-b1be-f93fc359f5e3", + "customer": { + "customer_id": "fd953b88-7a23-45e4-b5e4-ecde6a4a4d45", + "name": "Brian Newman", + "email": "perezandrea@example.net", + "phone": "(280)556-9979x734", + "address": { + "street": "891 Edwards Village", + "city": "East Cody", + "state": "Alaska", + "zip": "20943", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T17:13:45.124Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 152.32, + "subtotal": 152.32 + } + ], + "total_price": 152.32, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 8.25, + "expected_delivery": { + "$date": "2025-05-18T17:13:45.124Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.386Z" + } + }, + { + "order_id": "1397c588-1646-4bc9-97ce-eac549d315a7", + "customer": { + "customer_id": "f269347d-dcc6-463e-a5d1-744d3c6fff9b", + "name": "Dr. Sabrina Powell DDS", + "email": "emily54@example.org", + "phone": "+1-287-380-5445", + "address": { + "street": "494 Brown Street", + "city": "Port Ashleyville", + "state": "New York", + "zip": "84004", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T17:41:55.410Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 162.73, + "subtotal": 325.46 + } + ], + "total_price": 325.46, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 7.72, + "expected_delivery": { + "$date": "2025-05-14T17:41:55.410Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.386Z" + } + }, + { + "order_id": "b6f03d9b-c015-407a-a6a2-1500a4520cc5", + "customer": { + "customer_id": "adb64592-d7eb-4fc7-8830-0507e6adaac0", + "name": "Brian Garza", + "email": "garciaanita@example.com", + "phone": "(510)546-0937x120", + "address": { + "street": "76248 Day Spring Suite 233", + "city": "Wilsonchester", + "state": "New Jersey", + "zip": "67919", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T18:32:15.810Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 164.81, + "subtotal": 329.62 + }, + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 99.79, + "subtotal": 99.79 + } + ], + "total_price": 429.41, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 17.79, + "expected_delivery": { + "$date": "2025-05-20T18:32:15.810Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.386Z" + } + }, + { + "order_id": "24555dc7-2651-4ae0-a689-d7ed3336aa0b", + "customer": { + "customer_id": "ee71ddc3-1050-48b2-8e98-df595414f818", + "name": "Brian Jackson", + "email": "jvelez@example.net", + "phone": "694-208-0829", + "address": { + "street": "27619 Taylor Path", + "city": "Fitzgeraldview", + "state": "Oklahoma", + "zip": "36439", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T17:27:40.296Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 163.74, + "subtotal": 163.74 + }, + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 66.54, + "subtotal": 133.08 + } + ], + "total_price": 296.82, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 17.89, + "expected_delivery": { + "$date": "2025-05-15T17:27:40.296Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.387Z" + } + }, + { + "order_id": "c71beaa5-24d6-44e2-96af-0e43b56d4a1b", + "customer": { + "customer_id": "a8e67a14-45ea-42cd-b01b-2de8a54fd590", + "name": "Karina Mills", + "email": "bernardjose@example.net", + "phone": "+1-251-824-1180", + "address": { + "street": "68978 Courtney Harbor", + "city": "Bellport", + "state": "California", + "zip": "44213", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T17:59:01.536Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 95.67, + "subtotal": 191.34 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 121.45, + "subtotal": 242.9 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 138.15, + "subtotal": 276.3 + } + ], + "total_price": 710.54, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 9.86, + "expected_delivery": { + "$date": "2025-05-18T17:59:01.536Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.387Z" + } + }, + { + "order_id": "16d8fa8e-35f4-472b-8077-5da4e3b5fcce", + "customer": { + "customer_id": "1c0ea654-6d46-4e10-b02d-d59eca47b8d3", + "name": "Jennifer Lynch", + "email": "jeffmoore@example.com", + "phone": "754.349.6857x04548", + "address": { + "street": "4992 Harper Loaf Apt. 454", + "city": "Farrellmouth", + "state": "Florida", + "zip": "23797", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T03:34:35.959Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 87.51, + "subtotal": 175.02 + } + ], + "total_price": 175.02, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 12.94, + "expected_delivery": { + "$date": "2025-05-19T03:34:35.959Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.387Z" + } + }, + { + "order_id": "9f1aceeb-ddef-4c18-a1d1-41de71dd8cd6", + "customer": { + "customer_id": "214c256d-2d01-4d52-ab32-aae4983f0b74", + "name": "Wendy Martin", + "email": "patelamanda@example.com", + "phone": "(322)922-6250x667", + "address": { + "street": "62237 Jonathan Ferry", + "city": "Melissatown", + "state": "South Dakota", + "zip": "52806", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T09:04:42.512Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 87.74, + "subtotal": 87.74 + }, + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 117.43, + "subtotal": 117.43 + } + ], + "total_price": 205.17, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 12.51, + "expected_delivery": { + "$date": "2025-05-18T09:04:42.512Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.388Z" + } + }, + { + "order_id": "1da8226b-5469-469c-af01-68e9ab176603", + "customer": { + "customer_id": "9820f6b9-1bce-4eec-bd7a-4c66d46cd09d", + "name": "Michael Shaw", + "email": "karenwilliams@example.net", + "phone": "600.874.4023", + "address": { + "street": "3798 Maria Union", + "city": "Martinton", + "state": "Iowa", + "zip": "98660", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T13:41:07.502Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 1, + "unit_price": 81.5, + "subtotal": 81.5 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 111.63, + "subtotal": 111.63 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 103.45, + "subtotal": 103.45 + } + ], + "total_price": 296.58, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 16.22, + "expected_delivery": { + "$date": "2025-05-09T13:41:07.502Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.388Z" + } + }, + { + "order_id": "f378d572-f992-4485-bede-9cf647649417", + "customer": { + "customer_id": "e3629dd0-843e-423b-866b-35863410a516", + "name": "Kara Mcbride", + "email": "adunn@example.org", + "phone": "718.468.7263x72037", + "address": { + "street": "23077 Adams Row Suite 175", + "city": "South Ronaldborough", + "state": "Kentucky", + "zip": "88523", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T10:31:29.964Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 105.53, + "subtotal": 211.06 + }, + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 1, + "unit_price": 94.79, + "subtotal": 94.79 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 166.53, + "subtotal": 166.53 + } + ], + "total_price": 472.38, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 5.94, + "expected_delivery": { + "$date": "2025-05-14T10:31:29.964Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.388Z" + } + }, + { + "order_id": "152de204-fd58-433f-b5e9-f8317fb5b42a", + "customer": { + "customer_id": "3b81544a-b2ec-4a41-9f19-3bd769888202", + "name": "Jeremiah Wagner", + "email": "samantha68@example.org", + "phone": "916-644-1239", + "address": { + "street": "53535 Cindy Vista", + "city": "Shieldstown", + "state": "Louisiana", + "zip": "20566", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T02:52:19.754Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 141.91, + "subtotal": 283.82 + } + ], + "total_price": 283.82, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 12.02, + "expected_delivery": { + "$date": "2025-05-14T02:52:19.754Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.388Z" + } + }, + { + "order_id": "8c235224-65b5-4022-b822-f5fec55e9bab", + "customer": { + "customer_id": "de89d336-68f9-4e61-baf1-0a832b067039", + "name": "Anthony Mitchell", + "email": "kelseywoodward@example.org", + "phone": "578-851-2816", + "address": { + "street": "68684 Krystal Lodge Suite 577", + "city": "Hoodshire", + "state": "Washington", + "zip": "82498", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T03:43:44.921Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 169.96, + "subtotal": 339.92 + }, + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 82.53, + "subtotal": 82.53 + } + ], + "total_price": 422.45, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 6.55, + "expected_delivery": { + "$date": "2025-05-17T03:43:44.921Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.389Z" + } + }, + { + "order_id": "c0c296f2-2822-4785-bc08-cd73c3ddb161", + "customer": { + "customer_id": "63db2682-a565-4f57-9489-757e30dfb1ef", + "name": "Emily Myers", + "email": "morenomichael@example.org", + "phone": "340-994-9086", + "address": { + "street": "56437 Peterson Port Suite 787", + "city": "Bakerview", + "state": "Connecticut", + "zip": "91502", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T06:26:41.180Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 2, + "unit_price": 90.8, + "subtotal": 181.6 + } + ], + "total_price": 181.6, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 9.96, + "expected_delivery": { + "$date": "2025-05-15T06:26:41.180Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.389Z" + } + }, + { + "order_id": "bb505951-097a-4dac-b2c1-68bce9c65a9f", + "customer": { + "customer_id": "6fd7f865-9cc8-4814-b863-2a084e551607", + "name": "William Edwards", + "email": "aguilarcory@example.net", + "phone": "336-873-7285x113", + "address": { + "street": "900 Kelsey Ramp", + "city": "Lindaland", + "state": "Colorado", + "zip": "29857", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T12:21:44.485Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 112.35, + "subtotal": 224.7 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 136.32, + "subtotal": 272.64 + } + ], + "total_price": 497.34, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 9.84, + "expected_delivery": { + "$date": "2025-05-22T12:21:44.485Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.389Z" + } + }, + { + "order_id": "2673b949-4db0-49af-afbb-1f3b15f71107", + "customer": { + "customer_id": "5762e972-ab10-4235-bc43-219a11b9cb7b", + "name": "Patrick Rodriguez", + "email": "elainecoleman@example.org", + "phone": "001-779-972-6815x5306", + "address": { + "street": "298 Baker Stravenue", + "city": "North Melissaton", + "state": "Montana", + "zip": "80118", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T15:33:25.325Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 132.58, + "subtotal": 132.58 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 1, + "unit_price": 155.64, + "subtotal": 155.64 + }, + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 1, + "unit_price": 72.71, + "subtotal": 72.71 + } + ], + "total_price": 360.93, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 15.39, + "expected_delivery": { + "$date": "2025-05-08T15:33:25.325Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.390Z" + } + }, + { + "order_id": "39622b10-5f72-4059-ae03-52b12f490397", + "customer": { + "customer_id": "427617ac-22f9-4f32-ae9e-babb267d23b6", + "name": "Angela Johnson", + "email": "gary29@example.com", + "phone": "621.368.4134", + "address": { + "street": "34158 Ronald Way", + "city": "New Victoriaport", + "state": "Massachusetts", + "zip": "95793", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T20:24:39.201Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 146.58, + "subtotal": 293.16 + } + ], + "total_price": 293.16, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 6.19, + "expected_delivery": { + "$date": "2025-05-15T20:24:39.201Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.390Z" + } + }, + { + "order_id": "c4b1940b-6e15-4ed2-adef-cf82ac295270", + "customer": { + "customer_id": "c7220a91-d358-43f1-b439-6001625f1017", + "name": "Dr. Kendra Freeman", + "email": "ujohnson@example.org", + "phone": "+1-538-305-9588x982", + "address": { + "street": "008 Christopher Avenue Apt. 604", + "city": "West Allison", + "state": "Wyoming", + "zip": "40762", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T10:28:11.064Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 167.56, + "subtotal": 167.56 + } + ], + "total_price": 167.56, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 15.9, + "expected_delivery": { + "$date": "2025-05-20T10:28:11.064Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.390Z" + } + }, + { + "order_id": "66605594-5a13-42e3-8da0-20dd95b49a87", + "customer": { + "customer_id": "76ae31db-19ad-4a55-a2fe-ebd9cc8b914f", + "name": "Michael Lowe", + "email": "brandy73@example.org", + "phone": "+1-862-383-8632", + "address": { + "street": "2757 Mccullough Union Suite 837", + "city": "Reginaside", + "state": "Virginia", + "zip": "96003", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T16:25:21.263Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 149.39, + "subtotal": 149.39 + } + ], + "total_price": 149.39, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 16.99, + "expected_delivery": { + "$date": "2025-05-15T16:25:21.263Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.390Z" + } + }, + { + "order_id": "6b34bbd1-8bbe-49da-b864-f52c9e90224b", + "customer": { + "customer_id": "3e45ed5e-f19a-4021-bf7e-107d5213097f", + "name": "Peter Watkins", + "email": "michellepierce@example.org", + "phone": "(267)276-1858x4414", + "address": { + "street": "8693 Janet Road Apt. 895", + "city": "Carlmouth", + "state": "New Mexico", + "zip": "26596", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T13:44:27.467Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 159.6, + "subtotal": 159.6 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 104.17, + "subtotal": 104.17 + } + ], + "total_price": 263.77, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 7.87, + "expected_delivery": { + "$date": "2025-05-09T13:44:27.467Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.391Z" + } + }, + { + "order_id": "7a0d779d-ec7a-4d61-aca9-5641100b3f9d", + "customer": { + "customer_id": "bf3b3977-f162-47d5-bb5c-665d7161c08d", + "name": "David Morton", + "email": "stevenschristina@example.org", + "phone": "001-554-624-5348x00060", + "address": { + "street": "98829 Williams Fort", + "city": "South Crystal", + "state": "Ohio", + "zip": "77922", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T19:05:22.180Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 70.79, + "subtotal": 70.79 + } + ], + "total_price": 70.79, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 7.21, + "expected_delivery": { + "$date": "2025-05-16T19:05:22.180Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.391Z" + } + }, + { + "order_id": "a125e55b-c59f-4d0e-903f-f0932d577638", + "customer": { + "customer_id": "73a4740e-7d7b-4a8a-bcd1-56e354ab5d8b", + "name": "Katherine Rodriguez", + "email": "stephaniewood@example.org", + "phone": "001-441-957-4482x308", + "address": { + "street": "4597 Jessica Pass Suite 441", + "city": "Lake Jenniferport", + "state": "Louisiana", + "zip": "10013", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T17:34:04.466Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 146.26, + "subtotal": 292.52 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 87.55, + "subtotal": 87.55 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 1, + "unit_price": 112.11, + "subtotal": 112.11 + } + ], + "total_price": 492.18, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 14.88, + "expected_delivery": { + "$date": "2025-05-12T17:34:04.466Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.391Z" + } + }, + { + "order_id": "28150d97-71e1-4bc2-bd06-633802973e13", + "customer": { + "customer_id": "373ba3de-d7ce-45c4-b8ae-afbfe5822fc4", + "name": "Erin Morris", + "email": "anthonyjackson@example.com", + "phone": "5163232051", + "address": { + "street": "5747 Mark Highway Suite 494", + "city": "Ashleyborough", + "state": "Idaho", + "zip": "70920", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T21:09:21.731Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 1, + "unit_price": 128.76, + "subtotal": 128.76 + } + ], + "total_price": 128.76, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 14.07, + "expected_delivery": { + "$date": "2025-05-18T21:09:21.731Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.392Z" + } + }, + { + "order_id": "35790e7c-2ba3-419d-8589-c116e8016872", + "customer": { + "customer_id": "5a7a59b7-4732-4378-ad7e-ba5165d0b958", + "name": "Luis Simon", + "email": "moorebarbara@example.org", + "phone": "836-459-9160x06675", + "address": { + "street": "15265 Sellers Mountain", + "city": "Thompsonchester", + "state": "South Dakota", + "zip": "61870", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T01:50:36.904Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 60.25, + "subtotal": 120.5 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 173.94, + "subtotal": 173.94 + }, + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 168.38, + "subtotal": 168.38 + } + ], + "total_price": 462.82, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 7.5, + "expected_delivery": { + "$date": "2025-05-13T01:50:36.904Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.392Z" + } + }, + { + "order_id": "136f8230-4207-4336-87f3-0c19067ba300", + "customer": { + "customer_id": "f6696c50-c439-4ddf-b183-d31c0e422b6d", + "name": "Stacey Little", + "email": "garciakenneth@example.net", + "phone": "364.985.8394x8025", + "address": { + "street": "1733 Harris Squares Apt. 414", + "city": "Christymouth", + "state": "Minnesota", + "zip": "32312", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T03:27:50.935Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 93.54, + "subtotal": 93.54 + } + ], + "total_price": 93.54, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 5.42, + "expected_delivery": { + "$date": "2025-05-15T03:27:50.935Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.392Z" + } + }, + { + "order_id": "aafada8b-1cfe-4999-b6df-27c9aec3f3d7", + "customer": { + "customer_id": "fc96052e-af58-43ba-8fa1-c52cadbae09e", + "name": "James Jefferson", + "email": "knightsusan@example.com", + "phone": "919-396-7115", + "address": { + "street": "9446 Holt Terrace", + "city": "Courtneytown", + "state": "Maryland", + "zip": "79815", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T02:42:13.846Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 160.75, + "subtotal": 160.75 + } + ], + "total_price": 160.75, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 11.13, + "expected_delivery": { + "$date": "2025-05-08T02:42:13.846Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.392Z" + } + }, + { + "order_id": "86e736d3-92b1-4628-8d4b-62fc6eec3b2f", + "customer": { + "customer_id": "1fd0bdc0-7f05-4154-8535-a90fd599636a", + "name": "Vanessa Thompson", + "email": "kristopherwilson@example.com", + "phone": "+1-699-458-8786x49551", + "address": { + "street": "09874 Romero Stravenue Suite 525", + "city": "Stephanieburgh", + "state": "Delaware", + "zip": "86813", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T14:38:02.267Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 85.25, + "subtotal": 170.5 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 176.1, + "subtotal": 176.1 + }, + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 107.71, + "subtotal": 215.42 + } + ], + "total_price": 562.02, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 12.51, + "expected_delivery": { + "$date": "2025-05-12T14:38:02.267Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.393Z" + } + }, + { + "order_id": "abb6c1c6-3043-40f2-8bcf-0c74e3662d87", + "customer": { + "customer_id": "c338a796-3ee6-473e-8319-829cb677b201", + "name": "Roberto Sims", + "email": "kaylacunningham@example.com", + "phone": "416-923-7976x346", + "address": { + "street": "87176 Carroll Dale", + "city": "North Donald", + "state": "Florida", + "zip": "17657", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T06:37:49.475Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 148.68, + "subtotal": 297.36 + }, + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 153.79, + "subtotal": 307.58 + } + ], + "total_price": 604.94, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 10.81, + "expected_delivery": { + "$date": "2025-05-16T06:37:49.475Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.393Z" + } + }, + { + "order_id": "6c51a99b-eaca-4858-8dfc-5625c41566df", + "customer": { + "customer_id": "667d4f3a-dfd5-4f2b-a590-7d4daa6ec130", + "name": "John Vasquez", + "email": "alarson@example.net", + "phone": "001-752-736-4082x8555", + "address": { + "street": "9979 Christopher Walks", + "city": "Joneshaven", + "state": "Massachusetts", + "zip": "73186", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T04:39:18.045Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 164.29, + "subtotal": 328.58 + } + ], + "total_price": 328.58, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 19.0, + "expected_delivery": { + "$date": "2025-05-16T04:39:18.045Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.393Z" + } + }, + { + "order_id": "9a8c15e3-2927-412b-a8d2-701eaf66f110", + "customer": { + "customer_id": "4fb94b0c-b6b4-4b95-9ffd-83d91006c3d6", + "name": "Gabriella Boyd", + "email": "zprice@example.com", + "phone": "001-252-639-0899", + "address": { + "street": "26353 Anderson Rapids", + "city": "Morrisonborough", + "state": "Montana", + "zip": "51513", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T09:42:51.157Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 169.22, + "subtotal": 338.44 + } + ], + "total_price": 338.44, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 17.98, + "expected_delivery": { + "$date": "2025-05-17T09:42:51.157Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.393Z" + } + }, + { + "order_id": "c13f5439-c202-4939-93a6-aab05dea49d5", + "customer": { + "customer_id": "04cfbedf-6f93-4a8b-a6cd-7063de02e795", + "name": "Sarah Lester", + "email": "jamesgaines@example.com", + "phone": "(889)504-7613x4371", + "address": { + "street": "14966 Heather Hills Suite 665", + "city": "Port Amber", + "state": "Vermont", + "zip": "88253", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T06:32:01.895Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 159.71, + "subtotal": 159.71 + } + ], + "total_price": 159.71, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 18.99, + "expected_delivery": { + "$date": "2025-05-11T06:32:01.895Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.394Z" + } + }, + { + "order_id": "f9d41dba-dbc7-4b65-a9cc-5459af8c21e1", + "customer": { + "customer_id": "73bfe6bf-dc03-4434-87d6-4aff4c2a0680", + "name": "Debra Hartman", + "email": "rebecca85@example.com", + "phone": "596-375-7482", + "address": { + "street": "147 Jennifer Junction Apt. 455", + "city": "Smithport", + "state": "Connecticut", + "zip": "14312", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T10:55:52.523Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 150.3, + "subtotal": 300.6 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 92.3, + "subtotal": 184.6 + } + ], + "total_price": 485.2, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 11.7, + "expected_delivery": { + "$date": "2025-05-18T10:55:52.523Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.394Z" + } + }, + { + "order_id": "1b173e4f-3ffd-4304-b6ae-7267cc734134", + "customer": { + "customer_id": "dc1498f3-fffd-402d-a3aa-d7ca444b554f", + "name": "Michael Flores", + "email": "kpratt@example.org", + "phone": "528.934.0112", + "address": { + "street": "8685 Hill River", + "city": "Leonardburgh", + "state": "Georgia", + "zip": "32941", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T01:32:21.994Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 1, + "unit_price": 106.71, + "subtotal": 106.71 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 66.71, + "subtotal": 133.42 + }, + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 1, + "unit_price": 68.68, + "subtotal": 68.68 + } + ], + "total_price": 308.81, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 11.73, + "expected_delivery": { + "$date": "2025-05-13T01:32:21.994Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.394Z" + } + }, + { + "order_id": "55be6e5c-b6dc-4d5d-938f-b9e48abad96b", + "customer": { + "customer_id": "31be0fff-85a7-428c-9e5f-c605426c952c", + "name": "Amy Ramirez", + "email": "ehernandez@example.com", + "phone": "001-580-431-4213x60900", + "address": { + "street": "80767 Wood Ferry", + "city": "Holmeston", + "state": "Arkansas", + "zip": "55482", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T22:04:20.958Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 100.04, + "subtotal": 200.08 + }, + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 122.57, + "subtotal": 245.14 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 158.5, + "subtotal": 317.0 + } + ], + "total_price": 762.22, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 5.14, + "expected_delivery": { + "$date": "2025-05-18T22:04:20.958Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.395Z" + } + }, + { + "order_id": "55646426-e266-4651-adc1-2f8109bcc3c1", + "customer": { + "customer_id": "b9f585a0-fc69-4eb7-8f5d-493eaa460bcb", + "name": "Karen Perez", + "email": "zstanley@example.org", + "phone": "825-583-0172x7965", + "address": { + "street": "045 Contreras Neck", + "city": "New Brett", + "state": "South Dakota", + "zip": "50476", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T08:32:57.761Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 67.97, + "subtotal": 135.94 + }, + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 130.34, + "subtotal": 260.68 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 108.12, + "subtotal": 216.24 + } + ], + "total_price": 612.86, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 6.94, + "expected_delivery": { + "$date": "2025-05-19T08:32:57.761Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.395Z" + } + }, + { + "order_id": "52921e46-afce-45f7-85a2-a3d767d5bfbc", + "customer": { + "customer_id": "85a6ff13-a95c-47b8-acf6-55641948cd1f", + "name": "Michael Morris", + "email": "nwhite@example.org", + "phone": "001-441-962-7528x77007", + "address": { + "street": "094 Katherine Mill Apt. 997", + "city": "Cookmouth", + "state": "South Carolina", + "zip": "88613", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T11:59:46.929Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 114.22, + "subtotal": 114.22 + } + ], + "total_price": 114.22, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 19.58, + "expected_delivery": { + "$date": "2025-05-14T11:59:46.929Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.395Z" + } + }, + { + "order_id": "491c3a1c-4728-4aab-bf59-2d5a90a79555", + "customer": { + "customer_id": "cc4f022b-e991-4666-bf74-74881b02ae59", + "name": "Valerie Thomas", + "email": "warddaniel@example.com", + "phone": "(215)380-6077x6856", + "address": { + "street": "7151 Nicole Tunnel", + "city": "New Jasonfurt", + "state": "Oregon", + "zip": "84573", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T07:14:02.713Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 64.22, + "subtotal": 128.44 + }, + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 2, + "unit_price": 99.93, + "subtotal": 199.86 + } + ], + "total_price": 328.3, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 10.87, + "expected_delivery": { + "$date": "2025-05-15T07:14:02.713Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.396Z" + } + }, + { + "order_id": "70071cde-797b-4325-96c7-d0d9f0214139", + "customer": { + "customer_id": "274a9d0c-6e98-46df-a7de-37104600ec67", + "name": "Christopher Robinson", + "email": "david53@example.com", + "phone": "284-226-7252x93188", + "address": { + "street": "265 Jimenez Walk Suite 807", + "city": "Dennisbury", + "state": "Mississippi", + "zip": "43454", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T08:07:10.834Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 81.98, + "subtotal": 163.96 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 136.06, + "subtotal": 136.06 + }, + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 1, + "unit_price": 170.62, + "subtotal": 170.62 + } + ], + "total_price": 470.64, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 11.31, + "expected_delivery": { + "$date": "2025-05-12T08:07:10.834Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.397Z" + } + }, + { + "order_id": "9983b18b-b116-42f4-8fbb-9e34447c7dff", + "customer": { + "customer_id": "96ca63e9-4ae5-4dd3-8b5c-e69f6521f821", + "name": "Linda Martin", + "email": "gallowaykelly@example.com", + "phone": "001-357-287-7818", + "address": { + "street": "7948 Cooke Cape", + "city": "East Michael", + "state": "Massachusetts", + "zip": "67359", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T17:17:02.239Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 139.48, + "subtotal": 139.48 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 139.06, + "subtotal": 278.12 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 111.82, + "subtotal": 223.64 + } + ], + "total_price": 641.24, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 6.14, + "expected_delivery": { + "$date": "2025-05-15T17:17:02.239Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.397Z" + } + }, + { + "order_id": "ed2722e5-3180-4fb0-8dbf-f48b671de2ad", + "customer": { + "customer_id": "4e825461-ca66-4bb0-a473-3ab77511db4e", + "name": "Sandra Davis", + "email": "abigailryan@example.net", + "phone": "(803)274-8149", + "address": { + "street": "23906 Ryan Island Apt. 964", + "city": "East Jenniferfort", + "state": "Colorado", + "zip": "77499", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T00:06:31.940Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 175.25, + "subtotal": 350.5 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 1, + "unit_price": 90.38, + "subtotal": 90.38 + } + ], + "total_price": 440.88, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 7.03, + "expected_delivery": { + "$date": "2025-05-17T00:06:31.940Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.397Z" + } + }, + { + "order_id": "6c1679d1-5eb3-46b6-b506-6b0513cec626", + "customer": { + "customer_id": "1d58ef57-5924-45fb-8a0f-80b3e73dd215", + "name": "Kimberly Gonzalez", + "email": "solisdawn@example.org", + "phone": "652.769.6957x869", + "address": { + "street": "0548 Choi Grove Suite 140", + "city": "Nicholasburgh", + "state": "Missouri", + "zip": "84615", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T18:43:32.454Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 140.25, + "subtotal": 140.25 + }, + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 79.43, + "subtotal": 158.86 + } + ], + "total_price": 299.11, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 7.33, + "expected_delivery": { + "$date": "2025-05-16T18:43:32.454Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.398Z" + } + }, + { + "order_id": "44ced1c3-9a2c-4f83-99e1-f24d7493074e", + "customer": { + "customer_id": "929e7aa3-5df9-4384-9b3d-726e2ec72b56", + "name": "Bridget Cross", + "email": "jwilkinson@example.com", + "phone": "(318)679-0418", + "address": { + "street": "9424 Tiffany Route", + "city": "West Amberport", + "state": "Utah", + "zip": "27083", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T21:53:48.188Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 1, + "unit_price": 169.62, + "subtotal": 169.62 + }, + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 1, + "unit_price": 71.07, + "subtotal": 71.07 + } + ], + "total_price": 240.69, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 6.54, + "expected_delivery": { + "$date": "2025-05-20T21:53:48.188Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.398Z" + } + }, + { + "order_id": "5fbe6a4d-412d-4412-bfc6-6db936094870", + "customer": { + "customer_id": "efa14318-492f-4095-bab2-ab41e09c7abd", + "name": "Dan Anderson", + "email": "samuelgonzalez@example.com", + "phone": "001-381-932-7909x51761", + "address": { + "street": "386 Tonya Garden", + "city": "East Michael", + "state": "Ohio", + "zip": "86321", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T08:15:03.504Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 166.73, + "subtotal": 166.73 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 1, + "unit_price": 169.94, + "subtotal": 169.94 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 157.53, + "subtotal": 315.06 + } + ], + "total_price": 651.73, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 13.84, + "expected_delivery": { + "$date": "2025-05-13T08:15:03.504Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.398Z" + } + }, + { + "order_id": "056c870d-0c6a-4110-a6c1-4cb1bc76dfd1", + "customer": { + "customer_id": "56a2019d-4e97-49da-9917-05705f6f00b1", + "name": "Rebecca Bell", + "email": "timothysmith@example.com", + "phone": "+1-782-514-2519", + "address": { + "street": "120 Smith Highway", + "city": "Garciabury", + "state": "Idaho", + "zip": "52453", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T13:00:15.925Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 174.86, + "subtotal": 174.86 + }, + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 2, + "unit_price": 157.08, + "subtotal": 314.16 + } + ], + "total_price": 489.02, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 6.05, + "expected_delivery": { + "$date": "2025-05-17T13:00:15.925Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.399Z" + } + }, + { + "order_id": "e7029712-bb38-4657-b43f-b7219350b54d", + "customer": { + "customer_id": "01aec01a-5dc2-472f-bf14-33a23cd933ab", + "name": "Renee Sandoval", + "email": "catherinejacobs@example.net", + "phone": "+1-454-801-9356x20672", + "address": { + "street": "5467 Christopher Circle Suite 782", + "city": "North Heather", + "state": "Washington", + "zip": "00648", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T13:21:11.708Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 170.21, + "subtotal": 340.42 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 144.1, + "subtotal": 144.1 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 171.7, + "subtotal": 343.4 + } + ], + "total_price": 827.92, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 11.03, + "expected_delivery": { + "$date": "2025-05-11T13:21:11.708Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.399Z" + } + }, + { + "order_id": "09c24b71-9736-4d77-9e4c-18eb3889f712", + "customer": { + "customer_id": "8cacb915-7658-4091-a674-5394806b923f", + "name": "Dr. Robert Lane", + "email": "hglass@example.org", + "phone": "+1-265-772-6670", + "address": { + "street": "30815 Richard Village Apt. 914", + "city": "Heatherbury", + "state": "Illinois", + "zip": "71723", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T23:12:40.931Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 171.63, + "subtotal": 171.63 + }, + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 83.51, + "subtotal": 167.02 + }, + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 2, + "unit_price": 121.81, + "subtotal": 243.62 + } + ], + "total_price": 582.27, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 10.38, + "expected_delivery": { + "$date": "2025-05-16T23:12:40.931Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.399Z" + } + }, + { + "order_id": "0f830c4c-8010-49c6-bab9-936d5754f8eb", + "customer": { + "customer_id": "74363a6f-1cc8-44ca-8f54-c8790fe76896", + "name": "Christopher Brady", + "email": "cynthiahorn@example.com", + "phone": "447-880-6805x2196", + "address": { + "street": "03127 James Parkways Suite 053", + "city": "Williamport", + "state": "New Mexico", + "zip": "70147", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T06:12:34.267Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 137.35, + "subtotal": 137.35 + } + ], + "total_price": 137.35, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 17.82, + "expected_delivery": { + "$date": "2025-05-09T06:12:34.267Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.399Z" + } + }, + { + "order_id": "bfe213dd-c670-4c7b-b2fd-450db2e66de8", + "customer": { + "customer_id": "d4662b3a-83a1-45a5-8e58-16d09096a172", + "name": "Brenda Lopez", + "email": "jamessarah@example.com", + "phone": "(277)841-0491", + "address": { + "street": "385 Steve Flat Suite 564", + "city": "South Philip", + "state": "Ohio", + "zip": "15553", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T15:07:57.468Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 80.95, + "subtotal": 161.9 + } + ], + "total_price": 161.9, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 14.33, + "expected_delivery": { + "$date": "2025-05-10T15:07:57.468Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.400Z" + } + }, + { + "order_id": "79ea6719-8556-4c2d-878b-cead6f649373", + "customer": { + "customer_id": "aedf18f9-b6cb-4b5b-a9a7-758e07c0d3e1", + "name": "Grant Lee", + "email": "mstephens@example.com", + "phone": "5049511835", + "address": { + "street": "1606 Kelly Falls", + "city": "Port John", + "state": "Texas", + "zip": "18210", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T21:27:31.168Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 177.93, + "subtotal": 355.86 + }, + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 1, + "unit_price": 89.02, + "subtotal": 89.02 + } + ], + "total_price": 444.88, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 8.02, + "expected_delivery": { + "$date": "2025-05-12T21:27:31.168Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.400Z" + } + }, + { + "order_id": "d4f86334-c9e3-466f-9255-d52cf44cdb97", + "customer": { + "customer_id": "911dac9a-0879-4f02-a5ee-8ce379f52329", + "name": "Madison Edwards", + "email": "oswanson@example.com", + "phone": "(770)320-9718", + "address": { + "street": "90204 Love Road Suite 363", + "city": "Goldenland", + "state": "Illinois", + "zip": "35273", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T10:38:32.386Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 175.25, + "subtotal": 350.5 + } + ], + "total_price": 350.5, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 10.36, + "expected_delivery": { + "$date": "2025-05-11T10:38:32.386Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.400Z" + } + }, + { + "order_id": "65145322-3551-4180-8a9e-7cff786f4978", + "customer": { + "customer_id": "615c9012-a145-4f17-a917-039dda7d4ff6", + "name": "Angela Walker", + "email": "kristajones@example.com", + "phone": "(378)592-6358x6070", + "address": { + "street": "6931 Sheryl Street Suite 908", + "city": "West James", + "state": "Georgia", + "zip": "11325", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T10:49:30.501Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 113.51, + "subtotal": 113.51 + } + ], + "total_price": 113.51, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 12.73, + "expected_delivery": { + "$date": "2025-05-11T10:49:30.501Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.401Z" + } + }, + { + "order_id": "edbf3782-0229-4b69-8e9d-cc776b3fd248", + "customer": { + "customer_id": "3545bd34-add7-4b9e-8c23-75aa248a8ae1", + "name": "Kimberly Waters", + "email": "reidrobert@example.net", + "phone": "984.603.9272", + "address": { + "street": "16790 Kenneth Turnpike Suite 278", + "city": "Lake Ashley", + "state": "Missouri", + "zip": "14193", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T12:09:41.249Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 2, + "unit_price": 118.61, + "subtotal": 237.22 + }, + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 83.2, + "subtotal": 83.2 + }, + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 164.82, + "subtotal": 164.82 + } + ], + "total_price": 485.24, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 17.13, + "expected_delivery": { + "$date": "2025-05-21T12:09:41.249Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.401Z" + } + }, + { + "order_id": "b26af2ac-01c2-4bee-9019-ea1451e314a2", + "customer": { + "customer_id": "ad1b4bcf-566d-436a-ba6f-d37b8a23a31e", + "name": "Katelyn Pollard", + "email": "carrnoah@example.org", + "phone": "(806)449-1260", + "address": { + "street": "085 Annette Via Suite 112", + "city": "North Austin", + "state": "Mississippi", + "zip": "48036", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T17:32:02.109Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 120.22, + "subtotal": 240.44 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 125.46, + "subtotal": 125.46 + } + ], + "total_price": 365.9, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 16.64, + "expected_delivery": { + "$date": "2025-05-11T17:32:02.109Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.401Z" + } + }, + { + "order_id": "9dda50f4-106e-4180-ab64-59bd7be9629f", + "customer": { + "customer_id": "21f09e72-6eef-45e9-8361-4088eca49635", + "name": "Mikayla Barnes", + "email": "jasonbautista@example.org", + "phone": "2343858319", + "address": { + "street": "5327 Allen Estates Suite 246", + "city": "Craigstad", + "state": "Tennessee", + "zip": "81478", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T23:46:33.172Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 71.59, + "subtotal": 143.18 + }, + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 101.88, + "subtotal": 203.76 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 1, + "unit_price": 127.99, + "subtotal": 127.99 + } + ], + "total_price": 474.93, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 10.49, + "expected_delivery": { + "$date": "2025-05-18T23:46:33.172Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.401Z" + } + }, + { + "order_id": "3c0f589b-1044-4e83-a11a-8793862e2425", + "customer": { + "customer_id": "f0712c47-b286-4299-a3ef-fec7ee4a43db", + "name": "Sara Terry", + "email": "eleblanc@example.net", + "phone": "713.623.8071", + "address": { + "street": "94280 Serrano Land Apt. 947", + "city": "Allenborough", + "state": "New Jersey", + "zip": "97869", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T06:50:32.783Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 72.02, + "subtotal": 72.02 + }, + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 67.45, + "subtotal": 67.45 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 63.32, + "subtotal": 126.64 + } + ], + "total_price": 266.11, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 15.25, + "expected_delivery": { + "$date": "2025-05-13T06:50:32.783Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.402Z" + } + }, + { + "order_id": "b80756d9-6a98-461c-ba12-89db5f9d9f97", + "customer": { + "customer_id": "3e7ceba9-a8e5-4a99-aef8-307e102ab48d", + "name": "David Barrett", + "email": "lisacastaneda@example.org", + "phone": "(583)276-8563", + "address": { + "street": "47895 Christina Mews", + "city": "Eileenhaven", + "state": "Oregon", + "zip": "89613", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T22:09:40.490Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 147.92, + "subtotal": 147.92 + } + ], + "total_price": 147.92, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 11.87, + "expected_delivery": { + "$date": "2025-05-17T22:09:40.490Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.402Z" + } + }, + { + "order_id": "c0235d86-90ca-4323-8310-83bb470e838a", + "customer": { + "customer_id": "23fb7f9b-b886-4976-821b-4cf1bbfe20fa", + "name": "Darren Carpenter", + "email": "jessica03@example.com", + "phone": "001-850-654-7488x93070", + "address": { + "street": "766 Stephanie Common Apt. 230", + "city": "South Matthew", + "state": "Kentucky", + "zip": "61896", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T08:33:17.424Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 72.89, + "subtotal": 72.89 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 123.8, + "subtotal": 123.8 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 1, + "unit_price": 128.02, + "subtotal": 128.02 + } + ], + "total_price": 324.71, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 13.17, + "expected_delivery": { + "$date": "2025-05-15T08:33:17.424Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.402Z" + } + }, + { + "order_id": "ba36f7d5-441c-4417-8d7f-7e0096a85d91", + "customer": { + "customer_id": "df2f731b-84a7-4ab4-93f9-f5362d632e12", + "name": "Diana Hayes", + "email": "ogriffith@example.org", + "phone": "554-622-2053x1073", + "address": { + "street": "7158 West Branch", + "city": "South David", + "state": "Maine", + "zip": "15481", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T09:54:16.206Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 142.72, + "subtotal": 142.72 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 60.21, + "subtotal": 120.42 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 74.92, + "subtotal": 149.84 + } + ], + "total_price": 412.98, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 17.0, + "expected_delivery": { + "$date": "2025-05-19T09:54:16.206Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.402Z" + } + }, + { + "order_id": "f59c99eb-e8fd-4255-87d5-db4664404559", + "customer": { + "customer_id": "5ab5b1bd-3053-4714-8de7-81183bbc2ffa", + "name": "Connie Price", + "email": "richmondlaura@example.com", + "phone": "650-647-5666", + "address": { + "street": "700 Travis Trail", + "city": "Annestad", + "state": "Arizona", + "zip": "88359", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T07:34:39.410Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 156.82, + "subtotal": 156.82 + }, + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 2, + "unit_price": 72.78, + "subtotal": 145.56 + } + ], + "total_price": 302.38, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 9.43, + "expected_delivery": { + "$date": "2025-05-13T07:34:39.410Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.403Z" + } + }, + { + "order_id": "40c18efd-5a84-48f5-984f-a7ec278d6498", + "customer": { + "customer_id": "b865ab1c-ca7c-48f3-a8a8-d635371e8b5f", + "name": "Thomas Solomon", + "email": "juliaking@example.org", + "phone": "570.815.6769x29082", + "address": { + "street": "421 Lori Ferry", + "city": "New Stephanie", + "state": "Montana", + "zip": "01690", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T18:00:15.112Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 107.69, + "subtotal": 107.69 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 72.28, + "subtotal": 144.56 + } + ], + "total_price": 252.25, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 6.49, + "expected_delivery": { + "$date": "2025-05-16T18:00:15.112Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.403Z" + } + }, + { + "order_id": "2788e56d-d8e1-4417-8210-e7bcfc721d62", + "customer": { + "customer_id": "df8de23a-5bbe-4ac4-a2cc-489ede223706", + "name": "Karen Williams", + "email": "deborahlevy@example.net", + "phone": "363-462-8580x618", + "address": { + "street": "68998 Brown Road", + "city": "Hendersonview", + "state": "Iowa", + "zip": "96127", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T08:42:12.329Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 75.6, + "subtotal": 151.2 + }, + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 104.81, + "subtotal": 104.81 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 170.33, + "subtotal": 340.66 + } + ], + "total_price": 596.67, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 8.34, + "expected_delivery": { + "$date": "2025-05-13T08:42:12.329Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.403Z" + } + }, + { + "order_id": "e60570b4-4d45-4052-9865-6303c870840d", + "customer": { + "customer_id": "ead9fbb9-ce89-4944-bf48-1f8ed3e9d161", + "name": "Nicole Lopez", + "email": "juanvaldez@example.org", + "phone": "001-380-910-6990x38570", + "address": { + "street": "55593 Jennifer Lodge", + "city": "North Lisa", + "state": "South Carolina", + "zip": "68461", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T02:08:31.227Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 2, + "unit_price": 77.95, + "subtotal": 155.9 + } + ], + "total_price": 155.9, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 12.59, + "expected_delivery": { + "$date": "2025-05-21T02:08:31.227Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.403Z" + } + }, + { + "order_id": "0d063e2a-d06e-4d97-9eb6-9a2565049d75", + "customer": { + "customer_id": "2dab18c2-b7bc-45e7-9f89-94a0b3598fd6", + "name": "Bradley Summers", + "email": "hmorris@example.org", + "phone": "(678)301-8128", + "address": { + "street": "293 Ryan Trafficway", + "city": "South Mackenzie", + "state": "Utah", + "zip": "35162", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T05:03:22.552Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 167.47, + "subtotal": 334.94 + }, + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 173.04, + "subtotal": 346.08 + }, + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 76.83, + "subtotal": 76.83 + } + ], + "total_price": 757.85, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 7.05, + "expected_delivery": { + "$date": "2025-05-10T05:03:22.552Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.404Z" + } + }, + { + "order_id": "50fe8d7e-c5fd-4cee-873f-f4f3cec901ef", + "customer": { + "customer_id": "655d1c50-419d-4a82-886b-79cc0f02e141", + "name": "Michael Lane", + "email": "warrentodd@example.org", + "phone": "(849)507-6359x7330", + "address": { + "street": "14507 Anderson Creek", + "city": "Adamston", + "state": "Indiana", + "zip": "31086", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T17:03:10.736Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 70.14, + "subtotal": 70.14 + }, + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 2, + "unit_price": 106.36, + "subtotal": 212.72 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 94.03, + "subtotal": 188.06 + } + ], + "total_price": 470.92, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 11.2, + "expected_delivery": { + "$date": "2025-05-21T17:03:10.736Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.404Z" + } + }, + { + "order_id": "7dc656c7-3cf4-4b9f-afdd-f85aa3ea7bc1", + "customer": { + "customer_id": "53c7fbea-694c-4929-8b0b-aa6a236b7e56", + "name": "Alex Mendoza", + "email": "anthony33@example.com", + "phone": "(646)588-5105x84191", + "address": { + "street": "56868 Joseph Village", + "city": "Lake Melissa", + "state": "Indiana", + "zip": "29760", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T21:53:47.633Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 151.56, + "subtotal": 303.12 + }, + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 137.57, + "subtotal": 137.57 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 164.48, + "subtotal": 328.96 + } + ], + "total_price": 769.65, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 7.92, + "expected_delivery": { + "$date": "2025-05-13T21:53:47.633Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.404Z" + } + }, + { + "order_id": "00372c4b-0eae-45cc-b44f-b028a8e4fea2", + "customer": { + "customer_id": "5fe9f9cf-2449-4cea-a242-1df7975afad8", + "name": "Tyler Smith", + "email": "sgibbs@example.net", + "phone": "+1-546-376-5071", + "address": { + "street": "6346 Brown Pine Suite 184", + "city": "Lake Jamesshire", + "state": "Arkansas", + "zip": "30507", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T02:50:34.702Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 88.23, + "subtotal": 88.23 + } + ], + "total_price": 88.23, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 11.4, + "expected_delivery": { + "$date": "2025-05-14T02:50:34.702Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.404Z" + } + }, + { + "order_id": "dc03533e-59ec-4e8f-8905-49804d6bcb16", + "customer": { + "customer_id": "4c52b376-997c-43bd-a46d-41974ce7e2c5", + "name": "Peter Downs", + "email": "bentonkimberly@example.com", + "phone": "2596008597", + "address": { + "street": "4040 Regina Orchard Apt. 519", + "city": "Kelliside", + "state": "Texas", + "zip": "34732", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T04:11:23.567Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 167.81, + "subtotal": 167.81 + } + ], + "total_price": 167.81, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 6.56, + "expected_delivery": { + "$date": "2025-05-16T04:11:23.567Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.404Z" + } + }, + { + "order_id": "221b2c2c-10c9-40e1-b790-95506f1aa484", + "customer": { + "customer_id": "e20f1fd5-f89d-4f34-94dd-6d0eecc3e040", + "name": "Lance Meyer", + "email": "kestes@example.com", + "phone": "(795)219-3357", + "address": { + "street": "153 Jensen Lake Apt. 789", + "city": "Garciaberg", + "state": "West Virginia", + "zip": "82173", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T20:53:46.787Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 2, + "unit_price": 77.72, + "subtotal": 155.44 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 141.63, + "subtotal": 283.26 + }, + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 159.81, + "subtotal": 319.62 + } + ], + "total_price": 758.32, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 6.59, + "expected_delivery": { + "$date": "2025-05-18T20:53:46.787Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.405Z" + } + }, + { + "order_id": "22ecb211-8c38-47cc-817d-4a9f30d22839", + "customer": { + "customer_id": "95155d77-099b-4b80-b180-172d7e4c4f6d", + "name": "Lisa Johnson", + "email": "matthewhendricks@example.net", + "phone": "577.222.8018", + "address": { + "street": "820 Shelton Trail Apt. 458", + "city": "Port Anthonyland", + "state": "Indiana", + "zip": "51202", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T07:47:04.211Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 141.61, + "subtotal": 141.61 + } + ], + "total_price": 141.61, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 15.4, + "expected_delivery": { + "$date": "2025-05-14T07:47:04.211Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.405Z" + } + }, + { + "order_id": "2b36809d-8f18-481c-b011-e6d4529b1a4b", + "customer": { + "customer_id": "7e5332c6-96dc-4bd9-b184-7192b5348e36", + "name": "Thomas Webster", + "email": "jasongordon@example.org", + "phone": "001-982-773-1802x52956", + "address": { + "street": "4499 Williams Glen", + "city": "Mcclureview", + "state": "New York", + "zip": "03878", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T10:10:15.505Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 150.39, + "subtotal": 300.78 + } + ], + "total_price": 300.78, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 17.21, + "expected_delivery": { + "$date": "2025-05-14T10:10:15.505Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.405Z" + } + }, + { + "order_id": "16809e20-3f8a-4637-98ee-b3aa6a430726", + "customer": { + "customer_id": "d4ca766f-872e-4b14-9352-fe3fe356713c", + "name": "Jonathan Collins", + "email": "qlee@example.net", + "phone": "4119992967", + "address": { + "street": "932 Ramirez Stravenue Apt. 853", + "city": "Mcdowellborough", + "state": "Tennessee", + "zip": "30843", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T17:42:30.005Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 112.71, + "subtotal": 112.71 + } + ], + "total_price": 112.71, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 10.51, + "expected_delivery": { + "$date": "2025-05-15T17:42:30.005Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.405Z" + } + }, + { + "order_id": "e054a09b-60d1-4ab5-ab3f-09926fe6006f", + "customer": { + "customer_id": "a477764a-2f2d-435d-94af-39644fc9cfbe", + "name": "Keith Johnston", + "email": "christine83@example.com", + "phone": "001-375-748-1763x68918", + "address": { + "street": "774 Davis Forest Apt. 677", + "city": "West Maryland", + "state": "Pennsylvania", + "zip": "92648", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T21:26:43.566Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 143.28, + "subtotal": 286.56 + } + ], + "total_price": 286.56, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 13.46, + "expected_delivery": { + "$date": "2025-05-12T21:26:43.566Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.406Z" + } + }, + { + "order_id": "d88aeb42-b3d9-4e63-95ed-c4a6ac9e67eb", + "customer": { + "customer_id": "caef62e8-12d8-43f8-ac3f-7aed4a36803f", + "name": "Stephanie Harvey", + "email": "chenluke@example.net", + "phone": "(870)374-3813", + "address": { + "street": "010 Terri Oval Suite 814", + "city": "Hugheschester", + "state": "Indiana", + "zip": "65471", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T07:54:52.400Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 1, + "unit_price": 72.13, + "subtotal": 72.13 + }, + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 1, + "unit_price": 165.51, + "subtotal": 165.51 + } + ], + "total_price": 237.64, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 15.3, + "expected_delivery": { + "$date": "2025-05-12T07:54:52.400Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.406Z" + } + }, + { + "order_id": "e3193cbb-58d9-438a-9925-009569341cb4", + "customer": { + "customer_id": "99ec2940-010d-416d-a4bc-d3f74cd7a9c3", + "name": "Laura Kelley", + "email": "alexandracraig@example.org", + "phone": "5715319542", + "address": { + "street": "1878 Obrien Mills Suite 872", + "city": "Port Saraberg", + "state": "Vermont", + "zip": "99280", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T02:27:27.633Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 100.32, + "subtotal": 200.64 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 79.09, + "subtotal": 158.18 + }, + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 178.95, + "subtotal": 178.95 + } + ], + "total_price": 537.77, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 6.64, + "expected_delivery": { + "$date": "2025-05-09T02:27:27.633Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.406Z" + } + }, + { + "order_id": "cc02dc57-0f82-4120-9e5c-45c405f32ccb", + "customer": { + "customer_id": "a43c7ef4-23ce-44a8-83c5-2dda794aaaad", + "name": "Jessica Hernandez", + "email": "christinachen@example.net", + "phone": "393.339.2177", + "address": { + "street": "546 Michael Crossing", + "city": "New Melissa", + "state": "Michigan", + "zip": "72986", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T23:34:01.099Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 128.99, + "subtotal": 257.98 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 169.79, + "subtotal": 339.58 + } + ], + "total_price": 597.56, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 14.99, + "expected_delivery": { + "$date": "2025-05-12T23:34:01.099Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.406Z" + } + }, + { + "order_id": "d77e993f-cd5a-415c-bb38-e8ebc1200cb0", + "customer": { + "customer_id": "602678ae-f459-4e43-bd63-42a407260009", + "name": "James Arroyo", + "email": "torreslindsay@example.com", + "phone": "885-490-9257x6688", + "address": { + "street": "48807 Pope Crest", + "city": "Barnetttown", + "state": "Massachusetts", + "zip": "34846", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T18:08:23.753Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 82.06, + "subtotal": 82.06 + }, + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 1, + "unit_price": 133.02, + "subtotal": 133.02 + }, + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 96.92, + "subtotal": 193.84 + } + ], + "total_price": 408.92, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 5.61, + "expected_delivery": { + "$date": "2025-05-15T18:08:23.753Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.407Z" + } + }, + { + "order_id": "c37d8fef-1afa-4556-91ad-78193c858328", + "customer": { + "customer_id": "8e3c73db-0a9a-4a1a-bccf-edf0b7bb6878", + "name": "Laura Chambers", + "email": "michaeladams@example.org", + "phone": "4799727710", + "address": { + "street": "91221 Carol Causeway", + "city": "Port Dennisbury", + "state": "Florida", + "zip": "30672", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T13:46:08.288Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 95.63, + "subtotal": 95.63 + } + ], + "total_price": 95.63, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 18.07, + "expected_delivery": { + "$date": "2025-05-11T13:46:08.288Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.407Z" + } + }, + { + "order_id": "07958114-2899-4431-bf2c-f56cde0374e8", + "customer": { + "customer_id": "a3c4fe91-e375-43d3-a7a7-ab023b83485f", + "name": "Michael Campbell", + "email": "christopherthompson@example.net", + "phone": "(778)687-1931x42250", + "address": { + "street": "2048 Davidson Causeway Suite 210", + "city": "Mooretown", + "state": "Louisiana", + "zip": "67328", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T20:12:09.516Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 109.59, + "subtotal": 109.59 + } + ], + "total_price": 109.59, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 11.08, + "expected_delivery": { + "$date": "2025-05-20T20:12:09.516Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.407Z" + } + }, + { + "order_id": "d2def88f-a2d1-4dc1-9e3f-37b9040d4c1b", + "customer": { + "customer_id": "5736ecef-9c90-4ee1-9a84-36c92a5e1ba1", + "name": "Kathryn Pittman", + "email": "awilliams@example.net", + "phone": "+1-626-464-9257x841", + "address": { + "street": "815 Brandi Oval", + "city": "Victoriabury", + "state": "South Carolina", + "zip": "12641", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T22:09:12.433Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 88.99, + "subtotal": 88.99 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 173.27, + "subtotal": 173.27 + } + ], + "total_price": 262.26, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 9.51, + "expected_delivery": { + "$date": "2025-05-18T22:09:12.433Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.407Z" + } + }, + { + "order_id": "c6942e1f-b148-44ab-b26d-7bd074e87225", + "customer": { + "customer_id": "59c1c09e-e522-49f2-96f8-2ff91f56182f", + "name": "Ashley Pearson", + "email": "danielssarah@example.net", + "phone": "(799)245-7328x3031", + "address": { + "street": "8831 Clark Plaza", + "city": "Joshuashire", + "state": "Colorado", + "zip": "12558", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T22:39:45.478Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 150.61, + "subtotal": 301.22 + }, + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 63.46, + "subtotal": 126.92 + } + ], + "total_price": 428.14, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 17.64, + "expected_delivery": { + "$date": "2025-05-12T22:39:45.478Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.408Z" + } + }, + { + "order_id": "e83e23c8-5571-4ceb-a552-912ae7256d08", + "customer": { + "customer_id": "a7ff3479-797a-4026-bd61-55d58d722707", + "name": "Christine Wyatt PhD", + "email": "ethan06@example.net", + "phone": "799.269.3970x4866", + "address": { + "street": "4920 Matthew Heights Apt. 926", + "city": "Angelaburgh", + "state": "Idaho", + "zip": "69132", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T22:17:48.794Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 2, + "unit_price": 93.32, + "subtotal": 186.64 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 178.04, + "subtotal": 356.08 + } + ], + "total_price": 542.72, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 19.39, + "expected_delivery": { + "$date": "2025-05-15T22:17:48.794Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.408Z" + } + }, + { + "order_id": "0a3561be-3066-492c-96f7-1256f873c9c6", + "customer": { + "customer_id": "50a9ca24-f357-4ecd-8ef7-6e27195ad393", + "name": "Lauren Cook", + "email": "kelly60@example.com", + "phone": "(519)911-0064x48714", + "address": { + "street": "461 Tracey Inlet", + "city": "New Justinshire", + "state": "Missouri", + "zip": "73667", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T20:52:26.021Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 77.95, + "subtotal": 155.9 + } + ], + "total_price": 155.9, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 12.71, + "expected_delivery": { + "$date": "2025-05-14T20:52:26.021Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.408Z" + } + }, + { + "order_id": "987a463a-26f7-4eb3-b3bc-f02271f9b9a1", + "customer": { + "customer_id": "aca142ce-159c-45d6-bdc5-0d3cd6e61934", + "name": "Juan Barry", + "email": "fhancock@example.net", + "phone": "(612)922-8816x866", + "address": { + "street": "2471 Cooper Shoal", + "city": "Heathfurt", + "state": "Delaware", + "zip": "90134", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T15:55:01.187Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 110.3, + "subtotal": 110.3 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 119.18, + "subtotal": 119.18 + }, + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 108.86, + "subtotal": 217.72 + } + ], + "total_price": 447.2, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 5.53, + "expected_delivery": { + "$date": "2025-05-21T15:55:01.187Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.408Z" + } + }, + { + "order_id": "03ac4ab3-15be-425b-bbad-2627f4241ee7", + "customer": { + "customer_id": "78fe76b8-c5ee-4626-944a-6145371ff02e", + "name": "Tammy Lynch", + "email": "nataliegarcia@example.org", + "phone": "507-602-8527x2441", + "address": { + "street": "041 Browning Ramp Apt. 356", + "city": "Clarkfort", + "state": "New Mexico", + "zip": "79822", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T22:55:25.415Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 140.32, + "subtotal": 280.64 + } + ], + "total_price": 280.64, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 6.7, + "expected_delivery": { + "$date": "2025-05-11T22:55:25.415Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.408Z" + } + }, + { + "order_id": "5bf84cce-c2d9-498b-9303-b8dcb70d301e", + "customer": { + "customer_id": "25a65997-bf88-4bc4-aa59-377f9eb54381", + "name": "Kathryn Love", + "email": "uknight@example.com", + "phone": "(261)502-8854", + "address": { + "street": "827 Hannah Turnpike", + "city": "New Patrickhaven", + "state": "Nevada", + "zip": "02818", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T21:58:39.553Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 124.2, + "subtotal": 248.4 + }, + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 1, + "unit_price": 146.55, + "subtotal": 146.55 + } + ], + "total_price": 394.95, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 15.55, + "expected_delivery": { + "$date": "2025-05-16T21:58:39.553Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.409Z" + } + }, + { + "order_id": "e2c62699-12f2-4915-8099-e4bf38d2617a", + "customer": { + "customer_id": "6d78cdaf-1cb3-4706-8abd-295263039af3", + "name": "Kathleen Braun", + "email": "ngarcia@example.net", + "phone": "213-292-8429x38507", + "address": { + "street": "6854 Ryan Islands Suite 154", + "city": "New Lindsey", + "state": "Nevada", + "zip": "75820", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T05:10:35.659Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 1, + "unit_price": 139.05, + "subtotal": 139.05 + }, + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 164.78, + "subtotal": 164.78 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 1, + "unit_price": 126.32, + "subtotal": 126.32 + } + ], + "total_price": 430.15, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 7.87, + "expected_delivery": { + "$date": "2025-05-10T05:10:35.659Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.409Z" + } + }, + { + "order_id": "f4a2ae5b-0b53-4135-b870-ba9946949e97", + "customer": { + "customer_id": "e65cba68-6d9e-4dcf-ab84-ad8ce9da65d0", + "name": "Mitchell Tucker", + "email": "qrobinson@example.net", + "phone": "+1-286-620-2507x478", + "address": { + "street": "06250 Katherine Hill Apt. 949", + "city": "Cherylberg", + "state": "Indiana", + "zip": "85595", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T01:05:22.726Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 174.75, + "subtotal": 349.5 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 101.3, + "subtotal": 101.3 + }, + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 141.13, + "subtotal": 141.13 + } + ], + "total_price": 591.93, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 8.19, + "expected_delivery": { + "$date": "2025-05-13T01:05:22.726Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.409Z" + } + }, + { + "order_id": "7b8803b2-f905-4d58-8a41-b95c7536b909", + "customer": { + "customer_id": "76325c09-568a-4112-ad3a-ede77d10b82a", + "name": "Kristen Mcdonald", + "email": "gvasquez@example.com", + "phone": "252-554-3769", + "address": { + "street": "51538 Jesse Oval", + "city": "South Patrickport", + "state": "New Mexico", + "zip": "28132", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T15:31:26.188Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 2, + "unit_price": 100.41, + "subtotal": 200.82 + } + ], + "total_price": 200.82, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 7.55, + "expected_delivery": { + "$date": "2025-05-13T15:31:26.188Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.409Z" + } + }, + { + "order_id": "717c5a0d-c62f-4135-b7dd-c2cec424b8fe", + "customer": { + "customer_id": "5e59793a-eb43-4e3e-8672-1b66ef3857e6", + "name": "Michael Baldwin", + "email": "christopher71@example.net", + "phone": "6609421376", + "address": { + "street": "51392 Moore Lane", + "city": "Christianfurt", + "state": "Michigan", + "zip": "09551", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T09:16:01.051Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 68.01, + "subtotal": 68.01 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 84.56, + "subtotal": 169.12 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 98.24, + "subtotal": 196.48 + } + ], + "total_price": 433.61, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 19.29, + "expected_delivery": { + "$date": "2025-05-12T09:16:01.051Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.409Z" + } + }, + { + "order_id": "f1dd40f7-7d19-454a-8d89-152c1d5ad683", + "customer": { + "customer_id": "63ab7aa8-bc18-481e-a626-7c267cdd277e", + "name": "Amber Shaw", + "email": "sophia89@example.org", + "phone": "977-381-1828x068", + "address": { + "street": "770 Stephen Manors", + "city": "Port Mariashire", + "state": "West Virginia", + "zip": "52901", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T06:38:54.671Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 97.02, + "subtotal": 97.02 + }, + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 123.3, + "subtotal": 123.3 + } + ], + "total_price": 220.32, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 7.66, + "expected_delivery": { + "$date": "2025-05-16T06:38:54.671Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.410Z" + } + }, + { + "order_id": "a3e2d045-0c01-496f-9700-c24af21ef6c7", + "customer": { + "customer_id": "bb70d136-e5c5-4c6e-bf3b-3493247cadf1", + "name": "Benjamin Jones", + "email": "victoria23@example.net", + "phone": "918-594-1192", + "address": { + "street": "432 Brian Unions Apt. 493", + "city": "West Scott", + "state": "Georgia", + "zip": "54752", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T22:26:47.839Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 85.29, + "subtotal": 85.29 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 129.96, + "subtotal": 259.92 + }, + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 2, + "unit_price": 116.67, + "subtotal": 233.34 + } + ], + "total_price": 578.55, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 5.99, + "expected_delivery": { + "$date": "2025-05-17T22:26:47.839Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.410Z" + } + }, + { + "order_id": "81198278-b819-45b3-a081-d1d42205c35a", + "customer": { + "customer_id": "f281a217-845f-4871-8bb4-77d5bb7e3488", + "name": "Joshua Smith", + "email": "frodriguez@example.com", + "phone": "(286)342-2752", + "address": { + "street": "9200 Tyler Parks Apt. 548", + "city": "Lopezfurt", + "state": "Tennessee", + "zip": "72663", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T14:19:32.154Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 178.51, + "subtotal": 178.51 + } + ], + "total_price": 178.51, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 17.68, + "expected_delivery": { + "$date": "2025-05-09T14:19:32.154Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.410Z" + } + }, + { + "order_id": "705f0eeb-b4b1-43c9-987a-6810a3d56ab5", + "customer": { + "customer_id": "17a311e1-c77e-4000-a35b-97507f863fa1", + "name": "Mr. Donald Armstrong DDS", + "email": "julie77@example.net", + "phone": "+1-264-591-2520x34343", + "address": { + "street": "00566 Harris Road", + "city": "Ashleyside", + "state": "Arizona", + "zip": "37355", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T09:42:55.548Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 134.27, + "subtotal": 268.54 + }, + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 82.99, + "subtotal": 82.99 + } + ], + "total_price": 351.53, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 13.27, + "expected_delivery": { + "$date": "2025-05-15T09:42:55.548Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.410Z" + } + }, + { + "order_id": "0912070d-621c-4d28-8641-6bc61fd8f49e", + "customer": { + "customer_id": "0782a73c-cff7-476c-b045-a3d7a83915c1", + "name": "Alison Stephens", + "email": "kelly27@example.org", + "phone": "(872)834-4564x21937", + "address": { + "street": "56692 Stewart Brook Apt. 095", + "city": "Harrisonberg", + "state": "Louisiana", + "zip": "31405", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T20:39:38.760Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 117.13, + "subtotal": 234.26 + } + ], + "total_price": 234.26, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 18.2, + "expected_delivery": { + "$date": "2025-05-14T20:39:38.760Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.411Z" + } + }, + { + "order_id": "e3f83d1b-16f6-4b36-aeae-5a3b1088efd0", + "customer": { + "customer_id": "3e605471-0bdd-4e7c-b93c-d5bdcc199719", + "name": "Megan Wade", + "email": "ijohnson@example.com", + "phone": "(710)329-7366x518", + "address": { + "street": "5582 Kelsey Avenue", + "city": "Matthewbury", + "state": "Massachusetts", + "zip": "03549", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T03:36:23.389Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 1, + "unit_price": 146.4, + "subtotal": 146.4 + } + ], + "total_price": 146.4, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 14.6, + "expected_delivery": { + "$date": "2025-05-11T03:36:23.389Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.411Z" + } + }, + { + "order_id": "a7456412-bcfb-46da-9004-d2a63fdb8646", + "customer": { + "customer_id": "60028e83-908d-4fdc-90b9-c7afa3055932", + "name": "Karen Love DDS", + "email": "stephaniebradley@example.com", + "phone": "001-685-690-1718x59214", + "address": { + "street": "61484 Young Trafficway Apt. 561", + "city": "Walkertown", + "state": "California", + "zip": "20321", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T03:24:10.210Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 173.53, + "subtotal": 173.53 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 61.12, + "subtotal": 122.24 + } + ], + "total_price": 295.77, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 5.63, + "expected_delivery": { + "$date": "2025-05-08T03:24:10.210Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.411Z" + } + }, + { + "order_id": "edba9b5b-4139-4352-9668-31e546644a5d", + "customer": { + "customer_id": "8d97cbb1-824c-4be9-b4e8-0f69b5cab803", + "name": "Sheila Bowman", + "email": "christopher68@example.org", + "phone": "001-527-742-0481x34648", + "address": { + "street": "2535 Michele Gateway Suite 372", + "city": "West Williamland", + "state": "Minnesota", + "zip": "95657", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T17:22:37.755Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 2, + "unit_price": 96.67, + "subtotal": 193.34 + }, + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 69.18, + "subtotal": 138.36 + } + ], + "total_price": 331.7, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 7.64, + "expected_delivery": { + "$date": "2025-05-22T17:22:37.755Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.411Z" + } + }, + { + "order_id": "07ae7b1e-ddb2-416b-ba49-1261b0d77692", + "customer": { + "customer_id": "fdfbaca9-5da7-4a30-b832-2cfdb449252a", + "name": "Ryan Jimenez", + "email": "matthewwilliams@example.org", + "phone": "399-933-8353x47940", + "address": { + "street": "2489 Shelton Plaza", + "city": "Carlshire", + "state": "Wisconsin", + "zip": "47455", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T23:00:17.788Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 154.38, + "subtotal": 154.38 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 85.84, + "subtotal": 171.68 + } + ], + "total_price": 326.06, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 11.41, + "expected_delivery": { + "$date": "2025-05-18T23:00:17.788Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.411Z" + } + }, + { + "order_id": "e331b8d4-f5d4-4328-a695-b5cf2ffc9572", + "customer": { + "customer_id": "14430147-074c-4765-9034-0b69d89c57d1", + "name": "Charles Ramirez", + "email": "mgraham@example.com", + "phone": "381.245.4111", + "address": { + "street": "155 Lopez Shoals Suite 105", + "city": "East Michael", + "state": "Georgia", + "zip": "08529", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T04:50:51.556Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 62.6, + "subtotal": 125.2 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 105.56, + "subtotal": 105.56 + } + ], + "total_price": 230.76, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 5.18, + "expected_delivery": { + "$date": "2025-05-20T04:50:51.556Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.412Z" + } + }, + { + "order_id": "b485ab56-f644-41f4-b84a-d055837bd963", + "customer": { + "customer_id": "1cc00139-f3a4-4830-bc65-906c41eb50ea", + "name": "Roy Parker", + "email": "sanchezdeborah@example.net", + "phone": "+1-257-849-8812x67922", + "address": { + "street": "84541 Robert Burg", + "city": "Lake Donnabury", + "state": "Florida", + "zip": "02258", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T05:41:31.063Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 135.46, + "subtotal": 270.92 + } + ], + "total_price": 270.92, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 14.22, + "expected_delivery": { + "$date": "2025-05-21T05:41:31.063Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.412Z" + } + }, + { + "order_id": "484d225c-80b3-4f23-8bdb-105709dab7f7", + "customer": { + "customer_id": "c0628e92-c209-43d3-ba0c-ed17d251f8fa", + "name": "Sarah Jackson", + "email": "gregoryclark@example.org", + "phone": "2433487642", + "address": { + "street": "401 Buchanan Run Apt. 305", + "city": "Mezashire", + "state": "Alabama", + "zip": "92496", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T13:04:26.489Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 125.65, + "subtotal": 251.3 + } + ], + "total_price": 251.3, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 11.68, + "expected_delivery": { + "$date": "2025-05-11T13:04:26.489Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.412Z" + } + }, + { + "order_id": "5ed79545-12c5-43a2-ac1c-3433ac9ab394", + "customer": { + "customer_id": "e598f67e-0a30-4d69-a981-0a10fdac0a68", + "name": "Adam Nguyen", + "email": "timothy81@example.com", + "phone": "+1-362-787-5713x3686", + "address": { + "street": "69277 Gabriela Forest", + "city": "Williamshire", + "state": "Arkansas", + "zip": "23818", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T11:35:11.775Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 1, + "unit_price": 146.78, + "subtotal": 146.78 + }, + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 90.88, + "subtotal": 181.76 + } + ], + "total_price": 328.54, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 15.67, + "expected_delivery": { + "$date": "2025-05-12T11:35:11.775Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.413Z" + } + }, + { + "order_id": "3158e38d-57bc-41f8-ad39-a9de26d1c823", + "customer": { + "customer_id": "9b9a31e6-6a6a-413e-b28b-4f62d95e9fed", + "name": "Nancy Lynch", + "email": "allenerica@example.org", + "phone": "6126419885", + "address": { + "street": "983 Barry Spurs Suite 324", + "city": "West Rebecca", + "state": "Minnesota", + "zip": "07222", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T18:06:54.957Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 79.71, + "subtotal": 159.42 + }, + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 162.95, + "subtotal": 162.95 + } + ], + "total_price": 322.37, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 12.7, + "expected_delivery": { + "$date": "2025-05-14T18:06:54.957Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.413Z" + } + }, + { + "order_id": "872660bc-a85c-46c3-99d1-dda802e3baea", + "customer": { + "customer_id": "7c038710-5c86-46a3-9e67-a8e9e5b4ce91", + "name": "Marissa Higgins", + "email": "wattsmark@example.net", + "phone": "001-270-207-2885x2129", + "address": { + "street": "157 Megan Falls Suite 627", + "city": "South Melissa", + "state": "Wyoming", + "zip": "91587", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T10:42:54.136Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 141.76, + "subtotal": 283.52 + }, + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 66.28, + "subtotal": 132.56 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 153.97, + "subtotal": 153.97 + } + ], + "total_price": 570.05, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 19.61, + "expected_delivery": { + "$date": "2025-05-10T10:42:54.136Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.413Z" + } + }, + { + "order_id": "7620ba5d-84cb-4ca6-bb18-e877d3045851", + "customer": { + "customer_id": "60a8a22f-bf40-4ab9-b62b-0cf738ea70fb", + "name": "Shannon Sanders", + "email": "johnsonjohnny@example.net", + "phone": "674-639-3096x825", + "address": { + "street": "531 Greene Throughway", + "city": "Lake Eric", + "state": "Florida", + "zip": "15678", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T05:17:28.042Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 124.88, + "subtotal": 249.76 + }, + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 64.29, + "subtotal": 128.58 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 138.94, + "subtotal": 138.94 + } + ], + "total_price": 517.28, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 13.93, + "expected_delivery": { + "$date": "2025-05-11T05:17:28.042Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.413Z" + } + }, + { + "order_id": "1b0b4196-c009-4dbb-a1f6-a9f1bbdd6f8d", + "customer": { + "customer_id": "dc55231d-32af-4da9-b947-aac9cfa834af", + "name": "Sean Wagner", + "email": "parkerjessica@example.net", + "phone": "(800)739-5195", + "address": { + "street": "4048 Jack Club", + "city": "Codychester", + "state": "Wyoming", + "zip": "31071", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T22:20:41.377Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 1, + "unit_price": 68.33, + "subtotal": 68.33 + } + ], + "total_price": 68.33, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 12.95, + "expected_delivery": { + "$date": "2025-05-14T22:20:41.377Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.414Z" + } + }, + { + "order_id": "fb475032-ec1a-4b77-8a18-095b47706480", + "customer": { + "customer_id": "ccc637a5-3351-42df-9bcf-a6ceb16f4329", + "name": "Brittany Thomas", + "email": "markmendoza@example.com", + "phone": "001-204-245-4121", + "address": { + "street": "826 Robert Road", + "city": "Matthewberg", + "state": "Utah", + "zip": "89724", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T07:47:20.909Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 1, + "unit_price": 105.95, + "subtotal": 105.95 + } + ], + "total_price": 105.95, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 13.01, + "expected_delivery": { + "$date": "2025-05-19T07:47:20.909Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.414Z" + } + }, + { + "order_id": "15b07b90-e0db-4c57-ab31-684773951a9d", + "customer": { + "customer_id": "04bd386b-6f7a-49ae-97ed-bb549a18cb0e", + "name": "George Carrillo", + "email": "roberthenderson@example.net", + "phone": "(573)236-9690", + "address": { + "street": "41583 Alexander Field", + "city": "Nelsonborough", + "state": "Ohio", + "zip": "03650", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T15:10:32.363Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 121.12, + "subtotal": 242.24 + }, + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 177.89, + "subtotal": 355.78 + } + ], + "total_price": 598.02, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 12.52, + "expected_delivery": { + "$date": "2025-05-17T15:10:32.363Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.414Z" + } + }, + { + "order_id": "0acb3673-1b2c-4f51-8a34-c9295e645192", + "customer": { + "customer_id": "02ee9ad4-6534-4152-8008-d5a4b374d244", + "name": "Judy Thomas", + "email": "waltonnicole@example.net", + "phone": "819-344-9973", + "address": { + "street": "77819 Carol Walks Suite 401", + "city": "Reynoldsview", + "state": "Montana", + "zip": "94377", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T05:05:09.290Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 139.08, + "subtotal": 278.16 + }, + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 105.75, + "subtotal": 211.5 + }, + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 140.08, + "subtotal": 280.16 + } + ], + "total_price": 769.82, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 9.07, + "expected_delivery": { + "$date": "2025-05-12T05:05:09.290Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.414Z" + } + }, + { + "order_id": "fd42bbb5-e1c5-489c-8e2b-dc8cc316779f", + "customer": { + "customer_id": "a0a6e7d7-69c5-4d33-bf0b-f75dd1a17d05", + "name": "Arthur Holmes", + "email": "davidblackburn@example.com", + "phone": "001-619-722-9631x9939", + "address": { + "street": "331 Edwards Ridges Apt. 006", + "city": "Port Kendra", + "state": "Oklahoma", + "zip": "44996", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T13:58:43.673Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 161.44, + "subtotal": 161.44 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 99.38, + "subtotal": 99.38 + } + ], + "total_price": 260.82, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 16.68, + "expected_delivery": { + "$date": "2025-05-16T13:58:43.673Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.415Z" + } + }, + { + "order_id": "34462d21-e7fa-491d-b670-66e84f94f9b2", + "customer": { + "customer_id": "06605767-b7ce-48f4-b6b6-3995aa2caa85", + "name": "Kevin Santos", + "email": "hoodmichael@example.net", + "phone": "001-484-283-5208x4184", + "address": { + "street": "101 Robert Shoal Apt. 287", + "city": "Port Douglas", + "state": "Oklahoma", + "zip": "26924", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T14:23:26.362Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 105.23, + "subtotal": 105.23 + }, + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 2, + "unit_price": 109.49, + "subtotal": 218.98 + } + ], + "total_price": 324.21, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 15.57, + "expected_delivery": { + "$date": "2025-05-17T14:23:26.362Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.415Z" + } + }, + { + "order_id": "ab2f22ab-8892-4edd-b47d-3e2fd0c192a5", + "customer": { + "customer_id": "51477686-ae9c-469d-bb37-fcdb2794930c", + "name": "John Smith", + "email": "shall@example.org", + "phone": "5359355792", + "address": { + "street": "09648 Sean Circle", + "city": "North Kathy", + "state": "Washington", + "zip": "44699", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T04:52:13.263Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 117.25, + "subtotal": 117.25 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 111.8, + "subtotal": 223.6 + }, + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 122.21, + "subtotal": 244.42 + } + ], + "total_price": 585.27, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 7.11, + "expected_delivery": { + "$date": "2025-05-16T04:52:13.263Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.415Z" + } + }, + { + "order_id": "c8278c93-9b08-4dce-899d-4bd8e7c02bde", + "customer": { + "customer_id": "e4edc79a-c1fe-42d7-ad58-f9ae64debae6", + "name": "Jeffrey Williams", + "email": "kelleyjeremy@example.net", + "phone": "001-369-706-9520x967", + "address": { + "street": "32821 Johnson Summit Suite 586", + "city": "East Jenna", + "state": "Missouri", + "zip": "53094", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T00:42:14.369Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 100.95, + "subtotal": 100.95 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 1, + "unit_price": 166.66, + "subtotal": 166.66 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 135.1, + "subtotal": 135.1 + } + ], + "total_price": 402.71, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 16.66, + "expected_delivery": { + "$date": "2025-05-13T00:42:14.369Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.415Z" + } + }, + { + "order_id": "fcba1321-d6e5-40f5-83e4-7119b817d9c6", + "customer": { + "customer_id": "788db521-ef88-41c2-ba0e-2ccf3c0fb255", + "name": "Stephen Townsend", + "email": "james84@example.net", + "phone": "+1-843-928-8462x79096", + "address": { + "street": "32259 Richard Knolls Apt. 739", + "city": "Port Joelmouth", + "state": "Wyoming", + "zip": "56313", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T21:09:47.199Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 103.34, + "subtotal": 206.68 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 84.24, + "subtotal": 84.24 + } + ], + "total_price": 290.92, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 16.5, + "expected_delivery": { + "$date": "2025-05-19T21:09:47.199Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.415Z" + } + }, + { + "order_id": "fa010e1d-e077-4885-b8eb-1ab68ec72cfe", + "customer": { + "customer_id": "51d6ce1c-f38e-4a6e-bdbe-d34eb28643c7", + "name": "Richard Norman", + "email": "danny40@example.org", + "phone": "(395)599-8121x648", + "address": { + "street": "930 Holland Port", + "city": "East Tinaport", + "state": "Rhode Island", + "zip": "60715", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T11:47:46.024Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 2, + "unit_price": 150.35, + "subtotal": 300.7 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 179.0, + "subtotal": 358.0 + } + ], + "total_price": 658.7, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 14.56, + "expected_delivery": { + "$date": "2025-05-18T11:47:46.024Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.416Z" + } + }, + { + "order_id": "2e91bc07-613f-460d-9ab6-101540826bbd", + "customer": { + "customer_id": "4e7e822f-5323-4d40-8f0d-5523e091c1d1", + "name": "Deborah Hopkins", + "email": "jessicarivera@example.net", + "phone": "499.995.3708", + "address": { + "street": "98405 Tiffany Squares", + "city": "Greenehaven", + "state": "Maine", + "zip": "31509", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T02:43:51.867Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 93.95, + "subtotal": 187.9 + }, + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 144.56, + "subtotal": 144.56 + } + ], + "total_price": 332.46, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 11.6, + "expected_delivery": { + "$date": "2025-05-13T02:43:51.867Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.416Z" + } + }, + { + "order_id": "e9943de0-8482-495f-aceb-13a94d3b3957", + "customer": { + "customer_id": "34580a74-e577-47ec-9b28-0a5336155b33", + "name": "Paul Crosby", + "email": "jhart@example.org", + "phone": "951.808.7952", + "address": { + "street": "4261 Anthony Ville Suite 586", + "city": "Bethside", + "state": "South Carolina", + "zip": "71985", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T22:31:19.652Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 131.89, + "subtotal": 263.78 + } + ], + "total_price": 263.78, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 14.5, + "expected_delivery": { + "$date": "2025-05-13T22:31:19.652Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.416Z" + } + }, + { + "order_id": "077111b7-0b7a-446d-a5c7-0d30fa3bf677", + "customer": { + "customer_id": "e9d6c256-1d10-4bf4-ac6e-3db22adc7a6f", + "name": "Jason Bradley", + "email": "derrickjones@example.com", + "phone": "5974391862", + "address": { + "street": "250 John Road Suite 088", + "city": "Stonefurt", + "state": "Arizona", + "zip": "66359", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T07:19:10.681Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 79.42, + "subtotal": 158.84 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 175.84, + "subtotal": 351.68 + } + ], + "total_price": 510.52, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 12.19, + "expected_delivery": { + "$date": "2025-05-08T07:19:10.681Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.416Z" + } + }, + { + "order_id": "4bda0298-93e5-45a0-a94a-2f46b50785ff", + "customer": { + "customer_id": "0887724b-a3e1-47a9-a546-0a8df3135d0f", + "name": "Jason Roth", + "email": "stephen42@example.org", + "phone": "+1-790-613-9406x06439", + "address": { + "street": "67110 Jose Pine Apt. 445", + "city": "North Danny", + "state": "Vermont", + "zip": "17922", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T09:14:05.195Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 2, + "unit_price": 70.57, + "subtotal": 141.14 + }, + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 1, + "unit_price": 157.73, + "subtotal": 157.73 + }, + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 156.74, + "subtotal": 313.48 + } + ], + "total_price": 612.35, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 14.95, + "expected_delivery": { + "$date": "2025-05-20T09:14:05.195Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.417Z" + } + }, + { + "order_id": "bb551816-422f-4e77-b831-90f04bdefd35", + "customer": { + "customer_id": "97157ed2-557d-4497-ac38-008d04ca0e16", + "name": "Dr. Connie Anderson", + "email": "torressandra@example.org", + "phone": "870-678-7452x87064", + "address": { + "street": "775 Fisher Drives", + "city": "East Tanya", + "state": "Rhode Island", + "zip": "27141", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T02:02:24.742Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 84.59, + "subtotal": 84.59 + } + ], + "total_price": 84.59, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 9.24, + "expected_delivery": { + "$date": "2025-05-12T02:02:24.742Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.417Z" + } + }, + { + "order_id": "00bef519-202f-4bdb-8e5e-912187b1eeae", + "customer": { + "customer_id": "da6d40a4-1208-4131-b1b2-661e6afab977", + "name": "Christopher Davis", + "email": "ojones@example.net", + "phone": "+1-405-851-8613x156", + "address": { + "street": "1228 Shannon Harbors Suite 038", + "city": "Ericland", + "state": "Ohio", + "zip": "39418", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T00:45:44.491Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 72.61, + "subtotal": 145.22 + }, + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 171.74, + "subtotal": 343.48 + }, + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 147.05, + "subtotal": 294.1 + } + ], + "total_price": 782.8, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 10.43, + "expected_delivery": { + "$date": "2025-05-14T00:45:44.491Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.417Z" + } + }, + { + "order_id": "7e65cad2-92b7-4d1a-bb0e-7294f2714194", + "customer": { + "customer_id": "3815aa4e-af8f-4161-a9c1-a5f58ea98e82", + "name": "Meghan Haney", + "email": "xporter@example.org", + "phone": "+1-377-301-9996x32704", + "address": { + "street": "6630 Daniel Squares Apt. 952", + "city": "South Jade", + "state": "Rhode Island", + "zip": "53057", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T16:37:25.184Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 173.87, + "subtotal": 173.87 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 152.08, + "subtotal": 304.16 + }, + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 106.82, + "subtotal": 106.82 + } + ], + "total_price": 584.85, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 10.48, + "expected_delivery": { + "$date": "2025-05-12T16:37:25.184Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.417Z" + } + }, + { + "order_id": "eed9780d-0eb4-4fb0-b01b-37aaff301311", + "customer": { + "customer_id": "8c8c3e3e-5bd2-4913-a93e-49f714f3e16c", + "name": "Jessica Jones", + "email": "john75@example.net", + "phone": "001-731-614-6506", + "address": { + "street": "4892 Benjamin Tunnel Apt. 262", + "city": "Port Nicholas", + "state": "Wisconsin", + "zip": "68842", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T18:15:01.542Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 173.99, + "subtotal": 173.99 + }, + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 114.5, + "subtotal": 114.5 + }, + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 85.45, + "subtotal": 85.45 + } + ], + "total_price": 373.94, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 9.23, + "expected_delivery": { + "$date": "2025-05-14T18:15:01.542Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.417Z" + } + }, + { + "order_id": "39914490-2787-4926-b2e6-f8b1b54f0ddd", + "customer": { + "customer_id": "c54158bd-58d8-4f5c-81a6-3084035f96b6", + "name": "Casey Hunter", + "email": "brandonguerrero@example.com", + "phone": "(646)220-6367x3986", + "address": { + "street": "910 Mark Stream Apt. 485", + "city": "Krystalborough", + "state": "Maine", + "zip": "27068", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T06:47:36.402Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 1, + "unit_price": 124.64, + "subtotal": 124.64 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 164.04, + "subtotal": 164.04 + }, + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 138.85, + "subtotal": 277.7 + } + ], + "total_price": 566.38, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 16.96, + "expected_delivery": { + "$date": "2025-05-14T06:47:36.402Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.418Z" + } + }, + { + "order_id": "d3fd390b-30be-4828-a64b-691aaa822681", + "customer": { + "customer_id": "1626a3b5-972d-4dd4-a457-3fd4899fee90", + "name": "Crystal Edwards", + "email": "ushaw@example.com", + "phone": "001-645-359-8634x2797", + "address": { + "street": "9817 Morgan Station Suite 529", + "city": "Port Tamara", + "state": "Virginia", + "zip": "72894", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T11:55:52.371Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 73.84, + "subtotal": 147.68 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 89.27, + "subtotal": 89.27 + }, + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 115.42, + "subtotal": 230.84 + } + ], + "total_price": 467.79, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 17.65, + "expected_delivery": { + "$date": "2025-05-08T11:55:52.371Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.418Z" + } + }, + { + "order_id": "31c69f76-37ff-4af0-926c-28ab38229c4b", + "customer": { + "customer_id": "78569774-914d-4a22-af53-47a62400bbf8", + "name": "Mr. Tyler Ramirez", + "email": "johnsonlaura@example.com", + "phone": "215.905.3544x2656", + "address": { + "street": "5115 Amy Road Suite 022", + "city": "Jacobside", + "state": "Washington", + "zip": "36791", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T06:58:07.843Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 81.65, + "subtotal": 81.65 + } + ], + "total_price": 81.65, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 19.0, + "expected_delivery": { + "$date": "2025-05-13T06:58:07.843Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.418Z" + } + }, + { + "order_id": "4b6fda1a-45bf-45fa-99d7-75f3876bba27", + "customer": { + "customer_id": "c5696f34-f291-486f-af93-c6184afd505c", + "name": "Chad Bryant", + "email": "heidi86@example.org", + "phone": "224.681.3515x55233", + "address": { + "street": "35990 Alexander Trace", + "city": "Mayerfurt", + "state": "Arkansas", + "zip": "54023", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T14:29:04.325Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 73.18, + "subtotal": 73.18 + } + ], + "total_price": 73.18, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 13.32, + "expected_delivery": { + "$date": "2025-05-16T14:29:04.325Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.418Z" + } + }, + { + "order_id": "81e3cf00-9131-4eff-8c5b-d3dadc72c5fb", + "customer": { + "customer_id": "f5f6c134-8a79-47d7-9c65-767f8664b5cd", + "name": "Courtney Vasquez", + "email": "uanderson@example.com", + "phone": "+1-606-470-5363x7617", + "address": { + "street": "08609 Gregory Island", + "city": "Suzanneburgh", + "state": "Georgia", + "zip": "23878", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T16:42:33.337Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 62.55, + "subtotal": 62.55 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 131.82, + "subtotal": 131.82 + }, + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 71.44, + "subtotal": 142.88 + } + ], + "total_price": 337.25, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 19.69, + "expected_delivery": { + "$date": "2025-05-19T16:42:33.337Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.419Z" + } + }, + { + "order_id": "850a050d-a84e-4d10-aefd-56292e34303e", + "customer": { + "customer_id": "0b53342f-5105-44a7-8bfd-64ea7e925329", + "name": "Marvin Knight", + "email": "kimberly43@example.com", + "phone": "713-243-9952x4812", + "address": { + "street": "2636 Frey Drive", + "city": "Tiffanyville", + "state": "Virginia", + "zip": "16547", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T10:07:12.977Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 152.9, + "subtotal": 305.8 + }, + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 104.29, + "subtotal": 104.29 + } + ], + "total_price": 410.09, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 18.24, + "expected_delivery": { + "$date": "2025-05-11T10:07:12.977Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.419Z" + } + }, + { + "order_id": "1918c7f6-2154-43a5-b5f7-f2f59d510901", + "customer": { + "customer_id": "0d98a012-3c2f-4b01-a53b-16863ae19cfe", + "name": "Crystal Hammond", + "email": "melanie36@example.com", + "phone": "(433)214-2020x71698", + "address": { + "street": "44482 Patrick Junctions Suite 391", + "city": "Whiteshire", + "state": "New York", + "zip": "29187", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T02:16:35.608Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 1, + "unit_price": 124.12, + "subtotal": 124.12 + }, + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 2, + "unit_price": 174.95, + "subtotal": 349.9 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 97.74, + "subtotal": 195.48 + } + ], + "total_price": 669.5, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 17.22, + "expected_delivery": { + "$date": "2025-05-11T02:16:35.608Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.419Z" + } + }, + { + "order_id": "8fefc91d-7698-4d9e-ac73-8e112e77cffb", + "customer": { + "customer_id": "f32d33a1-400a-4f0c-aa60-b7ec474d0f66", + "name": "Donald Love", + "email": "buchananhannah@example.org", + "phone": "263-414-4930x05595", + "address": { + "street": "413 Valerie Hill Suite 067", + "city": "Corymouth", + "state": "Mississippi", + "zip": "92070", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T11:01:29.446Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 82.23, + "subtotal": 164.46 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 80.87, + "subtotal": 80.87 + }, + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 162.64, + "subtotal": 162.64 + } + ], + "total_price": 407.97, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 11.18, + "expected_delivery": { + "$date": "2025-05-17T11:01:29.446Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.419Z" + } + }, + { + "order_id": "8a349a95-3fac-4a71-b551-0e39055dc716", + "customer": { + "customer_id": "a0de34f7-15c6-4b0b-b5e0-07913cb419ad", + "name": "Denise Garcia", + "email": "shermanjames@example.net", + "phone": "001-327-351-7467x7152", + "address": { + "street": "324 Joseph Village", + "city": "Cynthiahaven", + "state": "Nevada", + "zip": "50505", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T18:15:00.098Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 2, + "unit_price": 128.43, + "subtotal": 256.86 + } + ], + "total_price": 256.86, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 5.59, + "expected_delivery": { + "$date": "2025-05-11T18:15:00.098Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.419Z" + } + }, + { + "order_id": "127c62b8-cec0-44b1-bca2-121f0f9c9218", + "customer": { + "customer_id": "7358ed2a-9462-4bf8-b6fa-e14471576a55", + "name": "Zachary Wright", + "email": "danielle48@example.com", + "phone": "(348)450-4887x298", + "address": { + "street": "7681 Boyle Island", + "city": "Lake Ariel", + "state": "Arizona", + "zip": "22560", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T14:24:53.200Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 72.05, + "subtotal": 72.05 + }, + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 60.74, + "subtotal": 121.48 + } + ], + "total_price": 193.53, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 6.41, + "expected_delivery": { + "$date": "2025-05-12T14:24:53.200Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.420Z" + } + }, + { + "order_id": "5608cb2d-4e17-422e-886d-bcd3d2dec252", + "customer": { + "customer_id": "3beb6c98-bffe-4e7d-ae8a-9261fe433f9b", + "name": "Jill Walton", + "email": "robinsonpamela@example.org", + "phone": "847-735-0450x82774", + "address": { + "street": "57898 Michelle Courts Suite 925", + "city": "Port Carlos", + "state": "Wyoming", + "zip": "74390", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T22:16:30.701Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 136.98, + "subtotal": 273.96 + }, + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 100.36, + "subtotal": 200.72 + } + ], + "total_price": 474.68, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 12.0, + "expected_delivery": { + "$date": "2025-05-17T22:16:30.701Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.420Z" + } + }, + { + "order_id": "5f692489-873f-4122-943b-801ce277a763", + "customer": { + "customer_id": "9a84e4ce-8edd-43b3-b7ce-726266133802", + "name": "Chelsea Dean", + "email": "abarr@example.net", + "phone": "922.745.5194x8381", + "address": { + "street": "6491 Miller Gardens Apt. 803", + "city": "Scottstad", + "state": "Maryland", + "zip": "14079", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T10:16:57.399Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 72.74, + "subtotal": 72.74 + } + ], + "total_price": 72.74, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 19.06, + "expected_delivery": { + "$date": "2025-05-17T10:16:57.399Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.420Z" + } + }, + { + "order_id": "e5e38175-3d6a-4be2-b1fc-f1c77bc80e11", + "customer": { + "customer_id": "b26857d4-bf4e-44d2-a2e6-fddd23dd4565", + "name": "Ashley Lee", + "email": "patellisa@example.net", + "phone": "(805)984-3388", + "address": { + "street": "3450 Walker Mount", + "city": "West Ralphmouth", + "state": "Ohio", + "zip": "85714", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T08:32:15.126Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 169.65, + "subtotal": 169.65 + } + ], + "total_price": 169.65, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 17.06, + "expected_delivery": { + "$date": "2025-05-09T08:32:15.126Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.420Z" + } + }, + { + "order_id": "a77d403a-beab-4b85-9bdb-79c229a24194", + "customer": { + "customer_id": "0378d69a-8181-490e-ab16-177b08cca8d1", + "name": "Gavin Moore", + "email": "gabbott@example.org", + "phone": "530-392-6056", + "address": { + "street": "5694 Robinson Springs Suite 490", + "city": "New Sarah", + "state": "Delaware", + "zip": "27851", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T21:14:43.447Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 159.13, + "subtotal": 318.26 + }, + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 179.1, + "subtotal": 179.1 + }, + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 125.75, + "subtotal": 125.75 + } + ], + "total_price": 623.11, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 15.96, + "expected_delivery": { + "$date": "2025-05-17T21:14:43.447Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.421Z" + } + }, + { + "order_id": "33071920-0b2f-485b-be86-184bb11ad1fb", + "customer": { + "customer_id": "6fa0b1e9-168d-4204-bc2d-3227e01e5610", + "name": "Thomas Obrien", + "email": "rmartin@example.net", + "phone": "(823)666-6165", + "address": { + "street": "90606 Thomas Centers", + "city": "West Cynthia", + "state": "Texas", + "zip": "72904", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T07:43:39.741Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 2, + "unit_price": 169.31, + "subtotal": 338.62 + }, + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 2, + "unit_price": 69.78, + "subtotal": 139.56 + }, + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 99.78, + "subtotal": 99.78 + } + ], + "total_price": 577.96, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 8.3, + "expected_delivery": { + "$date": "2025-05-12T07:43:39.741Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.421Z" + } + }, + { + "order_id": "edd96b51-9164-4dbb-93e8-2aa249ad70cb", + "customer": { + "customer_id": "83008daf-0fe3-4569-bdd3-1cb71285af5b", + "name": "Katherine Richardson", + "email": "charles25@example.net", + "phone": "001-265-730-4077x684", + "address": { + "street": "5545 Nicholas Dam Apt. 548", + "city": "Ashleystad", + "state": "Kentucky", + "zip": "43480", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T14:49:10.541Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 1, + "unit_price": 61.82, + "subtotal": 61.82 + } + ], + "total_price": 61.82, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 10.46, + "expected_delivery": { + "$date": "2025-05-16T14:49:10.541Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.421Z" + } + }, + { + "order_id": "0ab8dec3-e982-484e-a719-08217424d024", + "customer": { + "customer_id": "ffb3dcec-4ce0-4227-8e18-93ece8e9be46", + "name": "Aaron Lane", + "email": "housebrian@example.org", + "phone": "266.994.6999", + "address": { + "street": "82213 Miller Street", + "city": "Solishaven", + "state": "North Dakota", + "zip": "46577", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T02:14:10.681Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 132.62, + "subtotal": 265.24 + }, + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 99.03, + "subtotal": 198.06 + } + ], + "total_price": 463.3, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 6.58, + "expected_delivery": { + "$date": "2025-05-18T02:14:10.681Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.421Z" + } + }, + { + "order_id": "0ebae7cd-577f-4aa3-b842-a210016c6ba3", + "customer": { + "customer_id": "4ae8834e-4fb1-4113-991e-85e3e3f16091", + "name": "Hannah Wagner", + "email": "spencerkaren@example.org", + "phone": "6202992792", + "address": { + "street": "053 Hancock Lock Apt. 464", + "city": "New Matthewmouth", + "state": "Nebraska", + "zip": "89238", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T13:33:51.860Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 80.83, + "subtotal": 80.83 + } + ], + "total_price": 80.83, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 11.3, + "expected_delivery": { + "$date": "2025-05-13T13:33:51.860Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.421Z" + } + }, + { + "order_id": "91c90d81-b1f8-44fc-88df-d2fcf03dc1ca", + "customer": { + "customer_id": "174773be-0e13-42c3-8c97-4f32fde90399", + "name": "Mark Cox", + "email": "thomaseric@example.net", + "phone": "001-378-248-1686x41618", + "address": { + "street": "50284 Poole Summit Apt. 313", + "city": "Amyport", + "state": "Mississippi", + "zip": "38453", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T02:17:48.389Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 137.66, + "subtotal": 275.32 + } + ], + "total_price": 275.32, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 10.94, + "expected_delivery": { + "$date": "2025-05-14T02:17:48.389Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.422Z" + } + }, + { + "order_id": "096deb34-8b20-4e56-96e4-d9057375bf64", + "customer": { + "customer_id": "ff10fdd6-29f5-44c1-a7d4-048df031af13", + "name": "Anthony Hood", + "email": "michelle19@example.com", + "phone": "565.865.5344", + "address": { + "street": "439 Brooks Plaza", + "city": "Lake Timothychester", + "state": "Arizona", + "zip": "51144", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T08:00:30.733Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 146.41, + "subtotal": 292.82 + }, + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 148.91, + "subtotal": 297.82 + } + ], + "total_price": 590.64, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 17.09, + "expected_delivery": { + "$date": "2025-05-10T08:00:30.733Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.422Z" + } + }, + { + "order_id": "2ebb7c03-6d1e-4701-bb87-1ed973fc47e1", + "customer": { + "customer_id": "96d2ef13-a2ae-4e03-85ec-ee34fbfc7ed1", + "name": "Karen Martinez", + "email": "kristinacrane@example.com", + "phone": "307.525.8797x57694", + "address": { + "street": "7830 Justin Shore", + "city": "West Sean", + "state": "Arkansas", + "zip": "48181", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T16:35:51.855Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 63.48, + "subtotal": 126.96 + }, + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 64.22, + "subtotal": 128.44 + } + ], + "total_price": 255.4, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 6.87, + "expected_delivery": { + "$date": "2025-05-13T16:35:51.855Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.422Z" + } + }, + { + "order_id": "122515c4-abb7-4e6f-a671-542e8f032e10", + "customer": { + "customer_id": "a2b68871-eed8-4ce7-ac3a-a2570c239d2e", + "name": "William Long", + "email": "eric92@example.com", + "phone": "979-356-5585x29682", + "address": { + "street": "23825 Guzman Light", + "city": "Carolynton", + "state": "Virginia", + "zip": "02724", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T22:35:30.113Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 64.12, + "subtotal": 128.24 + }, + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 108.93, + "subtotal": 108.93 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 73.26, + "subtotal": 146.52 + } + ], + "total_price": 383.69, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 6.05, + "expected_delivery": { + "$date": "2025-05-12T22:35:30.113Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.422Z" + } + }, + { + "order_id": "90a6a1c3-8d2d-4b8f-83a5-a990029a511b", + "customer": { + "customer_id": "760cd1b3-fc61-4e20-83d3-11d157bf9db8", + "name": "Jenna Smith", + "email": "fmedina@example.net", + "phone": "(431)947-8125x0296", + "address": { + "street": "91468 Angela Stravenue", + "city": "Martinezport", + "state": "Indiana", + "zip": "11395", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T11:32:29.567Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 64.96, + "subtotal": 129.92 + }, + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 1, + "unit_price": 163.45, + "subtotal": 163.45 + }, + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 2, + "unit_price": 121.29, + "subtotal": 242.58 + } + ], + "total_price": 535.95, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 17.95, + "expected_delivery": { + "$date": "2025-05-16T11:32:29.567Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.423Z" + } + }, + { + "order_id": "3e5edb53-0a25-49c3-a57f-fbc019bf9acf", + "customer": { + "customer_id": "0dc9b0cc-ef2a-4e3f-81a9-f6bd63e55bb4", + "name": "Michelle Brock", + "email": "ucarlson@example.net", + "phone": "283-897-7000", + "address": { + "street": "789 Edwin Circle Apt. 710", + "city": "Jenniferchester", + "state": "Louisiana", + "zip": "49184", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T22:50:14.929Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 87.09, + "subtotal": 87.09 + }, + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 114.1, + "subtotal": 114.1 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 86.13, + "subtotal": 172.26 + } + ], + "total_price": 373.45, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 9.56, + "expected_delivery": { + "$date": "2025-05-10T22:50:14.929Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.423Z" + } + }, + { + "order_id": "cad476c9-bda5-4efe-8611-610c3ee4dbfe", + "customer": { + "customer_id": "69d8d3a9-6932-407f-a430-2624c4c1ef44", + "name": "Troy Weaver", + "email": "isexton@example.com", + "phone": "984.429.4454x14279", + "address": { + "street": "50307 Michael Flat Suite 007", + "city": "West Annette", + "state": "Pennsylvania", + "zip": "27872", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T20:21:04.634Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 1, + "unit_price": 116.23, + "subtotal": 116.23 + }, + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 124.93, + "subtotal": 249.86 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 148.96, + "subtotal": 148.96 + } + ], + "total_price": 515.05, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 10.6, + "expected_delivery": { + "$date": "2025-05-13T20:21:04.634Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.423Z" + } + }, + { + "order_id": "f1409c21-88c5-4a9e-93be-1a41d170c395", + "customer": { + "customer_id": "32f4cc37-b264-4cf1-b052-44fd80f12a75", + "name": "Jennifer Ray", + "email": "willie53@example.com", + "phone": "252-678-4139x64301", + "address": { + "street": "553 Tiffany Turnpike Suite 298", + "city": "Campbellmouth", + "state": "New Mexico", + "zip": "36332", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T21:34:59.324Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 125.73, + "subtotal": 125.73 + }, + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 94.81, + "subtotal": 94.81 + }, + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 1, + "unit_price": 148.25, + "subtotal": 148.25 + } + ], + "total_price": 368.79, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 11.74, + "expected_delivery": { + "$date": "2025-05-16T21:34:59.324Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.423Z" + } + }, + { + "order_id": "9e150b57-1aae-43d3-b87b-4cab9a45b05f", + "customer": { + "customer_id": "9fabb062-fb63-4948-8dde-e55920dd0805", + "name": "Cheryl Rogers", + "email": "greenchristine@example.com", + "phone": "845-370-9323x2118", + "address": { + "street": "30157 Daniel Views", + "city": "Rodriguezside", + "state": "Utah", + "zip": "76202", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T08:36:43.865Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 171.83, + "subtotal": 343.66 + }, + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 92.44, + "subtotal": 92.44 + }, + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 133.57, + "subtotal": 133.57 + } + ], + "total_price": 569.67, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 15.7, + "expected_delivery": { + "$date": "2025-05-12T08:36:43.865Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.424Z" + } + }, + { + "order_id": "b9b46f00-b482-4910-829c-d1d9282d28e5", + "customer": { + "customer_id": "c7585333-b79f-4326-8682-a4eb34dfe277", + "name": "Kristen Cantrell", + "email": "deleontina@example.org", + "phone": "596.784.8917x48118", + "address": { + "street": "784 Medina Ville", + "city": "Port Christine", + "state": "Delaware", + "zip": "83085", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T22:53:35.093Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 89.49, + "subtotal": 178.98 + } + ], + "total_price": 178.98, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 7.88, + "expected_delivery": { + "$date": "2025-05-17T22:53:35.093Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.424Z" + } + }, + { + "order_id": "e2e15e1e-2887-48b4-a419-cd9ce7b18c2a", + "customer": { + "customer_id": "c25d8987-b4e8-43a8-8e0f-c95eff44ef36", + "name": "Dalton Thomas", + "email": "qpierce@example.org", + "phone": "(372)952-8274", + "address": { + "street": "190 Bianca Track Suite 721", + "city": "Meyersville", + "state": "Iowa", + "zip": "71465", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T14:24:10.558Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 138.92, + "subtotal": 277.84 + } + ], + "total_price": 277.84, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 17.65, + "expected_delivery": { + "$date": "2025-05-11T14:24:10.558Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.424Z" + } + }, + { + "order_id": "71218aee-15e4-49e5-8d1c-e7d7253e6967", + "customer": { + "customer_id": "1b36c648-c4ca-49ac-9407-2bfff6ea3022", + "name": "Phillip Adams", + "email": "traviswoods@example.org", + "phone": "(643)504-6015x4977", + "address": { + "street": "27355 Carolyn Junctions Apt. 906", + "city": "Lake Alicia", + "state": "Pennsylvania", + "zip": "52800", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T10:22:23.246Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 154.73, + "subtotal": 309.46 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 159.4, + "subtotal": 159.4 + } + ], + "total_price": 468.86, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 5.64, + "expected_delivery": { + "$date": "2025-05-12T10:22:23.246Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.424Z" + } + }, + { + "order_id": "c646fa0c-d198-4a9a-a699-b1ece905da09", + "customer": { + "customer_id": "dd6bd5b2-b6b3-4c21-bdfe-1293a86b1e81", + "name": "Megan Wilson", + "email": "grodgers@example.org", + "phone": "575-995-1869x835", + "address": { + "street": "310 Hill Dam Suite 465", + "city": "Pricetown", + "state": "Rhode Island", + "zip": "17821", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T11:18:47.760Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 75.58, + "subtotal": 75.58 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 144.71, + "subtotal": 144.71 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 162.87, + "subtotal": 162.87 + } + ], + "total_price": 383.16, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 9.36, + "expected_delivery": { + "$date": "2025-05-20T11:18:47.760Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.425Z" + } + }, + { + "order_id": "0ed85b8e-12cf-4bf0-a763-cf9dee7a50ff", + "customer": { + "customer_id": "76c22755-5809-4dc5-9c5f-f7e19054a65e", + "name": "Stacey Morgan", + "email": "vasquezbreanna@example.net", + "phone": "6592271116", + "address": { + "street": "265 Cynthia Canyon", + "city": "Caroltown", + "state": "Kansas", + "zip": "47019", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T09:09:30.999Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 174.9, + "subtotal": 349.8 + } + ], + "total_price": 349.8, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 16.42, + "expected_delivery": { + "$date": "2025-05-19T09:09:30.999Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.425Z" + } + }, + { + "order_id": "ae187828-6987-434b-b524-270e10bdc0b7", + "customer": { + "customer_id": "5109b281-bc7d-4a67-9e5b-76ab492d5e91", + "name": "Wendy Hayes", + "email": "unelson@example.com", + "phone": "(967)550-2079", + "address": { + "street": "07977 Montgomery Stravenue", + "city": "Holderhaven", + "state": "Maryland", + "zip": "65725", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T15:14:52.300Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 90.54, + "subtotal": 181.08 + } + ], + "total_price": 181.08, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 19.87, + "expected_delivery": { + "$date": "2025-05-19T15:14:52.300Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.425Z" + } + }, + { + "order_id": "d5b5173e-d477-48d1-806c-b8f6f059144e", + "customer": { + "customer_id": "43083aaf-46da-452c-b478-f644cb2667ce", + "name": "William Beck", + "email": "tyrone87@example.org", + "phone": "586-990-7322", + "address": { + "street": "739 Fields Parks", + "city": "East Toddfort", + "state": "Idaho", + "zip": "88369", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T23:28:02.836Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 98.94, + "subtotal": 98.94 + } + ], + "total_price": 98.94, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 6.04, + "expected_delivery": { + "$date": "2025-05-11T23:28:02.836Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.425Z" + } + }, + { + "order_id": "8fe0a906-4958-444c-96fa-7fe4ba7abbeb", + "customer": { + "customer_id": "52ebda90-d78b-4ca5-ba73-64978677c72f", + "name": "Michele King", + "email": "angela82@example.com", + "phone": "630.643.9314x390", + "address": { + "street": "8068 Renee Dale Apt. 251", + "city": "Justinborough", + "state": "New Hampshire", + "zip": "46430", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T11:42:15.323Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 1, + "unit_price": 127.18, + "subtotal": 127.18 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 148.96, + "subtotal": 148.96 + }, + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 135.48, + "subtotal": 270.96 + } + ], + "total_price": 547.1, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 10.14, + "expected_delivery": { + "$date": "2025-05-12T11:42:15.323Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.425Z" + } + }, + { + "order_id": "3e5cbba3-6d20-4d5a-bb56-14e6e00b8ce3", + "customer": { + "customer_id": "09fa2cd1-70ec-4df5-9351-0038f911e211", + "name": "Kaylee Young", + "email": "cjones@example.org", + "phone": "675.779.1920", + "address": { + "street": "97372 Huffman Lake", + "city": "Perezfort", + "state": "Wyoming", + "zip": "58812", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T23:16:12.826Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 97.5, + "subtotal": 97.5 + }, + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 1, + "unit_price": 144.73, + "subtotal": 144.73 + }, + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 150.84, + "subtotal": 150.84 + } + ], + "total_price": 393.07, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 6.57, + "expected_delivery": { + "$date": "2025-05-14T23:16:12.826Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.426Z" + } + }, + { + "order_id": "081dd0dd-fa92-402a-b574-2fd0c3fb2ec0", + "customer": { + "customer_id": "b69ebafd-d077-4b52-a227-a10755826a3c", + "name": "Mr. Gary Owens", + "email": "christensennicole@example.net", + "phone": "586-326-9870x5967", + "address": { + "street": "6680 Angela Trafficway", + "city": "East Stanleymouth", + "state": "Alabama", + "zip": "65578", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T07:35:34.830Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 66.42, + "subtotal": 132.84 + } + ], + "total_price": 132.84, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 18.78, + "expected_delivery": { + "$date": "2025-05-10T07:35:34.830Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.426Z" + } + }, + { + "order_id": "37111441-208d-4ff5-b892-6e79927dbd82", + "customer": { + "customer_id": "f3a73672-deef-47cc-aab5-b026253a9257", + "name": "Destiny Fernandez", + "email": "debra08@example.net", + "phone": "(340)513-8241x7270", + "address": { + "street": "99150 Levy Crest Suite 753", + "city": "Cobbtown", + "state": "Florida", + "zip": "13025", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T14:09:11.552Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 98.12, + "subtotal": 196.24 + } + ], + "total_price": 196.24, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 11.84, + "expected_delivery": { + "$date": "2025-05-21T14:09:11.552Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.426Z" + } + }, + { + "order_id": "9f3f54a0-5176-41da-afec-7a1785cf7b90", + "customer": { + "customer_id": "34f65676-7770-4041-969c-6370c46f22c4", + "name": "Calvin Reid", + "email": "jodi93@example.org", + "phone": "6259448068", + "address": { + "street": "39978 Brianna Extensions", + "city": "West Samantha", + "state": "South Dakota", + "zip": "50709", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T06:59:35.053Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 149.83, + "subtotal": 299.66 + } + ], + "total_price": 299.66, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 11.43, + "expected_delivery": { + "$date": "2025-05-15T06:59:35.053Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.426Z" + } + }, + { + "order_id": "b841880a-68b2-4473-bcb6-797bc66a0213", + "customer": { + "customer_id": "b7e14301-18dd-419d-bbec-a961490a09e0", + "name": "James Estrada", + "email": "smithanthony@example.com", + "phone": "(597)691-9132x979", + "address": { + "street": "05270 Margaret Valley", + "city": "New Raymond", + "state": "Delaware", + "zip": "21362", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T11:39:55.135Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 96.75, + "subtotal": 96.75 + } + ], + "total_price": 96.75, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 6.89, + "expected_delivery": { + "$date": "2025-05-14T11:39:55.135Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.426Z" + } + }, + { + "order_id": "00bd4025-ab5a-4c9e-bbee-6c6dccfba386", + "customer": { + "customer_id": "82e59fb8-8353-4cd8-88a5-3db4a9dff330", + "name": "Christopher Serrano", + "email": "robertraymond@example.net", + "phone": "327.635.1549x579", + "address": { + "street": "1120 Kline Plains", + "city": "Jacobland", + "state": "North Carolina", + "zip": "49608", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T20:22:06.749Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 178.89, + "subtotal": 178.89 + } + ], + "total_price": 178.89, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 8.1, + "expected_delivery": { + "$date": "2025-05-09T20:22:06.749Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.427Z" + } + }, + { + "order_id": "e505eaf9-0ff8-418a-a5e1-1d2bfc0ff540", + "customer": { + "customer_id": "1955d388-6c95-4d15-a2d3-011653d43384", + "name": "Jacob Brown", + "email": "nathanwilliams@example.com", + "phone": "374.419.5954x776", + "address": { + "street": "94129 Sheri Mount", + "city": "South Michael", + "state": "North Dakota", + "zip": "89038", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T06:51:47.626Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 2, + "unit_price": 78.36, + "subtotal": 156.72 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 75.08, + "subtotal": 150.16 + } + ], + "total_price": 306.88, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 12.76, + "expected_delivery": { + "$date": "2025-05-16T06:51:47.626Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.427Z" + } + }, + { + "order_id": "6572f086-781c-4f5d-9780-dc23880ea28c", + "customer": { + "customer_id": "9c61fddb-36b8-43c9-8065-c46d6063f7c7", + "name": "Jennifer Hernandez", + "email": "erinhamilton@example.net", + "phone": "001-844-838-8167x926", + "address": { + "street": "801 Mullen Points Suite 918", + "city": "West Christopher", + "state": "Rhode Island", + "zip": "27204", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T09:12:47.659Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 72.23, + "subtotal": 72.23 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 1, + "unit_price": 87.61, + "subtotal": 87.61 + }, + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 66.0, + "subtotal": 66.0 + } + ], + "total_price": 225.84, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 13.56, + "expected_delivery": { + "$date": "2025-05-14T09:12:47.659Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.427Z" + } + }, + { + "order_id": "6a47162a-f518-4334-ba46-9c139c84f5ff", + "customer": { + "customer_id": "3893b2de-6613-4fa5-844f-f31c468ab983", + "name": "Olivia Montgomery", + "email": "jorge59@example.com", + "phone": "977-843-3903x9907", + "address": { + "street": "630 Jason Avenue Apt. 900", + "city": "Marymouth", + "state": "Illinois", + "zip": "66342", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T08:47:34.264Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 2, + "unit_price": 176.3, + "subtotal": 352.6 + } + ], + "total_price": 352.6, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 14.49, + "expected_delivery": { + "$date": "2025-05-17T08:47:34.264Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.427Z" + } + }, + { + "order_id": "7fa6a7c0-354a-4330-9e39-fa7663c6a412", + "customer": { + "customer_id": "45898f80-648c-4c4f-a6d8-01452d4991a0", + "name": "Ryan Escobar", + "email": "ehunter@example.com", + "phone": "001-479-272-4154x778", + "address": { + "street": "7545 Carrie Gardens Suite 914", + "city": "Stevenport", + "state": "Louisiana", + "zip": "07663", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T18:21:36.855Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 1, + "unit_price": 153.8, + "subtotal": 153.8 + }, + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 174.5, + "subtotal": 349.0 + }, + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 150.01, + "subtotal": 300.02 + } + ], + "total_price": 802.82, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 8.63, + "expected_delivery": { + "$date": "2025-05-16T18:21:36.855Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.428Z" + } + }, + { + "order_id": "1c3d2625-3205-4934-8219-2c7506d7b431", + "customer": { + "customer_id": "65af4393-7167-43a7-8b8b-fd8786f5165d", + "name": "Michael Bowers", + "email": "kara28@example.org", + "phone": "316-299-8589", + "address": { + "street": "457 Daniel Terrace Suite 233", + "city": "Port Marc", + "state": "Arizona", + "zip": "56016", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T15:22:27.820Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 174.56, + "subtotal": 349.12 + } + ], + "total_price": 349.12, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 11.12, + "expected_delivery": { + "$date": "2025-05-12T15:22:27.820Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.428Z" + } + }, + { + "order_id": "4d68c84f-6695-4d49-af5b-b78efbb3c2e8", + "customer": { + "customer_id": "9081b967-e442-498a-98ce-a4546b9c37dc", + "name": "John Baker", + "email": "anthonyzimmerman@example.com", + "phone": "944.892.7970x0967", + "address": { + "street": "71156 Madison Extensions", + "city": "West Brittanychester", + "state": "West Virginia", + "zip": "13039", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T02:05:42.402Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 75.05, + "subtotal": 75.05 + }, + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 131.6, + "subtotal": 263.2 + } + ], + "total_price": 338.25, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 7.75, + "expected_delivery": { + "$date": "2025-05-11T02:05:42.402Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.428Z" + } + }, + { + "order_id": "ebdc5883-4dd4-4f61-a111-02fe6b81d025", + "customer": { + "customer_id": "956dc54c-18fc-4b12-8cd7-ce3ad32c1b6e", + "name": "Sheri Mullen", + "email": "johnsonstacey@example.com", + "phone": "(602)596-8788", + "address": { + "street": "6760 Michelle Loop", + "city": "East Tyler", + "state": "North Carolina", + "zip": "39335", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T04:45:55.386Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 127.62, + "subtotal": 255.24 + }, + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 90.4, + "subtotal": 90.4 + } + ], + "total_price": 345.64, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 12.32, + "expected_delivery": { + "$date": "2025-05-20T04:45:55.386Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.428Z" + } + }, + { + "order_id": "c165fcde-ba66-40e9-9a1d-bc0d1b7eee9e", + "customer": { + "customer_id": "a99aeb22-5313-4a27-93c6-1db41246e51f", + "name": "Jason Guerrero", + "email": "martinstephanie@example.net", + "phone": "983-480-0314x12797", + "address": { + "street": "574 Owen Island Apt. 648", + "city": "Lindafurt", + "state": "New Hampshire", + "zip": "67430", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T00:02:59.051Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 75.35, + "subtotal": 150.7 + }, + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 130.41, + "subtotal": 130.41 + } + ], + "total_price": 281.11, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 15.39, + "expected_delivery": { + "$date": "2025-05-17T00:02:59.051Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.429Z" + } + }, + { + "order_id": "fe188dbc-6d3f-4f9a-aa5e-beb0b5ffe789", + "customer": { + "customer_id": "b1e80f93-00e7-46a9-ac82-30d87043c59d", + "name": "Cynthia Harris", + "email": "ronniemiller@example.com", + "phone": "001-837-206-5426", + "address": { + "street": "92796 Rollins Station", + "city": "West Williammouth", + "state": "Ohio", + "zip": "64419", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T03:35:11.031Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 87.41, + "subtotal": 174.82 + }, + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 2, + "unit_price": 113.22, + "subtotal": 226.44 + } + ], + "total_price": 401.26, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 12.36, + "expected_delivery": { + "$date": "2025-05-17T03:35:11.031Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.429Z" + } + }, + { + "order_id": "5bae90a6-8ad5-4140-a6aa-e51f56127d19", + "customer": { + "customer_id": "c3898d40-cd70-4883-a142-c409068349bd", + "name": "Joseph Flores", + "email": "probinson@example.com", + "phone": "6462961166", + "address": { + "street": "930 Stewart Common", + "city": "New Brent", + "state": "Arizona", + "zip": "75045", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T06:55:37.587Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 68.58, + "subtotal": 68.58 + } + ], + "total_price": 68.58, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 10.22, + "expected_delivery": { + "$date": "2025-05-15T06:55:37.587Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.429Z" + } + }, + { + "order_id": "b105ba31-2897-4d02-9d27-72d06e20dfe3", + "customer": { + "customer_id": "0fd57ecf-1c62-4da4-9192-00799fb723fd", + "name": "Russell Orr", + "email": "schroedertanya@example.com", + "phone": "+1-870-616-2349x809", + "address": { + "street": "49437 Braun Forest Apt. 438", + "city": "Stephenstown", + "state": "Connecticut", + "zip": "70172", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T07:52:59.168Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 179.09, + "subtotal": 179.09 + } + ], + "total_price": 179.09, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 16.33, + "expected_delivery": { + "$date": "2025-05-15T07:52:59.168Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.429Z" + } + }, + { + "order_id": "18e354ee-872e-434b-912c-e3f55d3df8d0", + "customer": { + "customer_id": "7892842f-b3be-4455-bd71-f3f19518839b", + "name": "Tasha Clark", + "email": "qkaufman@example.net", + "phone": "8585620555", + "address": { + "street": "8383 Donald Walk", + "city": "Heatherburgh", + "state": "Washington", + "zip": "47453", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T19:21:45.270Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 168.52, + "subtotal": 168.52 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 117.76, + "subtotal": 235.52 + } + ], + "total_price": 404.04, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 6.12, + "expected_delivery": { + "$date": "2025-05-11T19:21:45.270Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.429Z" + } + }, + { + "order_id": "be3d4d1c-110c-4bec-a26d-ddf7d3557d8a", + "customer": { + "customer_id": "1f258723-9409-4d2c-bb9c-dbf01728b857", + "name": "Rebecca Lindsey", + "email": "geraldmora@example.net", + "phone": "001-397-619-7631x05502", + "address": { + "street": "670 Angela Harbor", + "city": "West Amanda", + "state": "Nebraska", + "zip": "55669", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T03:49:17.740Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 135.19, + "subtotal": 270.38 + }, + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 169.91, + "subtotal": 339.82 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 121.9, + "subtotal": 121.9 + } + ], + "total_price": 732.1, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 19.07, + "expected_delivery": { + "$date": "2025-05-10T03:49:17.740Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.430Z" + } + }, + { + "order_id": "c00b467c-e35a-407f-b354-5309e23827ec", + "customer": { + "customer_id": "abcc1e9f-2548-4a37-9680-fb1ce41e25c3", + "name": "Robert Anderson", + "email": "hharper@example.com", + "phone": "001-501-955-2766x0915", + "address": { + "street": "02398 Palmer Cape Apt. 512", + "city": "Garciaville", + "state": "Colorado", + "zip": "60022", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T01:41:33.334Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 150.29, + "subtotal": 150.29 + } + ], + "total_price": 150.29, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 10.17, + "expected_delivery": { + "$date": "2025-05-18T01:41:33.334Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.430Z" + } + }, + { + "order_id": "965b727e-bdd8-4928-be4d-cbfa3a41b73a", + "customer": { + "customer_id": "e3db01c3-9ce4-4a3f-ae06-b5191f474f6d", + "name": "Jeffery Taylor MD", + "email": "hughespaul@example.org", + "phone": "8867599547", + "address": { + "street": "23641 Emily Road Suite 247", + "city": "Paulberg", + "state": "Maine", + "zip": "34159", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T10:03:17.253Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 159.98, + "subtotal": 319.96 + } + ], + "total_price": 319.96, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 9.23, + "expected_delivery": { + "$date": "2025-05-12T10:03:17.253Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.430Z" + } + }, + { + "order_id": "f7ae12dd-4933-4c7f-8f7a-9bbdad2f6849", + "customer": { + "customer_id": "b20f2d98-1280-45bc-a729-ea33f81b84e7", + "name": "Joseph Joseph", + "email": "davidfernandez@example.org", + "phone": "(991)520-0774x5368", + "address": { + "street": "4808 Barnes Villages Apt. 062", + "city": "South Ashley", + "state": "Pennsylvania", + "zip": "92908", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T15:43:41.979Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 60.36, + "subtotal": 60.36 + } + ], + "total_price": 60.36, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 7.48, + "expected_delivery": { + "$date": "2025-05-13T15:43:41.979Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.430Z" + } + }, + { + "order_id": "b10217a5-4aa0-43d6-bed7-5cfacc134dc1", + "customer": { + "customer_id": "c31d26af-d80a-4166-8d3f-1a79e3d72607", + "name": "Tracy Levine", + "email": "melaniejones@example.net", + "phone": "885-749-8126", + "address": { + "street": "53522 Williams Rapid Suite 139", + "city": "Hawkinsstad", + "state": "Ohio", + "zip": "68797", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T04:22:26.388Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 1, + "unit_price": 93.38, + "subtotal": 93.38 + }, + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 60.84, + "subtotal": 60.84 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 126.87, + "subtotal": 253.74 + } + ], + "total_price": 407.96, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 7.43, + "expected_delivery": { + "$date": "2025-05-17T04:22:26.388Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.431Z" + } + }, + { + "order_id": "63955dc5-45f9-4307-8bcf-2808b1abf63d", + "customer": { + "customer_id": "68835ad5-3e02-4f6d-b123-7376f2e6ca1a", + "name": "Ann Ayala", + "email": "jasonbaker@example.com", + "phone": "486.246.0567x08244", + "address": { + "street": "47541 Stephen Points Apt. 627", + "city": "East Joshuamouth", + "state": "Arizona", + "zip": "68887", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T23:21:30.944Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 108.7, + "subtotal": 217.4 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 66.02, + "subtotal": 66.02 + }, + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 60.45, + "subtotal": 120.9 + } + ], + "total_price": 404.32, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 12.94, + "expected_delivery": { + "$date": "2025-05-14T23:21:30.944Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.431Z" + } + }, + { + "order_id": "241798e6-3c2f-4e6c-8bcd-e3f0131b2f5a", + "customer": { + "customer_id": "3e346227-e2f5-4a3a-87e3-27b0b860d4d0", + "name": "Jason Knapp", + "email": "angiemccann@example.com", + "phone": "001-424-681-2654", + "address": { + "street": "810 Michael Springs", + "city": "Saratown", + "state": "Maine", + "zip": "72368", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T10:38:56.452Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 100.28, + "subtotal": 200.56 + }, + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 86.75, + "subtotal": 173.5 + } + ], + "total_price": 374.06, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 9.03, + "expected_delivery": { + "$date": "2025-05-13T10:38:56.452Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.431Z" + } + }, + { + "order_id": "5cf32ca7-65a9-4fd4-8b54-a96cc5c8349f", + "customer": { + "customer_id": "4aad9a3d-e229-4bcf-b380-53a4b28b9326", + "name": "John Cortez", + "email": "duartebrian@example.net", + "phone": "961-743-5059x3513", + "address": { + "street": "6902 Andrews Garden Apt. 661", + "city": "Lake Kristen", + "state": "Maine", + "zip": "39484", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T08:46:11.724Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 84.9, + "subtotal": 169.8 + } + ], + "total_price": 169.8, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 14.97, + "expected_delivery": { + "$date": "2025-05-12T08:46:11.724Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.431Z" + } + }, + { + "order_id": "7a38aac6-a5f4-4926-b403-3452ab2ab015", + "customer": { + "customer_id": "e0d8029c-ad63-4f9b-b08f-f83879d832af", + "name": "Heidi Jensen", + "email": "kellyroberts@example.com", + "phone": "419.889.4829x9702", + "address": { + "street": "066 Abigail Club Suite 099", + "city": "Lake Cynthia", + "state": "Wyoming", + "zip": "66819", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T12:35:51.229Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 148.42, + "subtotal": 296.84 + }, + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 103.76, + "subtotal": 103.76 + }, + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 149.39, + "subtotal": 298.78 + } + ], + "total_price": 699.38, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 11.4, + "expected_delivery": { + "$date": "2025-05-10T12:35:51.229Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.432Z" + } + }, + { + "order_id": "6d15fb6f-0cf0-47f2-bb59-fd28a4cea48b", + "customer": { + "customer_id": "5e9d8506-51bf-46e5-8a4a-eb4cbf19ce8b", + "name": "James Stafford", + "email": "williammann@example.com", + "phone": "6119510403", + "address": { + "street": "426 Shawn Well Apt. 569", + "city": "Watkinsville", + "state": "Utah", + "zip": "54931", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T21:30:25.871Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 63.29, + "subtotal": 126.58 + }, + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 74.46, + "subtotal": 74.46 + } + ], + "total_price": 201.04, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 11.77, + "expected_delivery": { + "$date": "2025-05-13T21:30:25.871Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.432Z" + } + }, + { + "order_id": "ee8089e5-2dad-47c9-82f8-37f9f058468d", + "customer": { + "customer_id": "8ec0a6a3-2682-435f-8735-6a020c6c6758", + "name": "Tracy Park", + "email": "valerie77@example.com", + "phone": "416.977.1231", + "address": { + "street": "101 Smith Mountains", + "city": "Carterfurt", + "state": "Maryland", + "zip": "09826", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T13:56:03.405Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 120.65, + "subtotal": 241.3 + }, + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 151.19, + "subtotal": 151.19 + } + ], + "total_price": 392.49, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 6.88, + "expected_delivery": { + "$date": "2025-05-12T13:56:03.405Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.432Z" + } + }, + { + "order_id": "0e5e0f89-fb7f-49bc-a7f2-be3ba96a0789", + "customer": { + "customer_id": "9de66c8a-c7f5-4182-9270-a2b13a4a2371", + "name": "David Watson", + "email": "brandoncarney@example.com", + "phone": "455-201-5166", + "address": { + "street": "9976 Johnson Fields", + "city": "Spencerview", + "state": "Nebraska", + "zip": "55216", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T07:15:28.682Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 145.62, + "subtotal": 145.62 + }, + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 1, + "unit_price": 107.02, + "subtotal": 107.02 + } + ], + "total_price": 252.64, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 7.96, + "expected_delivery": { + "$date": "2025-05-16T07:15:28.682Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.432Z" + } + }, + { + "order_id": "36ea51b2-33c3-45c2-8823-32da21e3ccf6", + "customer": { + "customer_id": "1e748958-6d80-4e59-85a1-9d89e363ba7c", + "name": "Carl Harvey", + "email": "christina93@example.org", + "phone": "449-226-1159x5722", + "address": { + "street": "959 Angela Plain", + "city": "North Luis", + "state": "Maryland", + "zip": "94171", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T20:48:59.289Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 60.44, + "subtotal": 60.44 + }, + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 60.14, + "subtotal": 120.28 + } + ], + "total_price": 180.72, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 17.04, + "expected_delivery": { + "$date": "2025-05-18T20:48:59.289Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.433Z" + } + }, + { + "order_id": "50096b4c-82af-47c4-975a-972041bc328a", + "customer": { + "customer_id": "947cbd01-1cb9-4af0-8d57-601d5c9134f5", + "name": "Derek Jones", + "email": "mary98@example.org", + "phone": "+1-298-450-4716x9710", + "address": { + "street": "6153 Parker Loaf", + "city": "Hortonmouth", + "state": "Maryland", + "zip": "68252", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T16:16:21.044Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 124.38, + "subtotal": 248.76 + } + ], + "total_price": 248.76, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 7.95, + "expected_delivery": { + "$date": "2025-05-17T16:16:21.044Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.433Z" + } + }, + { + "order_id": "7c84d11c-ecaf-463b-9471-2a678a3271d5", + "customer": { + "customer_id": "d076c69c-1a59-400a-8d11-248f5e7e4d42", + "name": "Lisa Curtis", + "email": "francodavid@example.org", + "phone": "(226)725-9551x750", + "address": { + "street": "50103 Smith Motorway", + "city": "West Gregoryhaven", + "state": "California", + "zip": "36566", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T02:05:46.050Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 1, + "unit_price": 127.49, + "subtotal": 127.49 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 83.07, + "subtotal": 83.07 + }, + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 164.06, + "subtotal": 328.12 + } + ], + "total_price": 538.68, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 16.27, + "expected_delivery": { + "$date": "2025-05-08T02:05:46.050Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.433Z" + } + }, + { + "order_id": "44d31bf9-fa45-45a5-9285-b5f4682bd480", + "customer": { + "customer_id": "fd228e70-1d49-474a-a2a8-dadb04e38e5e", + "name": "Lisa Barron", + "email": "fmaddox@example.org", + "phone": "9563819273", + "address": { + "street": "2323 Jackson Route", + "city": "Jenniferton", + "state": "Kansas", + "zip": "58959", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T06:02:02.417Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 1, + "unit_price": 162.82, + "subtotal": 162.82 + } + ], + "total_price": 162.82, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 10.14, + "expected_delivery": { + "$date": "2025-05-15T06:02:02.417Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.433Z" + } + }, + { + "order_id": "7f5d58de-f10c-4cf8-853b-59725fdedc7b", + "customer": { + "customer_id": "7bc5c703-db45-4a85-9847-5bbc6ef0b49e", + "name": "Shelby Cooper", + "email": "qdaniel@example.com", + "phone": "320-413-3845", + "address": { + "street": "37154 Johnson Passage Suite 584", + "city": "Lake Christinaside", + "state": "Montana", + "zip": "30647", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T17:44:19.916Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 164.33, + "subtotal": 164.33 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 142.27, + "subtotal": 284.54 + }, + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 113.58, + "subtotal": 227.16 + } + ], + "total_price": 676.03, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 16.79, + "expected_delivery": { + "$date": "2025-05-15T17:44:19.916Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.434Z" + } + }, + { + "order_id": "bfeb6362-3948-406a-aaa0-2a35cabdeee6", + "customer": { + "customer_id": "78e530d9-db68-4f97-94b6-aee17ce2fc0d", + "name": "Jared Thompson", + "email": "savageronald@example.net", + "phone": "500.470.1787x428", + "address": { + "street": "2039 Wilson Coves", + "city": "Port Johnfort", + "state": "West Virginia", + "zip": "05067", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T00:51:32.654Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 116.32, + "subtotal": 116.32 + } + ], + "total_price": 116.32, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 7.76, + "expected_delivery": { + "$date": "2025-05-21T00:51:32.654Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.434Z" + } + }, + { + "order_id": "7f9c13b6-88b5-4ee8-8bbd-7c47837737af", + "customer": { + "customer_id": "da518caa-99e7-4e5c-93ec-7ce7c830f7e6", + "name": "Travis Adams", + "email": "tonysimpson@example.com", + "phone": "(948)752-6766x6104", + "address": { + "street": "228 Hoover Park Apt. 617", + "city": "Dyershire", + "state": "Oklahoma", + "zip": "84408", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T16:24:19.885Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 142.66, + "subtotal": 142.66 + }, + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 112.46, + "subtotal": 224.92 + }, + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 87.41, + "subtotal": 174.82 + } + ], + "total_price": 542.4, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 14.0, + "expected_delivery": { + "$date": "2025-05-18T16:24:19.885Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.434Z" + } + }, + { + "order_id": "71d3c6fd-4fbb-4038-bc26-b597de87a1c3", + "customer": { + "customer_id": "a708f259-8093-440f-a081-a447b2b29c07", + "name": "Kaitlyn Morton", + "email": "joneswanda@example.net", + "phone": "+1-863-924-1975x59744", + "address": { + "street": "25666 James Valley Apt. 614", + "city": "Port Danielleberg", + "state": "Maine", + "zip": "99290", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T06:48:49.150Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 158.33, + "subtotal": 316.66 + }, + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 83.89, + "subtotal": 83.89 + }, + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 120.12, + "subtotal": 240.24 + } + ], + "total_price": 640.79, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 19.17, + "expected_delivery": { + "$date": "2025-05-21T06:48:49.150Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.434Z" + } + }, + { + "order_id": "5378bdd5-1811-4021-8008-ce39d82e4737", + "customer": { + "customer_id": "c737d1d6-a7a2-47dd-94cc-24f10bebc7a1", + "name": "Ana Ferguson", + "email": "cferguson@example.net", + "phone": "001-618-461-0521x43790", + "address": { + "street": "07809 Thomas Grove", + "city": "West Patriciashire", + "state": "Colorado", + "zip": "90961", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T17:30:42.386Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 72.22, + "subtotal": 72.22 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 82.43, + "subtotal": 164.86 + } + ], + "total_price": 237.08, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 9.52, + "expected_delivery": { + "$date": "2025-05-21T17:30:42.386Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.435Z" + } + }, + { + "order_id": "89cf6866-0f3b-4fe8-9e28-48be6679d87a", + "customer": { + "customer_id": "7e467670-b148-4708-a6ab-b473cec75054", + "name": "Sandra Kelly", + "email": "jessica01@example.com", + "phone": "(465)448-2587x1262", + "address": { + "street": "2663 Emily Plaza Apt. 062", + "city": "Darrellmouth", + "state": "Alaska", + "zip": "07331", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T14:51:21.991Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 147.58, + "subtotal": 295.16 + }, + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 1, + "unit_price": 72.25, + "subtotal": 72.25 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 1, + "unit_price": 116.99, + "subtotal": 116.99 + } + ], + "total_price": 484.4, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 16.31, + "expected_delivery": { + "$date": "2025-05-14T14:51:21.991Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.435Z" + } + }, + { + "order_id": "01b44906-7d9a-4d0b-a166-89b128f06c56", + "customer": { + "customer_id": "17be6e96-3aa6-494a-92ba-38a5d45f4e8e", + "name": "Krista Watson", + "email": "samanthahall@example.com", + "phone": "458-436-2520", + "address": { + "street": "4727 Smith Bypass", + "city": "South William", + "state": "Oregon", + "zip": "07404", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T05:50:03.870Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 1, + "unit_price": 88.07, + "subtotal": 88.07 + }, + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 120.31, + "subtotal": 120.31 + } + ], + "total_price": 208.38, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 18.6, + "expected_delivery": { + "$date": "2025-05-17T05:50:03.870Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.435Z" + } + }, + { + "order_id": "e63940b0-b1a0-450a-a366-998b0a594553", + "customer": { + "customer_id": "f316b5c2-c164-423f-95db-a2c16559351c", + "name": "Holly Johnson", + "email": "hallcameron@example.com", + "phone": "001-366-314-0192", + "address": { + "street": "3566 Lynn Branch", + "city": "Amandaport", + "state": "North Dakota", + "zip": "03056", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T15:07:55.461Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 151.59, + "subtotal": 151.59 + } + ], + "total_price": 151.59, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 11.84, + "expected_delivery": { + "$date": "2025-05-16T15:07:55.461Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.435Z" + } + }, + { + "order_id": "98a343c5-f404-4c2f-a3b7-5642a9989a28", + "customer": { + "customer_id": "6ccf733c-b86a-4668-93bd-d452c3a7cae8", + "name": "Amanda Bailey", + "email": "whamilton@example.net", + "phone": "537.935.5649", + "address": { + "street": "1607 Tina Shores Suite 617", + "city": "Nicholebury", + "state": "Indiana", + "zip": "93209", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T21:15:10.635Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 169.16, + "subtotal": 169.16 + } + ], + "total_price": 169.16, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 13.29, + "expected_delivery": { + "$date": "2025-05-10T21:15:10.635Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.436Z" + } + }, + { + "order_id": "afdc8630-95b0-4c51-aa87-f789a7a6657c", + "customer": { + "customer_id": "c33a5380-64bb-4e8c-aed3-9a5a075261fe", + "name": "Cody Vargas", + "email": "cranedavid@example.net", + "phone": "(975)778-1190x363", + "address": { + "street": "956 Booth Terrace Apt. 269", + "city": "Johnsonstad", + "state": "Pennsylvania", + "zip": "10604", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T12:07:54.216Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 102.12, + "subtotal": 204.24 + } + ], + "total_price": 204.24, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 6.31, + "expected_delivery": { + "$date": "2025-05-11T12:07:54.216Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.436Z" + } + }, + { + "order_id": "967379fd-32b0-4bdf-97aa-75bf52bfd4f8", + "customer": { + "customer_id": "23194370-afe1-4513-ae50-ea69c3641400", + "name": "Emily Jones", + "email": "phillipssusan@example.com", + "phone": "+1-457-342-4304x6291", + "address": { + "street": "291 Judith Mountains Suite 784", + "city": "Mcfarlandberg", + "state": "Arkansas", + "zip": "60352", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T05:40:15.921Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 1, + "unit_price": 126.16, + "subtotal": 126.16 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 105.43, + "subtotal": 210.86 + } + ], + "total_price": 337.02, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 10.37, + "expected_delivery": { + "$date": "2025-05-16T05:40:15.921Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.436Z" + } + }, + { + "order_id": "df901621-ea9a-4c17-8def-201b7b266994", + "customer": { + "customer_id": "c34de02d-ca03-4242-aa02-a112bd2dbfea", + "name": "Heather Johnson", + "email": "sarahwall@example.net", + "phone": "887-340-2844x586", + "address": { + "street": "40940 Garrett Mills Suite 587", + "city": "Jeffreyview", + "state": "New Mexico", + "zip": "02114", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T20:27:00.704Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 105.95, + "subtotal": 211.9 + } + ], + "total_price": 211.9, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 14.94, + "expected_delivery": { + "$date": "2025-05-15T20:27:00.704Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.436Z" + } + }, + { + "order_id": "d71403ae-e665-41eb-aed6-bc27a18b6880", + "customer": { + "customer_id": "e82db125-1e1d-482f-9f50-369ba7b10574", + "name": "Brendan Lane", + "email": "orrwilliam@example.org", + "phone": "329-741-5145", + "address": { + "street": "961 Kristina Throughway", + "city": "East Sharontown", + "state": "Wyoming", + "zip": "46337", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T01:23:44.939Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 113.17, + "subtotal": 113.17 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 126.43, + "subtotal": 252.86 + } + ], + "total_price": 366.03, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 18.26, + "expected_delivery": { + "$date": "2025-05-17T01:23:44.939Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.437Z" + } + }, + { + "order_id": "56cb7a4d-ac9f-47f4-b55d-28dfe2518fa8", + "customer": { + "customer_id": "143ace90-95e6-4ff2-b65d-9f74d253427b", + "name": "Mark Garza", + "email": "davidallen@example.net", + "phone": "001-622-990-9657", + "address": { + "street": "438 Pope Inlet", + "city": "East Keith", + "state": "Utah", + "zip": "38954", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T16:44:32.543Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 159.82, + "subtotal": 319.64 + }, + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 112.39, + "subtotal": 112.39 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 126.15, + "subtotal": 126.15 + } + ], + "total_price": 558.18, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 5.6, + "expected_delivery": { + "$date": "2025-05-11T16:44:32.543Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.437Z" + } + }, + { + "order_id": "b406fe0d-64d6-48f8-b0b8-b7b3134db3f0", + "customer": { + "customer_id": "d445cce9-cf24-49d7-a03c-5c0087707fd0", + "name": "Raymond Myers", + "email": "roberthamilton@example.net", + "phone": "3002147577", + "address": { + "street": "729 Mason Track", + "city": "Kimbury", + "state": "Utah", + "zip": "01288", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T04:43:02.519Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 155.23, + "subtotal": 155.23 + }, + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 2, + "unit_price": 168.78, + "subtotal": 337.56 + } + ], + "total_price": 492.79, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 15.53, + "expected_delivery": { + "$date": "2025-05-21T04:43:02.519Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.437Z" + } + }, + { + "order_id": "75ab375f-7884-43c6-921d-375ba26c461b", + "customer": { + "customer_id": "b3db5531-2ba6-4e8b-8ebf-72701bf4ef0f", + "name": "Jeffrey Hudson", + "email": "rcobb@example.net", + "phone": "+1-767-678-6578x01564", + "address": { + "street": "77586 Melissa Well Suite 767", + "city": "South Donnaborough", + "state": "Kansas", + "zip": "68850", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T02:54:24.360Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 106.1, + "subtotal": 212.2 + }, + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 160.22, + "subtotal": 320.44 + } + ], + "total_price": 532.64, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 10.94, + "expected_delivery": { + "$date": "2025-05-18T02:54:24.360Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.437Z" + } + }, + { + "order_id": "579b3fe4-e9d2-4f21-9ded-690f1a7c08b3", + "customer": { + "customer_id": "c24c7bba-7d70-4ea1-8992-f1d04aadfef5", + "name": "Barbara Diaz", + "email": "zlynch@example.org", + "phone": "001-964-759-2061x0385", + "address": { + "street": "07782 Kyle Corners", + "city": "Gilbertstad", + "state": "New Hampshire", + "zip": "69549", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T07:39:34.749Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 126.68, + "subtotal": 126.68 + } + ], + "total_price": 126.68, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 7.61, + "expected_delivery": { + "$date": "2025-05-17T07:39:34.749Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.438Z" + } + }, + { + "order_id": "a4c45de3-3d73-45f0-a774-b7f36b80938d", + "customer": { + "customer_id": "e435db35-0ff8-469e-a412-ee281f718b89", + "name": "Mrs. Sherry Bishop", + "email": "bwright@example.com", + "phone": "(374)505-6105", + "address": { + "street": "5375 Collier Garden", + "city": "North Markland", + "state": "Ohio", + "zip": "59087", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T17:26:25.447Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 140.87, + "subtotal": 281.74 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 70.36, + "subtotal": 70.36 + }, + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 70.24, + "subtotal": 70.24 + } + ], + "total_price": 422.34, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 19.41, + "expected_delivery": { + "$date": "2025-05-11T17:26:25.447Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.438Z" + } + }, + { + "order_id": "288770e4-4ef3-47fd-a824-eb88ea8eaec4", + "customer": { + "customer_id": "4a15808b-bca4-4a09-a957-ce9c141149d1", + "name": "Todd Shaw", + "email": "amy04@example.net", + "phone": "001-541-502-2350", + "address": { + "street": "44116 Tran Drive", + "city": "Lake Matthew", + "state": "Oregon", + "zip": "95131", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T00:59:20.081Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 134.58, + "subtotal": 134.58 + }, + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 170.83, + "subtotal": 341.66 + }, + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 105.55, + "subtotal": 105.55 + } + ], + "total_price": 581.79, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 8.61, + "expected_delivery": { + "$date": "2025-05-19T00:59:20.081Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.438Z" + } + }, + { + "order_id": "1cf3ee6c-2747-4088-aa22-506ee86f3f02", + "customer": { + "customer_id": "8220d46d-ea7b-4579-b251-3906b3f321de", + "name": "Tina White", + "email": "gabrielhansen@example.org", + "phone": "001-201-692-3064x2684", + "address": { + "street": "4410 Leroy Loaf", + "city": "New Katherinemouth", + "state": "Colorado", + "zip": "94910", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T16:49:43.245Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 70.59, + "subtotal": 141.18 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 97.95, + "subtotal": 195.9 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 104.87, + "subtotal": 104.87 + } + ], + "total_price": 441.95, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 6.91, + "expected_delivery": { + "$date": "2025-05-12T16:49:43.245Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.438Z" + } + }, + { + "order_id": "f5380edb-e534-4b40-8b62-85b04c09635a", + "customer": { + "customer_id": "56c2d092-7fba-43dd-ab74-ad6887b27fe0", + "name": "Molly Scott", + "email": "benjaminrodriguez@example.com", + "phone": "(951)259-8632x097", + "address": { + "street": "38635 Melendez Spring Apt. 421", + "city": "Port Danielhaven", + "state": "Montana", + "zip": "60837", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T04:11:02.358Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 107.22, + "subtotal": 107.22 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 105.76, + "subtotal": 105.76 + } + ], + "total_price": 212.98, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 13.48, + "expected_delivery": { + "$date": "2025-05-12T04:11:02.358Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.439Z" + } + }, + { + "order_id": "b4dcf2c8-c571-4954-9065-264932c90dc9", + "customer": { + "customer_id": "bdde3f50-3713-4c49-a469-af0cbbbe2cc2", + "name": "Melanie Lopez", + "email": "gutierrezcynthia@example.net", + "phone": "(872)268-1273", + "address": { + "street": "8668 Thompson Rue Apt. 364", + "city": "Mejiafurt", + "state": "Georgia", + "zip": "73766", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T22:09:36.157Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 141.04, + "subtotal": 141.04 + }, + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 66.51, + "subtotal": 66.51 + }, + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 2, + "unit_price": 82.81, + "subtotal": 165.62 + } + ], + "total_price": 373.17, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 16.47, + "expected_delivery": { + "$date": "2025-05-14T22:09:36.157Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.439Z" + } + }, + { + "order_id": "07f73662-16aa-4bd5-b1db-2d2f9d64c1d9", + "customer": { + "customer_id": "8f8042e9-0b58-4dbe-8f9f-c7ce0de61482", + "name": "Jaime Torres", + "email": "alicia98@example.net", + "phone": "001-438-628-7269x8130", + "address": { + "street": "6592 Todd Hill", + "city": "North Megan", + "state": "Oregon", + "zip": "91368", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T19:30:11.837Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 61.37, + "subtotal": 61.37 + } + ], + "total_price": 61.37, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 7.8, + "expected_delivery": { + "$date": "2025-05-19T19:30:11.837Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.439Z" + } + }, + { + "order_id": "80115dc5-68ee-417d-b505-20358824996f", + "customer": { + "customer_id": "6ca43aab-95aa-45e2-8f9c-9c8b782627cb", + "name": "Jessica Stanley", + "email": "randallgonzalez@example.com", + "phone": "(532)510-7929x7735", + "address": { + "street": "6793 Rowland Center Suite 018", + "city": "Debraborough", + "state": "Texas", + "zip": "60372", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T02:26:53.110Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 151.27, + "subtotal": 151.27 + }, + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 126.1, + "subtotal": 252.2 + }, + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 1, + "unit_price": 86.3, + "subtotal": 86.3 + } + ], + "total_price": 489.77, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 6.41, + "expected_delivery": { + "$date": "2025-05-14T02:26:53.110Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.439Z" + } + }, + { + "order_id": "d6910136-ef1d-4e66-b5f2-3ae1cf943db7", + "customer": { + "customer_id": "dd933cbb-7a29-4b66-9d62-ab83d3d8d020", + "name": "Jonathan Lopez", + "email": "briggsbelinda@example.net", + "phone": "553-273-9712x413", + "address": { + "street": "27046 Nathan Light Apt. 678", + "city": "West Julie", + "state": "Wyoming", + "zip": "46052", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T19:22:28.807Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 106.3, + "subtotal": 212.6 + } + ], + "total_price": 212.6, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 18.43, + "expected_delivery": { + "$date": "2025-05-11T19:22:28.807Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.440Z" + } + }, + { + "order_id": "81963169-5201-4f03-b8d3-bf10fb0cb2f1", + "customer": { + "customer_id": "90e446ba-adbd-45cc-8af9-dc55ce90726b", + "name": "Brian Myers", + "email": "jessicaellis@example.org", + "phone": "(565)935-6859x981", + "address": { + "street": "26060 Dakota Isle", + "city": "Seanborough", + "state": "Kansas", + "zip": "67381", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T00:36:22.339Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 103.84, + "subtotal": 207.68 + } + ], + "total_price": 207.68, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 11.21, + "expected_delivery": { + "$date": "2025-05-19T00:36:22.339Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.440Z" + } + }, + { + "order_id": "7911ef66-b589-427d-bd21-4d6dc15fb326", + "customer": { + "customer_id": "f62892d8-aeb4-4be3-9d8b-2f5c9a45d9c5", + "name": "Evan Wright", + "email": "moonanthony@example.org", + "phone": "+1-988-803-6303x809", + "address": { + "street": "1051 Taylor Turnpike Suite 068", + "city": "Russellmouth", + "state": "Oklahoma", + "zip": "95124", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T20:16:44.998Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 99.62, + "subtotal": 99.62 + }, + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 110.62, + "subtotal": 221.24 + }, + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 2, + "unit_price": 147.56, + "subtotal": 295.12 + } + ], + "total_price": 615.98, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 12.12, + "expected_delivery": { + "$date": "2025-05-14T20:16:44.998Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.440Z" + } + }, + { + "order_id": "8e7f69f2-af53-4419-adcb-eaef8a1ec26c", + "customer": { + "customer_id": "d5887e97-8bc3-4ec5-8b3d-0ff88725b0de", + "name": "Joshua Jones", + "email": "lucastaylor@example.org", + "phone": "836.515.1477", + "address": { + "street": "1178 Timothy Spring Apt. 854", + "city": "Port Jeremyborough", + "state": "Wisconsin", + "zip": "42839", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T13:01:46.488Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 114.15, + "subtotal": 228.3 + } + ], + "total_price": 228.3, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 15.4, + "expected_delivery": { + "$date": "2025-05-11T13:01:46.488Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.440Z" + } + }, + { + "order_id": "90dbb9db-ec27-418e-a677-e62901718f01", + "customer": { + "customer_id": "4223037b-6ffa-4a7d-8607-a96b25d1e9f4", + "name": "Jared Miller", + "email": "ramosjennifer@example.com", + "phone": "321.284.2059", + "address": { + "street": "314 Cochran Springs Apt. 053", + "city": "Walkerville", + "state": "Maryland", + "zip": "51192", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T04:31:39.822Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 1, + "unit_price": 115.86, + "subtotal": 115.86 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 143.56, + "subtotal": 143.56 + } + ], + "total_price": 259.42, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 15.39, + "expected_delivery": { + "$date": "2025-05-13T04:31:39.822Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.441Z" + } + }, + { + "order_id": "58704e8e-027b-437b-aa12-eca2654fe4bb", + "customer": { + "customer_id": "a6fc0b6c-8956-4e20-925a-3eec8ee2dda7", + "name": "Matthew Hamilton", + "email": "wellsbenjamin@example.org", + "phone": "(679)270-6862x880", + "address": { + "street": "83698 Robinson Canyon Suite 226", + "city": "Hamiltonchester", + "state": "Montana", + "zip": "82593", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T19:32:35.111Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 171.64, + "subtotal": 343.28 + }, + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 125.5, + "subtotal": 125.5 + } + ], + "total_price": 468.78, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 13.54, + "expected_delivery": { + "$date": "2025-05-15T19:32:35.111Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.441Z" + } + }, + { + "order_id": "7113cd05-3151-4a91-bdb6-61cbcc21a60b", + "customer": { + "customer_id": "5c19245c-14fb-4348-b37d-9d86518ae952", + "name": "Brittany Rose", + "email": "rogersalbert@example.org", + "phone": "+1-649-596-7723x065", + "address": { + "street": "3357 Cynthia Street Apt. 784", + "city": "Espinozaview", + "state": "Louisiana", + "zip": "19021", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T04:10:47.194Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 136.16, + "subtotal": 272.32 + }, + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 2, + "unit_price": 87.57, + "subtotal": 175.14 + }, + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 73.41, + "subtotal": 146.82 + } + ], + "total_price": 594.28, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 15.19, + "expected_delivery": { + "$date": "2025-05-16T04:10:47.194Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.441Z" + } + }, + { + "order_id": "c5e0d749-7bba-4908-b1ae-6bed6bba7a33", + "customer": { + "customer_id": "9e70e581-bfb9-49cb-8d49-6d9c25844202", + "name": "Brittany Castro", + "email": "julie23@example.org", + "phone": "525-260-7727x617", + "address": { + "street": "338 Thomas Circles Suite 757", + "city": "Nicholebury", + "state": "Arizona", + "zip": "95664", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T22:02:08.180Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 86.67, + "subtotal": 86.67 + } + ], + "total_price": 86.67, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 18.59, + "expected_delivery": { + "$date": "2025-05-15T22:02:08.180Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.441Z" + } + }, + { + "order_id": "5afca73e-7bf7-4efa-b95e-9403bbbc48f6", + "customer": { + "customer_id": "a503dd62-2b57-4bff-bdea-8f062b4810ea", + "name": "Joshua Garcia", + "email": "jason12@example.net", + "phone": "+1-317-631-6340", + "address": { + "street": "83551 Michael Burgs Apt. 957", + "city": "West Mindy", + "state": "New Mexico", + "zip": "20420", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T00:03:05.376Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 139.58, + "subtotal": 139.58 + }, + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 86.4, + "subtotal": 86.4 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 178.02, + "subtotal": 356.04 + } + ], + "total_price": 582.02, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 16.46, + "expected_delivery": { + "$date": "2025-05-16T00:03:05.376Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.442Z" + } + }, + { + "order_id": "57160fd0-a4fb-4d8d-b183-76f46e620ee9", + "customer": { + "customer_id": "a6f08694-cb34-4458-9d63-f806daf142c1", + "name": "Javier Barry", + "email": "dawn80@example.com", + "phone": "384-987-5786", + "address": { + "street": "84362 Michael Terrace", + "city": "Reedshire", + "state": "Pennsylvania", + "zip": "09983", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T03:13:05.535Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 170.6, + "subtotal": 170.6 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 105.18, + "subtotal": 105.18 + }, + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 173.56, + "subtotal": 173.56 + } + ], + "total_price": 449.34, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 17.87, + "expected_delivery": { + "$date": "2025-05-14T03:13:05.535Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.442Z" + } + }, + { + "order_id": "55214bc2-cec2-49c5-877b-771045248e3b", + "customer": { + "customer_id": "d4435ecb-2fbe-4ff2-bc3a-a495c77ccfb2", + "name": "Mr. Craig Frey", + "email": "johnjones@example.org", + "phone": "+1-372-378-2472x271", + "address": { + "street": "99063 Haley Knoll Apt. 372", + "city": "Romeroburgh", + "state": "Kentucky", + "zip": "18360", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T03:22:23.042Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 1, + "unit_price": 77.19, + "subtotal": 77.19 + } + ], + "total_price": 77.19, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 18.51, + "expected_delivery": { + "$date": "2025-05-15T03:22:23.042Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.442Z" + } + }, + { + "order_id": "428f67a9-9815-4ac1-b0da-deae80fa9ebd", + "customer": { + "customer_id": "4349da70-b1ae-4e97-8112-c4d6fbb1408b", + "name": "Robert Johnson", + "email": "millerdouglas@example.com", + "phone": "693-214-3603x762", + "address": { + "street": "209 Michele Viaduct", + "city": "Stewartburgh", + "state": "Rhode Island", + "zip": "97462", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T19:33:56.084Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 97.9, + "subtotal": 97.9 + } + ], + "total_price": 97.9, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 16.36, + "expected_delivery": { + "$date": "2025-05-09T19:33:56.084Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.442Z" + } + }, + { + "order_id": "1365c9fb-e815-46be-8fc5-09c4ae87a5c1", + "customer": { + "customer_id": "fcdcc801-479c-4885-a5e6-b09ee9ceaa92", + "name": "Kelly Hanson", + "email": "nealchristopher@example.org", + "phone": "+1-284-949-7344x46405", + "address": { + "street": "12804 Travis Island Suite 067", + "city": "Fitzpatrickburgh", + "state": "Colorado", + "zip": "82685", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T01:16:04.380Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 149.86, + "subtotal": 299.72 + } + ], + "total_price": 299.72, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 7.93, + "expected_delivery": { + "$date": "2025-05-19T01:16:04.380Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.443Z" + } + }, + { + "order_id": "e2089671-aa58-4f0b-a70c-538f43929805", + "customer": { + "customer_id": "d0bf6f54-f5ef-4d25-86f5-1a1555f24e49", + "name": "Erica Watts", + "email": "salazarsusan@example.com", + "phone": "953.968.5786", + "address": { + "street": "66124 Lara Harbors Apt. 587", + "city": "Fosterview", + "state": "New Mexico", + "zip": "80197", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T08:03:43.626Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 113.84, + "subtotal": 227.68 + } + ], + "total_price": 227.68, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 8.85, + "expected_delivery": { + "$date": "2025-05-14T08:03:43.626Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.443Z" + } + }, + { + "order_id": "310d2baa-792c-4c9c-978e-c7d107997157", + "customer": { + "customer_id": "a0e52474-3db1-4366-bd0d-a7dda1b4e3a2", + "name": "Richard Rodriguez", + "email": "debbie02@example.net", + "phone": "001-995-697-5995", + "address": { + "street": "9512 Romero Cliffs", + "city": "Markberg", + "state": "Kansas", + "zip": "55102", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T10:31:24.884Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 71.99, + "subtotal": 143.98 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 111.71, + "subtotal": 223.42 + } + ], + "total_price": 367.4, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 8.95, + "expected_delivery": { + "$date": "2025-05-14T10:31:24.884Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.443Z" + } + }, + { + "order_id": "3cf642f1-b851-4a71-a4dd-20807930cc80", + "customer": { + "customer_id": "37be29be-3c73-4d38-9e41-205306028279", + "name": "Andrew Harris", + "email": "mejialaura@example.net", + "phone": "487-999-5237", + "address": { + "street": "17295 Miller Crossing", + "city": "Cordovaburgh", + "state": "West Virginia", + "zip": "64143", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T02:20:26.906Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 94.99, + "subtotal": 94.99 + }, + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 159.75, + "subtotal": 319.5 + } + ], + "total_price": 414.49, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 5.03, + "expected_delivery": { + "$date": "2025-05-18T02:20:26.906Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.443Z" + } + }, + { + "order_id": "78bdccd0-46a5-4a5d-af00-1bb24127dc93", + "customer": { + "customer_id": "36bfa078-b4f1-4954-9f72-44ac6cd315ba", + "name": "Samantha Hall", + "email": "lsmith@example.org", + "phone": "797-447-2210", + "address": { + "street": "1848 Smith Shores", + "city": "New Heatherton", + "state": "Colorado", + "zip": "98864", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T22:03:24.213Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 73.7, + "subtotal": 147.4 + }, + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 1, + "unit_price": 62.05, + "subtotal": 62.05 + } + ], + "total_price": 209.45, + "payment_method": "Google Pay", + "shipping_method": "Standard", + "shipping_cost": 12.25, + "expected_delivery": { + "$date": "2025-05-13T22:03:24.213Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.444Z" + } + }, + { + "order_id": "570a6268-69ad-4254-9f0d-940c14d077b8", + "customer": { + "customer_id": "a6fe4b37-a372-4096-8f44-cdbe5a9c56b4", + "name": "Joseph Knight", + "email": "jenniferhale@example.net", + "phone": "+1-806-873-1489x641", + "address": { + "street": "6290 Higgins Harbors Apt. 201", + "city": "Hubertown", + "state": "New Hampshire", + "zip": "12850", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T13:27:17.357Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 166.43, + "subtotal": 166.43 + }, + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 143.67, + "subtotal": 287.34 + } + ], + "total_price": 453.77, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 18.0, + "expected_delivery": { + "$date": "2025-05-14T13:27:17.357Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.444Z" + } + }, + { + "order_id": "2fe65e31-4142-456b-b492-e4549873bf79", + "customer": { + "customer_id": "2a11e7cc-265a-46e7-bfaf-808da4de1c9f", + "name": "Bailey Shah", + "email": "amysmith@example.org", + "phone": "(880)372-6871", + "address": { + "street": "6228 Kelli Turnpike", + "city": "Tiffanyburgh", + "state": "Virginia", + "zip": "38784", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T06:05:57.843Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 72.28, + "subtotal": 144.56 + }, + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 65.08, + "subtotal": 65.08 + }, + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 69.0, + "subtotal": 138.0 + } + ], + "total_price": 347.64, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 19.74, + "expected_delivery": { + "$date": "2025-05-12T06:05:57.843Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.444Z" + } + }, + { + "order_id": "d06cad67-35e6-4ee1-b8a6-86af2e2a3486", + "customer": { + "customer_id": "a95a1dd7-d87d-422e-86e2-06c693dd7065", + "name": "Michael Daniels", + "email": "ncurry@example.org", + "phone": "+1-350-304-7923x841", + "address": { + "street": "978 Bennett Village", + "city": "Port Josephhaven", + "state": "Hawaii", + "zip": "89819", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T23:54:06.176Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 118.8, + "subtotal": 237.6 + }, + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 1, + "unit_price": 60.16, + "subtotal": 60.16 + } + ], + "total_price": 297.76, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 10.64, + "expected_delivery": { + "$date": "2025-05-21T23:54:06.176Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.444Z" + } + }, + { + "order_id": "9eca8315-2217-4fbf-a3f6-aefdbca39dc5", + "customer": { + "customer_id": "23eeb0a9-e2bd-4c2f-adab-c31fe16f9fcf", + "name": "Cynthia Montgomery", + "email": "dbray@example.com", + "phone": "3639700037", + "address": { + "street": "80919 Page Village Apt. 187", + "city": "West Jeffrey", + "state": "North Dakota", + "zip": "24165", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T22:57:13.192Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 99.81, + "subtotal": 199.62 + } + ], + "total_price": 199.62, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 12.49, + "expected_delivery": { + "$date": "2025-05-21T22:57:13.192Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.444Z" + } + }, + { + "order_id": "e108d6fe-ae78-4c63-bb49-785d13391732", + "customer": { + "customer_id": "25af18e1-2fb4-4e1c-bc3c-c61f770f45e0", + "name": "Nicole Thompson", + "email": "cpotter@example.net", + "phone": "001-701-536-4164", + "address": { + "street": "46333 Simpson Pines", + "city": "Normanberg", + "state": "Wyoming", + "zip": "08199", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T19:40:58.479Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 173.13, + "subtotal": 173.13 + }, + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 169.16, + "subtotal": 338.32 + } + ], + "total_price": 511.45, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 5.21, + "expected_delivery": { + "$date": "2025-05-11T19:40:58.479Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.445Z" + } + }, + { + "order_id": "dc4b0dd2-a6a9-4a24-9f8e-4b50d2f174de", + "customer": { + "customer_id": "163a9f53-29e6-4caa-add7-d074b4189535", + "name": "Ashley Roberts", + "email": "mmurray@example.com", + "phone": "+1-365-260-2053x50947", + "address": { + "street": "96023 Martinez Courts", + "city": "Sharonside", + "state": "Arkansas", + "zip": "44995", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T01:42:24.093Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 152.28, + "subtotal": 304.56 + }, + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 1, + "unit_price": 105.42, + "subtotal": 105.42 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 103.97, + "subtotal": 103.97 + } + ], + "total_price": 513.95, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 19.98, + "expected_delivery": { + "$date": "2025-05-18T01:42:24.093Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.445Z" + } + }, + { + "order_id": "b1fc36e2-314c-4d1c-8330-a6ef48242b24", + "customer": { + "customer_id": "0e6747d3-2aa7-4821-b751-528bd276b52d", + "name": "Jonathan Henson", + "email": "richardpeterson@example.net", + "phone": "5294375519", + "address": { + "street": "42985 Tran Estates", + "city": "West Meganview", + "state": "Hawaii", + "zip": "72733", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T21:42:43.700Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 91.75, + "subtotal": 183.5 + }, + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 2, + "unit_price": 66.55, + "subtotal": 133.1 + } + ], + "total_price": 316.6, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 14.72, + "expected_delivery": { + "$date": "2025-05-20T21:42:43.700Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.445Z" + } + }, + { + "order_id": "da94182f-6b6c-4cf6-b521-8ee89e917cc1", + "customer": { + "customer_id": "85214626-98fc-4f6d-ba83-aa75476c0408", + "name": "Christopher Jenkins", + "email": "mkaiser@example.org", + "phone": "(965)535-7053", + "address": { + "street": "7604 Clayton Plaza Apt. 724", + "city": "North Stacyfort", + "state": "Georgia", + "zip": "59701", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T07:34:54.906Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 113.25, + "subtotal": 226.5 + } + ], + "total_price": 226.5, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 16.87, + "expected_delivery": { + "$date": "2025-05-19T07:34:54.906Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.445Z" + } + }, + { + "order_id": "efb91eee-506d-46a7-87ec-fc1971f13ec9", + "customer": { + "customer_id": "56ed6be8-f709-4309-b5f3-f6d413d538e8", + "name": "Mary Davis", + "email": "kim45@example.com", + "phone": "+1-749-207-5888x06631", + "address": { + "street": "22162 Tyler Ford", + "city": "Stephaniebury", + "state": "Alabama", + "zip": "61041", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T04:45:39.018Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 87.48, + "subtotal": 174.96 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 146.28, + "subtotal": 292.56 + } + ], + "total_price": 467.52, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 8.3, + "expected_delivery": { + "$date": "2025-05-15T04:45:39.018Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.446Z" + } + }, + { + "order_id": "a14b8085-a5cd-484c-9ed1-88e2331cd63a", + "customer": { + "customer_id": "93ffd30c-4f4c-4b90-ade3-b3cce284d7ff", + "name": "Daniel Adams", + "email": "xmeyer@example.com", + "phone": "(537)992-8411x032", + "address": { + "street": "031 Kelly Rapid", + "city": "Port Johnstad", + "state": "Illinois", + "zip": "90907", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T16:47:33.424Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 174.32, + "subtotal": 348.64 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 120.21, + "subtotal": 120.21 + } + ], + "total_price": 468.85, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 15.96, + "expected_delivery": { + "$date": "2025-05-17T16:47:33.424Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.446Z" + } + }, + { + "order_id": "200fb6a1-36ef-4c69-ac9b-8300b06ff058", + "customer": { + "customer_id": "e423bcb6-5d8b-45f4-b56f-f4175bd971a8", + "name": "Angela Cook", + "email": "carsonsusan@example.net", + "phone": "7684596580", + "address": { + "street": "90894 Amy Roads Apt. 301", + "city": "South Jill", + "state": "Alabama", + "zip": "27415", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T00:03:40.524Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 1, + "unit_price": 117.07, + "subtotal": 117.07 + } + ], + "total_price": 117.07, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 9.22, + "expected_delivery": { + "$date": "2025-05-15T00:03:40.524Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.446Z" + } + }, + { + "order_id": "63ef711b-f09f-4bf0-8602-e76787fee15b", + "customer": { + "customer_id": "b19afe9f-8cbd-4120-9c9c-96cbce62d1c4", + "name": "Jason Lane", + "email": "mullinsbrittany@example.net", + "phone": "6026560194", + "address": { + "street": "1596 Pittman Ville", + "city": "South Susan", + "state": "Vermont", + "zip": "37995", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T15:34:16.152Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 1, + "unit_price": 63.4, + "subtotal": 63.4 + }, + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 2, + "unit_price": 115.82, + "subtotal": 231.64 + } + ], + "total_price": 295.04, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 7.24, + "expected_delivery": { + "$date": "2025-05-08T15:34:16.152Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.446Z" + } + }, + { + "order_id": "4af2647b-0f52-4d48-85e2-3e22296c7e04", + "customer": { + "customer_id": "7f9803e2-2797-4181-be19-24fc8af0e54a", + "name": "Samantha Brown", + "email": "angela15@example.org", + "phone": "(562)349-9484", + "address": { + "street": "822 Kevin Center Suite 143", + "city": "West Marcus", + "state": "Iowa", + "zip": "40930", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T19:48:08.316Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 108.63, + "subtotal": 108.63 + }, + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 126.86, + "subtotal": 253.72 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 117.98, + "subtotal": 117.98 + } + ], + "total_price": 480.33, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 10.25, + "expected_delivery": { + "$date": "2025-05-12T19:48:08.316Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.446Z" + } + }, + { + "order_id": "f7098cd3-8488-4e1d-8fb6-5dc383b1e85d", + "customer": { + "customer_id": "e70f533d-f6ab-4a35-a979-0d99c4fb77e9", + "name": "Ann Bailey", + "email": "margaret61@example.com", + "phone": "+1-427-754-1039x36642", + "address": { + "street": "239 Samuel Spur Suite 873", + "city": "Diazfurt", + "state": "Delaware", + "zip": "08732", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T18:01:58.926Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 109.86, + "subtotal": 219.72 + } + ], + "total_price": 219.72, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 5.92, + "expected_delivery": { + "$date": "2025-05-18T18:01:58.926Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.447Z" + } + }, + { + "order_id": "b2b60b0f-9bf8-4921-af6d-0f358739d9c9", + "customer": { + "customer_id": "9e5dc02f-dda6-4b3e-b1ca-b6ce08761242", + "name": "Nicole Bridges", + "email": "kaitlyn94@example.net", + "phone": "223.379.8795", + "address": { + "street": "910 Walsh Highway", + "city": "Lake Samanthashire", + "state": "Nebraska", + "zip": "99922", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T01:29:26.845Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 99.01, + "subtotal": 198.02 + }, + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 1, + "unit_price": 132.72, + "subtotal": 132.72 + } + ], + "total_price": 330.74, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 13.65, + "expected_delivery": { + "$date": "2025-05-16T01:29:26.845Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.447Z" + } + }, + { + "order_id": "62c94c35-9680-4c29-aff2-6bd08d7a9278", + "customer": { + "customer_id": "d9225b1c-ed0b-44c1-94dc-2d3e04ef2e79", + "name": "Douglas Horne", + "email": "frankgibson@example.com", + "phone": "(953)822-9609x108", + "address": { + "street": "1055 Navarro Walk Suite 021", + "city": "Wellsside", + "state": "Wisconsin", + "zip": "30207", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T19:06:47.368Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 164.47, + "subtotal": 164.47 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 63.48, + "subtotal": 63.48 + }, + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 133.04, + "subtotal": 266.08 + } + ], + "total_price": 494.03, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 9.47, + "expected_delivery": { + "$date": "2025-05-20T19:06:47.368Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.447Z" + } + }, + { + "order_id": "85e941c9-8a9e-4c5a-997e-8cbab3702a11", + "customer": { + "customer_id": "aba36504-385e-47d6-aa13-6d8b4c7c0e8b", + "name": "Michael Hoffman", + "email": "jeffery42@example.net", + "phone": "903-649-0394x00528", + "address": { + "street": "4497 Roger Crescent", + "city": "West Coreyshire", + "state": "Arizona", + "zip": "43623", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T16:57:45.947Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 60.06, + "subtotal": 60.06 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 113.07, + "subtotal": 226.14 + } + ], + "total_price": 286.2, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 11.92, + "expected_delivery": { + "$date": "2025-05-15T16:57:45.947Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.447Z" + } + }, + { + "order_id": "df050545-7aa8-4d7e-9717-ef2f862e6688", + "customer": { + "customer_id": "fb741c0a-277f-4c1a-91e3-70f471f59cfd", + "name": "William Smith", + "email": "ijohnson@example.com", + "phone": "+1-329-552-2981x674", + "address": { + "street": "5183 Simmons Mission", + "city": "Isabelmouth", + "state": "Idaho", + "zip": "80815", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T10:35:24.845Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 152.97, + "subtotal": 305.94 + } + ], + "total_price": 305.94, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 17.85, + "expected_delivery": { + "$date": "2025-05-12T10:35:24.845Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.448Z" + } + }, + { + "order_id": "3fc13c2a-6de3-4594-9579-a55fcf876f96", + "customer": { + "customer_id": "a322bf58-1fe1-46f9-b97c-4ccc90ad3eb8", + "name": "Alexander Hanson", + "email": "andersonadam@example.org", + "phone": "768-545-2794", + "address": { + "street": "04295 Jeremy Track Suite 373", + "city": "West Rebeccamouth", + "state": "South Carolina", + "zip": "99609", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T04:30:15.867Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 83.41, + "subtotal": 166.82 + }, + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 107.67, + "subtotal": 107.67 + } + ], + "total_price": 274.49, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 12.52, + "expected_delivery": { + "$date": "2025-05-14T04:30:15.867Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.448Z" + } + }, + { + "order_id": "208ebed8-d8a8-4992-a7ef-7b4e4399eace", + "customer": { + "customer_id": "ea0c64e0-ae3e-479a-9338-423d90c4ee4d", + "name": "Kimberly Shepard", + "email": "doylerachel@example.org", + "phone": "510.703.2061x958", + "address": { + "street": "3925 Rush Land", + "city": "North Thomasville", + "state": "Texas", + "zip": "93443", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T20:53:41.210Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 165.43, + "subtotal": 165.43 + }, + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 94.72, + "subtotal": 189.44 + } + ], + "total_price": 354.87, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 17.0, + "expected_delivery": { + "$date": "2025-05-19T20:53:41.210Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.448Z" + } + }, + { + "order_id": "8634cff7-0875-4944-8af7-9c5a78d381f1", + "customer": { + "customer_id": "84906a78-270c-44ff-b139-f6d3055a7ff0", + "name": "Terry Guerra", + "email": "fmartinez@example.com", + "phone": "453-566-3598", + "address": { + "street": "26318 Perez Shores", + "city": "North Aaron", + "state": "New Hampshire", + "zip": "65713", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T18:01:41.414Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 84.27, + "subtotal": 168.54 + } + ], + "total_price": 168.54, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 9.61, + "expected_delivery": { + "$date": "2025-05-17T18:01:41.414Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.448Z" + } + }, + { + "order_id": "f2a6126e-6a42-4962-bb95-d1031eb1ec09", + "customer": { + "customer_id": "e1167919-1ba7-4379-824a-f23eea3b786a", + "name": "Eric Howard", + "email": "youngbradley@example.net", + "phone": "466.560.1767x67841", + "address": { + "street": "781 Burke Prairie", + "city": "Tonytown", + "state": "Pennsylvania", + "zip": "61927", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-05T23:41:03.228Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 120.17, + "subtotal": 120.17 + } + ], + "total_price": 120.17, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 12.41, + "expected_delivery": { + "$date": "2025-05-14T23:41:03.228Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.449Z" + } + }, + { + "order_id": "ee1c0294-2010-4cbf-839a-7633a5ccb4cb", + "customer": { + "customer_id": "732eeda5-3d10-4461-97e3-fa2302d13545", + "name": "Antonio Jones", + "email": "mark87@example.org", + "phone": "+1-755-345-5990x09062", + "address": { + "street": "4816 Tyrone Islands", + "city": "East Breanna", + "state": "California", + "zip": "94092", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T06:09:04.988Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 98.36, + "subtotal": 196.72 + }, + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 142.32, + "subtotal": 142.32 + } + ], + "total_price": 339.04, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 19.83, + "expected_delivery": { + "$date": "2025-05-18T06:09:04.988Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.449Z" + } + }, + { + "order_id": "a1781fb1-bfd8-4c66-836f-86c3db7845f8", + "customer": { + "customer_id": "ee144afa-26b3-4d95-8d5a-cf4155c46ee9", + "name": "Renee Brown", + "email": "hendersonkyle@example.net", + "phone": "420.714.7141", + "address": { + "street": "03686 James Glens", + "city": "Port Angelachester", + "state": "Alaska", + "zip": "72232", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T14:45:53.602Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 105.07, + "subtotal": 210.14 + } + ], + "total_price": 210.14, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 7.14, + "expected_delivery": { + "$date": "2025-05-16T14:45:53.602Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.449Z" + } + }, + { + "order_id": "65d6cd3b-9dfa-429d-9b3c-c4b4922e2871", + "customer": { + "customer_id": "91ded94c-762d-434d-9b1e-0190fdfbe9b4", + "name": "Allison Phillips", + "email": "justinlong@example.org", + "phone": "278-860-2418", + "address": { + "street": "1564 John Streets Apt. 032", + "city": "New Haley", + "state": "Mississippi", + "zip": "03408", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T22:29:54.096Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 168.9, + "subtotal": 337.8 + }, + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 146.73, + "subtotal": 146.73 + }, + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 63.95, + "subtotal": 63.95 + } + ], + "total_price": 548.48, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 19.76, + "expected_delivery": { + "$date": "2025-05-12T22:29:54.096Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.449Z" + } + }, + { + "order_id": "fd37b539-af6e-49e3-8e7c-004e04e544e3", + "customer": { + "customer_id": "234be397-e7a1-4f6d-ba85-ddd3dba0c6b8", + "name": "Kimberly Smith", + "email": "sgarcia@example.net", + "phone": "9125524396", + "address": { + "street": "5237 James Loaf", + "city": "Port Justin", + "state": "Iowa", + "zip": "01890", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T09:56:33.486Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 160.39, + "subtotal": 320.78 + } + ], + "total_price": 320.78, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 18.02, + "expected_delivery": { + "$date": "2025-05-19T09:56:33.486Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.449Z" + } + }, + { + "order_id": "e50e9ef4-d496-4651-8c0c-d1284ce591a7", + "customer": { + "customer_id": "c8e0f9a4-3b42-447c-82de-42e3d85d15ea", + "name": "Peter Bishop", + "email": "kimberly93@example.org", + "phone": "(584)666-9822x0056", + "address": { + "street": "38171 Stephanie Inlet", + "city": "North Danastad", + "state": "Mississippi", + "zip": "28090", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T06:35:02.292Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 104.27, + "subtotal": 104.27 + }, + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 72.96, + "subtotal": 145.92 + }, + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 173.8, + "subtotal": 173.8 + } + ], + "total_price": 423.99, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 12.39, + "expected_delivery": { + "$date": "2025-05-12T06:35:02.292Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.450Z" + } + }, + { + "order_id": "1ef09faa-1d56-4555-8449-0a1018cfc192", + "customer": { + "customer_id": "9bcb0bbc-7115-44bb-8754-612af17db7c2", + "name": "Francisco Gonzalez", + "email": "obrown@example.net", + "phone": "274.852.1645x2390", + "address": { + "street": "323 Stanley Place", + "city": "Brittanybury", + "state": "Maryland", + "zip": "61601", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T21:49:42.367Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 178.85, + "subtotal": 178.85 + }, + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 170.9, + "subtotal": 341.8 + }, + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 1, + "unit_price": 104.9, + "subtotal": 104.9 + } + ], + "total_price": 625.55, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 17.55, + "expected_delivery": { + "$date": "2025-05-12T21:49:42.367Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.450Z" + } + }, + { + "order_id": "04bfee2d-9434-4717-b635-2cc8e907a9c2", + "customer": { + "customer_id": "de7d16c2-aa95-46b8-b7ec-b876c37081c2", + "name": "Joseph Haney", + "email": "cesarbeck@example.org", + "phone": "+1-309-287-6699x49901", + "address": { + "street": "265 Hansen Lakes", + "city": "Larrytown", + "state": "Connecticut", + "zip": "62366", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T08:18:48.557Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 139.73, + "subtotal": 139.73 + } + ], + "total_price": 139.73, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 13.52, + "expected_delivery": { + "$date": "2025-05-17T08:18:48.557Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.450Z" + } + }, + { + "order_id": "db3c3090-390f-4590-8b24-58db457705f6", + "customer": { + "customer_id": "80c70ad2-72ed-426b-a950-d236c1cb9c15", + "name": "David Thomas", + "email": "marshdonna@example.org", + "phone": "410.816.1916", + "address": { + "street": "65757 Odom Manors Suite 345", + "city": "South Paul", + "state": "Texas", + "zip": "57870", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T15:18:30.631Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 1, + "unit_price": 113.67, + "subtotal": 113.67 + }, + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 2, + "unit_price": 174.1, + "subtotal": 348.2 + } + ], + "total_price": 461.87, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 19.45, + "expected_delivery": { + "$date": "2025-05-10T15:18:30.631Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.450Z" + } + }, + { + "order_id": "66020c22-8ff5-46f1-9f46-943992b4661b", + "customer": { + "customer_id": "c3b90d33-b8d5-420b-9321-08f10ace3940", + "name": "Brian Patel", + "email": "traci58@example.net", + "phone": "+1-821-737-7901x0285", + "address": { + "street": "797 Palmer Run", + "city": "Port Wesleymouth", + "state": "Oregon", + "zip": "29347", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T15:08:38.572Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 112.29, + "subtotal": 224.58 + } + ], + "total_price": 224.58, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 5.25, + "expected_delivery": { + "$date": "2025-05-13T15:08:38.572Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.451Z" + } + }, + { + "order_id": "4a212e8a-f0a8-4e24-a7e8-f8349ca3bdda", + "customer": { + "customer_id": "c911165e-63f1-4f19-b5d5-79ad90c5eddf", + "name": "George Fuller", + "email": "ruizkevin@example.org", + "phone": "226.897.2332x38717", + "address": { + "street": "08789 Ryan Crescent", + "city": "West Peter", + "state": "North Dakota", + "zip": "59296", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T00:21:34.133Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 157.09, + "subtotal": 157.09 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 79.76, + "subtotal": 159.52 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 150.37, + "subtotal": 300.74 + } + ], + "total_price": 617.35, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 16.43, + "expected_delivery": { + "$date": "2025-05-12T00:21:34.133Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.451Z" + } + }, + { + "order_id": "a9512e7b-28d6-44b4-a879-80e7eb9a01e2", + "customer": { + "customer_id": "44197b90-7dd1-481b-9916-76dee91950ce", + "name": "Dorothy Richardson", + "email": "abigail28@example.net", + "phone": "001-811-593-5510x64706", + "address": { + "street": "35000 Kevin Shore", + "city": "Mcknighthaven", + "state": "North Dakota", + "zip": "01405", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T17:52:33.294Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 71.56, + "subtotal": 143.12 + }, + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 147.16, + "subtotal": 147.16 + }, + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 170.67, + "subtotal": 341.34 + } + ], + "total_price": 631.62, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 16.98, + "expected_delivery": { + "$date": "2025-05-20T17:52:33.294Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.451Z" + } + }, + { + "order_id": "3b0a742a-11ab-4911-afcd-23b9a03d756e", + "customer": { + "customer_id": "0efe3a56-0db6-40e0-9452-c002e2d247fd", + "name": "Candice Irwin", + "email": "robertmedina@example.com", + "phone": "2757278407", + "address": { + "street": "6983 Wagner Club", + "city": "Wilkersonburgh", + "state": "Maine", + "zip": "71727", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T04:11:41.124Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 114.66, + "subtotal": 229.32 + } + ], + "total_price": 229.32, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 9.68, + "expected_delivery": { + "$date": "2025-05-19T04:11:41.124Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.451Z" + } + }, + { + "order_id": "57413303-21d1-40ae-98f9-cc19ec35db32", + "customer": { + "customer_id": "f26919a1-e079-4ad0-bf60-e99f21a7f79c", + "name": "Kristin Shaw", + "email": "kara68@example.com", + "phone": "001-992-826-6492x36576", + "address": { + "street": "8980 Small Islands", + "city": "South Ralph", + "state": "California", + "zip": "18390", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T01:12:02.116Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 67.73, + "subtotal": 135.46 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 169.49, + "subtotal": 169.49 + } + ], + "total_price": 304.95, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 9.68, + "expected_delivery": { + "$date": "2025-05-17T01:12:02.116Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.451Z" + } + }, + { + "order_id": "f410fbbe-fa83-41b1-9580-53b9e60ead6e", + "customer": { + "customer_id": "5c8d17b6-ae9f-4642-b7e7-aa06203f2bc1", + "name": "Frank Porter", + "email": "richardharris@example.com", + "phone": "253.535.9913x575", + "address": { + "street": "067 Stacy Lodge Apt. 351", + "city": "Port Scott", + "state": "Rhode Island", + "zip": "63741", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T23:40:25.129Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 119.25, + "subtotal": 238.5 + }, + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 178.42, + "subtotal": 356.84 + }, + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 1, + "unit_price": 132.84, + "subtotal": 132.84 + } + ], + "total_price": 728.18, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 7.81, + "expected_delivery": { + "$date": "2025-05-16T23:40:25.129Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.452Z" + } + }, + { + "order_id": "b3ead5f5-2dcf-42ba-810a-ebdf33e7cd3a", + "customer": { + "customer_id": "626a75e2-5820-47c6-a782-38fa9512ddfb", + "name": "Cheryl Jarvis", + "email": "wmorris@example.com", + "phone": "001-746-525-7687x995", + "address": { + "street": "0152 Patricia Club", + "city": "Port Vanessa", + "state": "Vermont", + "zip": "92580", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T22:34:22.057Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 99.5, + "subtotal": 199.0 + } + ], + "total_price": 199.0, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 14.2, + "expected_delivery": { + "$date": "2025-05-16T22:34:22.057Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.452Z" + } + }, + { + "order_id": "f6be1cdb-2697-478b-8155-5b635b372d6b", + "customer": { + "customer_id": "7aa7a7fc-da7f-4025-a89c-8b91fce7d34c", + "name": "Kari Webb", + "email": "charlotte39@example.org", + "phone": "001-768-357-7329", + "address": { + "street": "56849 Faulkner Mountain", + "city": "Johnborough", + "state": "Vermont", + "zip": "19868", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T23:45:47.800Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 72.92, + "subtotal": 145.84 + } + ], + "total_price": 145.84, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 15.94, + "expected_delivery": { + "$date": "2025-05-11T23:45:47.800Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.452Z" + } + }, + { + "order_id": "05951419-468b-4a94-bbe6-b99525151bf4", + "customer": { + "customer_id": "f48879ba-967a-4f29-b1a5-28496bad28ae", + "name": "Timothy Oliver", + "email": "gutierrezrichard@example.net", + "phone": "588-483-6903", + "address": { + "street": "35645 Allen Mission Apt. 620", + "city": "Lake Caitlinfurt", + "state": "Kansas", + "zip": "35921", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T03:28:36.506Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 112.75, + "subtotal": 112.75 + }, + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 154.67, + "subtotal": 154.67 + } + ], + "total_price": 267.42, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 12.59, + "expected_delivery": { + "$date": "2025-05-13T03:28:36.506Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.452Z" + } + }, + { + "order_id": "562ac2be-7d86-469d-9362-f8c617b25301", + "customer": { + "customer_id": "1af188f4-55e2-4791-886e-a6c7742d7d76", + "name": "Kristen Jenkins", + "email": "michael64@example.org", + "phone": "001-621-620-7894", + "address": { + "street": "066 Mathews Fords Suite 258", + "city": "Meganberg", + "state": "Ohio", + "zip": "81149", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T10:06:15.523Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 2, + "unit_price": 88.1, + "subtotal": 176.2 + } + ], + "total_price": 176.2, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 15.7, + "expected_delivery": { + "$date": "2025-05-11T10:06:15.523Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.453Z" + } + }, + { + "order_id": "f55348af-5c79-4714-b8f4-c80781a85d55", + "customer": { + "customer_id": "d9daa10d-580b-4ac9-b6d6-faad60356431", + "name": "Michelle Russell", + "email": "kirkthomas@example.net", + "phone": "901-552-1763x99591", + "address": { + "street": "86014 Lisa Bridge", + "city": "Sarafort", + "state": "Kansas", + "zip": "54592", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T07:45:25.648Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 121.21, + "subtotal": 121.21 + }, + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 2, + "unit_price": 149.6, + "subtotal": 299.2 + } + ], + "total_price": 420.41, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 19.94, + "expected_delivery": { + "$date": "2025-05-13T07:45:25.648Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.453Z" + } + }, + { + "order_id": "aa1a89e4-fb58-4bc9-9b28-047b26a54ff2", + "customer": { + "customer_id": "2d201c2d-491d-4b6d-8ce7-149240e777c2", + "name": "Amy Henderson", + "email": "vleonard@example.com", + "phone": "(538)727-9283", + "address": { + "street": "674 Porter Mountain Apt. 382", + "city": "Port James", + "state": "Utah", + "zip": "84256", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T13:15:20.214Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 165.03, + "subtotal": 165.03 + }, + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 157.9, + "subtotal": 157.9 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 164.78, + "subtotal": 164.78 + } + ], + "total_price": 487.71, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 15.39, + "expected_delivery": { + "$date": "2025-05-19T13:15:20.214Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.453Z" + } + }, + { + "order_id": "ab4e210f-df2a-46c6-ac90-60606c7926b5", + "customer": { + "customer_id": "eaa9ae9f-8970-4b80-9919-85c4d516187c", + "name": "Carolyn Davis", + "email": "lisa86@example.com", + "phone": "+1-268-957-8398x3691", + "address": { + "street": "8299 Suzanne Way Suite 857", + "city": "North Pamelashire", + "state": "Oklahoma", + "zip": "19074", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T20:37:07.062Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 2, + "unit_price": 64.02, + "subtotal": 128.04 + } + ], + "total_price": 128.04, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 11.12, + "expected_delivery": { + "$date": "2025-05-19T20:37:07.062Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.453Z" + } + }, + { + "order_id": "478c5b32-2a67-45b9-8ec8-c3a9b08474ab", + "customer": { + "customer_id": "d463876d-0be2-4c6e-b448-41e0829f1175", + "name": "Justin Wallace", + "email": "tmoore@example.net", + "phone": "001-607-979-7618x856", + "address": { + "street": "9657 Jordan Locks Apt. 259", + "city": "Javierville", + "state": "Utah", + "zip": "56827", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T17:07:20.576Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 62.06, + "subtotal": 62.06 + }, + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 2, + "unit_price": 136.29, + "subtotal": 272.58 + } + ], + "total_price": 334.64, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 5.93, + "expected_delivery": { + "$date": "2025-05-18T17:07:20.576Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.453Z" + } + }, + { + "order_id": "ba604f1a-17c5-441c-b695-ce9c2a4708fe", + "customer": { + "customer_id": "574732c6-47c6-452a-b8e3-3c897732c3e5", + "name": "Melissa Moore", + "email": "sroberts@example.net", + "phone": "(732)504-8691x7600", + "address": { + "street": "9340 Sandra Keys", + "city": "Paulport", + "state": "Iowa", + "zip": "10147", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T04:57:11.506Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 2, + "unit_price": 62.67, + "subtotal": 125.34 + } + ], + "total_price": 125.34, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 6.17, + "expected_delivery": { + "$date": "2025-05-17T04:57:11.506Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.454Z" + } + }, + { + "order_id": "87f476e5-5648-4414-915e-8f7a8b256abf", + "customer": { + "customer_id": "e0cc8238-814a-4da3-8974-f847c60d9f4d", + "name": "Annette Bailey", + "email": "brianlane@example.net", + "phone": "453.785.6681x2759", + "address": { + "street": "509 Danielle Walks", + "city": "North Terrancehaven", + "state": "Texas", + "zip": "68195", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T00:52:20.468Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 1, + "unit_price": 76.12, + "subtotal": 76.12 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 1, + "unit_price": 162.36, + "subtotal": 162.36 + } + ], + "total_price": 238.48, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 13.57, + "expected_delivery": { + "$date": "2025-05-13T00:52:20.468Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.454Z" + } + }, + { + "order_id": "6956e6b2-a69e-4721-8868-95525d9458d4", + "customer": { + "customer_id": "209d33bd-9605-4eb8-aef9-754a07656b2a", + "name": "Kimberly Jones MD", + "email": "uwood@example.com", + "phone": "731.946.1888x811", + "address": { + "street": "0099 Juan Trace Suite 635", + "city": "Port Stephaniebury", + "state": "Delaware", + "zip": "21920", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T14:04:10.541Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 168.16, + "subtotal": 336.32 + }, + { + "model_id": "SHOE-003", + "name": "Run Runner", + "category": "Running", + "quantity": 2, + "unit_price": 90.41, + "subtotal": 180.82 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 127.33, + "subtotal": 127.33 + } + ], + "total_price": 644.47, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 18.31, + "expected_delivery": { + "$date": "2025-05-17T14:04:10.541Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.454Z" + } + }, + { + "order_id": "20287bb6-1efd-461c-92a1-f7d492d46c62", + "customer": { + "customer_id": "367bb51a-5740-4a67-8d7c-03ec8c59772b", + "name": "William Brown", + "email": "jeremy91@example.org", + "phone": "955-893-5050", + "address": { + "street": "416 Brooke Cape", + "city": "Stephanieshire", + "state": "Montana", + "zip": "54702", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T23:42:22.755Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 70.19, + "subtotal": 70.19 + }, + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 64.84, + "subtotal": 129.68 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 74.97, + "subtotal": 74.97 + } + ], + "total_price": 274.84, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 8.74, + "expected_delivery": { + "$date": "2025-05-15T23:42:22.755Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.454Z" + } + }, + { + "order_id": "c8c4c49d-13e7-46fe-b3c2-50a6c9e3e6f6", + "customer": { + "customer_id": "9292430e-9a53-4f62-87d2-1435c9863497", + "name": "Sarah Nguyen", + "email": "ashleychoi@example.org", + "phone": "(603)443-4519x48688", + "address": { + "street": "054 Hickman Street", + "city": "New Ericaside", + "state": "Tennessee", + "zip": "74932", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T20:32:35.929Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 66.64, + "subtotal": 133.28 + } + ], + "total_price": 133.28, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 17.82, + "expected_delivery": { + "$date": "2025-05-14T20:32:35.929Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.455Z" + } + }, + { + "order_id": "4b000763-cb25-4358-9136-00222713579d", + "customer": { + "customer_id": "7f08f012-c134-4610-b484-3b7c33d80ae9", + "name": "Frances Schmidt", + "email": "schultzemily@example.org", + "phone": "(362)445-0420", + "address": { + "street": "724 Bryant Brooks", + "city": "Mcbrideland", + "state": "Michigan", + "zip": "01557", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T23:51:44.413Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 119.94, + "subtotal": 119.94 + }, + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 98.75, + "subtotal": 197.5 + } + ], + "total_price": 317.44, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 14.94, + "expected_delivery": { + "$date": "2025-05-11T23:51:44.413Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.455Z" + } + }, + { + "order_id": "b94ff2d1-9493-43e2-8042-39456f3e334f", + "customer": { + "customer_id": "638e4cd3-3248-4151-90f7-fbd485cbd0c2", + "name": "Heather Murphy", + "email": "nedwards@example.org", + "phone": "+1-728-923-7543x4571", + "address": { + "street": "28784 Becker Islands Suite 978", + "city": "Lake Pamelafurt", + "state": "Connecticut", + "zip": "18037", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T14:58:12.542Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 170.47, + "subtotal": 170.47 + } + ], + "total_price": 170.47, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 7.44, + "expected_delivery": { + "$date": "2025-05-17T14:58:12.542Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.455Z" + } + }, + { + "order_id": "ea4c64b3-c6a3-404c-8de6-5ee55be3945a", + "customer": { + "customer_id": "566b00c4-b0c0-48a8-b954-56674493f5b6", + "name": "Blake Miller", + "email": "danielgarcia@example.com", + "phone": "318-257-3505x84124", + "address": { + "street": "10569 Gonzalez Harbor", + "city": "West Danielville", + "state": "Nebraska", + "zip": "01486", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T01:09:36.242Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 129.43, + "subtotal": 258.86 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 95.34, + "subtotal": 190.68 + } + ], + "total_price": 449.54, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 7.52, + "expected_delivery": { + "$date": "2025-05-13T01:09:36.242Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.455Z" + } + }, + { + "order_id": "21c944c4-4ffb-4858-a81b-27434c4a7569", + "customer": { + "customer_id": "feb0ddf4-baf7-4990-8fba-4562cd9f94ec", + "name": "Kenneth Holden", + "email": "ochoaconnor@example.com", + "phone": "001-798-935-0094", + "address": { + "street": "19052 Veronica Wells", + "city": "Whiteton", + "state": "Iowa", + "zip": "03033", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T12:31:11.895Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 177.72, + "subtotal": 355.44 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 173.18, + "subtotal": 346.36 + } + ], + "total_price": 701.8, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 13.06, + "expected_delivery": { + "$date": "2025-05-21T12:31:11.895Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.456Z" + } + }, + { + "order_id": "b637337b-dcf0-4ea4-aa0a-f591d734e302", + "customer": { + "customer_id": "787888d7-e457-44ba-b64a-a7cc74222e1c", + "name": "Pamela Richards", + "email": "klewis@example.net", + "phone": "(895)827-9277", + "address": { + "street": "620 Melissa Dale", + "city": "Kellyfurt", + "state": "North Carolina", + "zip": "16232", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T02:39:17.148Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 65.6, + "subtotal": 131.2 + } + ], + "total_price": 131.2, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 14.19, + "expected_delivery": { + "$date": "2025-05-10T02:39:17.148Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.456Z" + } + }, + { + "order_id": "9c7e1669-10df-4337-b5a6-59acdc3d9bdc", + "customer": { + "customer_id": "94d8a72c-1c46-4f22-99c3-a935eaf37d63", + "name": "Vanessa Liu", + "email": "kboyd@example.org", + "phone": "9926828698", + "address": { + "street": "974 Tamara Summit", + "city": "South Jeremymouth", + "state": "Illinois", + "zip": "99735", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T01:47:47.649Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 130.49, + "subtotal": 260.98 + }, + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 123.79, + "subtotal": 123.79 + } + ], + "total_price": 384.77, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 10.56, + "expected_delivery": { + "$date": "2025-05-21T01:47:47.649Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.456Z" + } + }, + { + "order_id": "010f8e43-54fb-49ef-b059-778aa2f7eea2", + "customer": { + "customer_id": "ffd749df-b1e2-4e6b-9912-d5755b8b288b", + "name": "Theodore Snyder", + "email": "frodgers@example.com", + "phone": "+1-424-702-5053x361", + "address": { + "street": "05209 Tonya Ford Suite 386", + "city": "North Christopherborough", + "state": "Louisiana", + "zip": "63132", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T00:52:39.136Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 144.03, + "subtotal": 288.06 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 1, + "unit_price": 169.84, + "subtotal": 169.84 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 74.71, + "subtotal": 74.71 + } + ], + "total_price": 532.61, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 6.26, + "expected_delivery": { + "$date": "2025-05-10T00:52:39.136Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.456Z" + } + }, + { + "order_id": "63dbbcae-5885-40af-8611-ecb4c0296591", + "customer": { + "customer_id": "c8be4558-a31c-4fd0-8527-ee7acdaf5037", + "name": "William Gomez", + "email": "johnsonrobert@example.net", + "phone": "423.608.1717", + "address": { + "street": "8113 Emily Islands Apt. 487", + "city": "Harrystad", + "state": "Ohio", + "zip": "75350", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T15:33:25.731Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 107.11, + "subtotal": 214.22 + }, + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 151.35, + "subtotal": 302.7 + }, + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 140.53, + "subtotal": 281.06 + } + ], + "total_price": 797.98, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 10.57, + "expected_delivery": { + "$date": "2025-05-16T15:33:25.731Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.456Z" + } + }, + { + "order_id": "63f7b1fd-f9f9-412e-8d12-156b47171c5f", + "customer": { + "customer_id": "e95d516d-e94f-44ce-a4f4-1cce72307ff6", + "name": "Frank Hall", + "email": "jacobguerrero@example.net", + "phone": "492-289-6135x1836", + "address": { + "street": "07616 Shaw Stravenue Suite 528", + "city": "South James", + "state": "Michigan", + "zip": "95118", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T03:14:34.144Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 130.42, + "subtotal": 130.42 + } + ], + "total_price": 130.42, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 13.08, + "expected_delivery": { + "$date": "2025-05-14T03:14:34.144Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.457Z" + } + }, + { + "order_id": "8b53884b-538a-42be-9ae9-beec1c1ada19", + "customer": { + "customer_id": "53f35258-cbaf-4672-a7cb-816a73631d41", + "name": "Justin Chavez", + "email": "amyfuller@example.net", + "phone": "(396)363-0567x5692", + "address": { + "street": "9905 Bradley Dam Suite 962", + "city": "East Debramouth", + "state": "Minnesota", + "zip": "01347", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T03:46:54.191Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 150.67, + "subtotal": 150.67 + } + ], + "total_price": 150.67, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 13.41, + "expected_delivery": { + "$date": "2025-05-19T03:46:54.191Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.457Z" + } + }, + { + "order_id": "9beeb1b7-f5e3-47b0-9274-d09b25876dfa", + "customer": { + "customer_id": "c3463e7b-3bee-46c6-aa35-8f8c7964681c", + "name": "James Marshall", + "email": "christopher71@example.net", + "phone": "(843)747-9340x2682", + "address": { + "street": "77066 Larry Expressway Suite 393", + "city": "North Latoya", + "state": "New York", + "zip": "29487", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T03:46:27.040Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 2, + "unit_price": 166.77, + "subtotal": 333.54 + }, + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 130.66, + "subtotal": 130.66 + }, + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 1, + "unit_price": 178.81, + "subtotal": 178.81 + } + ], + "total_price": 643.01, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 17.92, + "expected_delivery": { + "$date": "2025-05-17T03:46:27.040Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.457Z" + } + }, + { + "order_id": "6c4debb5-2aa8-4a28-b7e8-1e9bd03fc151", + "customer": { + "customer_id": "cdf2c64d-0d1e-4a3f-a89f-31694bd8ec50", + "name": "Kristina Turner", + "email": "whitelori@example.com", + "phone": "+1-380-439-6295x79823", + "address": { + "street": "44895 John Isle", + "city": "Kathrynside", + "state": "Minnesota", + "zip": "19430", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T00:14:32.666Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 62.64, + "subtotal": 125.28 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 67.79, + "subtotal": 135.58 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 113.9, + "subtotal": 227.8 + } + ], + "total_price": 488.66, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 18.3, + "expected_delivery": { + "$date": "2025-05-10T00:14:32.666Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.457Z" + } + }, + { + "order_id": "d6613ff7-4eb8-4eb9-b4b0-57050d8a364a", + "customer": { + "customer_id": "9050db6a-8aed-47a8-a402-079f7267f499", + "name": "Heather Richardson", + "email": "scottpatricia@example.com", + "phone": "554.708.3662x7212", + "address": { + "street": "6128 Amy Mission", + "city": "West Justin", + "state": "Florida", + "zip": "15273", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T19:17:49.067Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 126.49, + "subtotal": 252.98 + } + ], + "total_price": 252.98, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 9.21, + "expected_delivery": { + "$date": "2025-05-11T19:17:49.067Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.458Z" + } + }, + { + "order_id": "485c8b18-c69e-47d1-9bdf-6a2f7b3c5a9a", + "customer": { + "customer_id": "5fd7b941-7940-4a52-9cde-2185ed4edf7c", + "name": "Rita Garza", + "email": "julie02@example.org", + "phone": "911-381-2798x60763", + "address": { + "street": "4926 Baldwin Run", + "city": "Lake Jenniferville", + "state": "Iowa", + "zip": "96439", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T18:21:44.471Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 139.29, + "subtotal": 278.58 + } + ], + "total_price": 278.58, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 7.62, + "expected_delivery": { + "$date": "2025-05-17T18:21:44.471Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.458Z" + } + }, + { + "order_id": "a6989613-afe4-4302-bdf7-f3e4831518e6", + "customer": { + "customer_id": "890af652-0066-4f13-bbba-e799df61af77", + "name": "Stacy Blanchard", + "email": "chelseahenderson@example.org", + "phone": "485.467.0880x22398", + "address": { + "street": "630 Jennifer Ferry Apt. 068", + "city": "Johnsonburgh", + "state": "South Dakota", + "zip": "61240", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T12:24:44.201Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 121.47, + "subtotal": 242.94 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 127.63, + "subtotal": 127.63 + } + ], + "total_price": 370.57, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 10.69, + "expected_delivery": { + "$date": "2025-05-20T12:24:44.201Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.458Z" + } + }, + { + "order_id": "934d3680-bf21-4cca-9b43-a0c1cca408be", + "customer": { + "customer_id": "56a2b1b4-473c-4f96-ab29-7db36dbc64d3", + "name": "Robert Nelson", + "email": "ccannon@example.org", + "phone": "662.517.5304", + "address": { + "street": "05886 Thomas Manor Suite 241", + "city": "Lake Michaelville", + "state": "North Dakota", + "zip": "32423", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T10:30:18.877Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 98.94, + "subtotal": 98.94 + }, + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 106.49, + "subtotal": 212.98 + }, + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 115.51, + "subtotal": 231.02 + } + ], + "total_price": 542.94, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 19.16, + "expected_delivery": { + "$date": "2025-05-17T10:30:18.877Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.458Z" + } + }, + { + "order_id": "ae013b5c-7543-496c-a201-92a730cf0d04", + "customer": { + "customer_id": "966863d6-448b-43cc-a601-9e631086894e", + "name": "Dawn Weaver", + "email": "ajones@example.com", + "phone": "001-344-673-2312", + "address": { + "street": "23904 Nicholas Islands", + "city": "Amandastad", + "state": "Iowa", + "zip": "45530", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T14:04:00.608Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 145.6, + "subtotal": 145.6 + }, + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 131.0, + "subtotal": 262.0 + } + ], + "total_price": 407.6, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 11.54, + "expected_delivery": { + "$date": "2025-05-16T14:04:00.608Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.459Z" + } + }, + { + "order_id": "a6c99ce3-dd56-4895-9705-b43bac8c829e", + "customer": { + "customer_id": "de5a0801-668d-4d28-b4bd-3b5e2478fdda", + "name": "Amber Wilson", + "email": "mark65@example.org", + "phone": "648-930-7196", + "address": { + "street": "18643 Fisher Rest Apt. 651", + "city": "Kelleymouth", + "state": "Minnesota", + "zip": "00815", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T06:16:50.715Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 145.34, + "subtotal": 145.34 + }, + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 175.8, + "subtotal": 351.6 + }, + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 1, + "unit_price": 76.95, + "subtotal": 76.95 + } + ], + "total_price": 573.89, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 9.12, + "expected_delivery": { + "$date": "2025-05-15T06:16:50.715Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.459Z" + } + }, + { + "order_id": "1f538020-f90a-425f-a948-d1f0f0438e9d", + "customer": { + "customer_id": "2266e3bf-b4a4-4192-9a1b-3256669ac57f", + "name": "Colleen Patrick", + "email": "kimberlyhorton@example.net", + "phone": "643.725.9418x9863", + "address": { + "street": "672 Edward Cove", + "city": "Brownside", + "state": "Kentucky", + "zip": "58914", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T17:50:58.275Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-012", + "name": "Understand Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 72.17, + "subtotal": 72.17 + } + ], + "total_price": 72.17, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 12.45, + "expected_delivery": { + "$date": "2025-05-11T17:50:58.275Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.459Z" + } + }, + { + "order_id": "32a68976-abb1-4a60-a456-a16b4bb2f161", + "customer": { + "customer_id": "a03a1e94-2df6-4953-a1b7-ac55562d49f5", + "name": "Mark Lee", + "email": "crystal13@example.net", + "phone": "475-304-9284x8881", + "address": { + "street": "0219 Butler Freeway", + "city": "Juanbury", + "state": "Texas", + "zip": "28910", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T06:30:05.247Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 95.06, + "subtotal": 190.12 + } + ], + "total_price": 190.12, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 7.53, + "expected_delivery": { + "$date": "2025-05-20T06:30:05.247Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.459Z" + } + }, + { + "order_id": "47e6033d-18e2-44d7-9abb-a74225afe747", + "customer": { + "customer_id": "a44a1bfe-15c9-4296-9a3c-515ef4927601", + "name": "Casey Dean", + "email": "allenhouse@example.com", + "phone": "+1-885-507-2595x89150", + "address": { + "street": "9368 Morris Avenue", + "city": "New Marc", + "state": "Missouri", + "zip": "87323", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T19:50:36.908Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 179.37, + "subtotal": 179.37 + } + ], + "total_price": 179.37, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 6.01, + "expected_delivery": { + "$date": "2025-05-10T19:50:36.908Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.460Z" + } + }, + { + "order_id": "e11663e9-4560-4f9c-a44a-40e557e1e5db", + "customer": { + "customer_id": "4f902b39-e70d-4b6c-a33a-92d2c9dbe396", + "name": "Joshua Nelson", + "email": "xjones@example.com", + "phone": "907.452.3816x8301", + "address": { + "street": "2626 Paige View Suite 777", + "city": "West Andrefurt", + "state": "New York", + "zip": "41892", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T15:03:41.436Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 174.36, + "subtotal": 348.72 + }, + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 118.37, + "subtotal": 118.37 + }, + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 91.62, + "subtotal": 91.62 + } + ], + "total_price": 558.71, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 17.57, + "expected_delivery": { + "$date": "2025-05-08T15:03:41.436Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.460Z" + } + }, + { + "order_id": "2740e55a-6f35-4741-93f1-a05c33d3022b", + "customer": { + "customer_id": "207e1825-36b2-44d8-b154-59a7557b5240", + "name": "Jason Nolan", + "email": "marc81@example.org", + "phone": "8364203328", + "address": { + "street": "1655 Austin Wells", + "city": "North Sherryborough", + "state": "Arizona", + "zip": "67491", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T01:06:10.733Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 1, + "unit_price": 89.3, + "subtotal": 89.3 + } + ], + "total_price": 89.3, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 13.96, + "expected_delivery": { + "$date": "2025-05-17T01:06:10.733Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.460Z" + } + }, + { + "order_id": "711f0820-a56d-420f-9b87-a68d0e45ad96", + "customer": { + "customer_id": "8090b90e-b9db-4979-b8a1-c96b861b14ff", + "name": "Carlos Gilmore", + "email": "michaelbarber@example.net", + "phone": "(537)955-8912", + "address": { + "street": "23702 Horn Isle", + "city": "Deborahmouth", + "state": "North Dakota", + "zip": "65374", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T10:17:58.000Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 2, + "unit_price": 118.12, + "subtotal": 236.24 + }, + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 172.47, + "subtotal": 172.47 + }, + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 157.11, + "subtotal": 314.22 + } + ], + "total_price": 722.93, + "payment_method": "Apple Pay", + "shipping_method": "Standard", + "shipping_cost": 13.87, + "expected_delivery": { + "$date": "2025-05-17T10:17:58.000Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.460Z" + } + }, + { + "order_id": "627600ca-89d7-4a0a-8063-70d6cc70669a", + "customer": { + "customer_id": "257a3420-2806-437b-9350-004e667c8732", + "name": "Jessica Wilson", + "email": "huangjessica@example.org", + "phone": "001-867-828-5013x355", + "address": { + "street": "0768 Castaneda Common", + "city": "New Tina", + "state": "North Carolina", + "zip": "10807", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T01:49:08.415Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 83.22, + "subtotal": 166.44 + } + ], + "total_price": 166.44, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 11.34, + "expected_delivery": { + "$date": "2025-05-13T01:49:08.415Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.461Z" + } + }, + { + "order_id": "1a0dcd05-6e02-4591-9aea-86b11a99f928", + "customer": { + "customer_id": "892961bf-a70b-490f-a089-54c84341afa9", + "name": "Stephanie Johnson", + "email": "bryanrios@example.com", + "phone": "(439)325-4763x030", + "address": { + "street": "4339 Wilson Ramp", + "city": "Leechester", + "state": "Delaware", + "zip": "64122", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T09:46:07.314Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-016", + "name": "Large Runner", + "category": "Running", + "quantity": 1, + "unit_price": 149.28, + "subtotal": 149.28 + }, + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 2, + "unit_price": 174.57, + "subtotal": 349.14 + }, + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 166.1, + "subtotal": 166.1 + } + ], + "total_price": 664.52, + "payment_method": "PayPal", + "shipping_method": "Express", + "shipping_cost": 7.04, + "expected_delivery": { + "$date": "2025-05-10T09:46:07.314Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.461Z" + } + }, + { + "order_id": "5bba0eeb-ebf2-493b-b283-56e2ebd2d04b", + "customer": { + "customer_id": "207088f1-03f6-441e-83e9-b0a281157afa", + "name": "Thomas Ward", + "email": "ajohnson@example.org", + "phone": "325.838.3172x62889", + "address": { + "street": "693 Beverly Courts", + "city": "Sharonport", + "state": "Vermont", + "zip": "15278", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T03:53:26.348Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 151.86, + "subtotal": 151.86 + } + ], + "total_price": 151.86, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 16.28, + "expected_delivery": { + "$date": "2025-05-15T03:53:26.348Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.461Z" + } + }, + { + "order_id": "9b9a9ea3-79e4-4694-b7da-e0b436030c8b", + "customer": { + "customer_id": "913b67a7-9bb4-482c-84be-a192fec78f1a", + "name": "Adam James", + "email": "linda37@example.net", + "phone": "(798)279-2826", + "address": { + "street": "24453 Sierra Lakes Suite 234", + "city": "Masonberg", + "state": "Florida", + "zip": "41363", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T02:04:00.569Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-002", + "name": "Politics Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 60.61, + "subtotal": 60.61 + }, + { + "model_id": "SHOE-006", + "name": "Source Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 61.01, + "subtotal": 61.01 + } + ], + "total_price": 121.62, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 9.36, + "expected_delivery": { + "$date": "2025-05-18T02:04:00.569Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.461Z" + } + }, + { + "order_id": "ba21925b-39cc-40aa-b002-f3691e327809", + "customer": { + "customer_id": "3d0eb041-45a8-41be-a04b-373a58ff13d9", + "name": "Katie Dunn", + "email": "tdeleon@example.net", + "phone": "329-234-7518x97971", + "address": { + "street": "8548 Herring Rue", + "city": "Port Anthonymouth", + "state": "Utah", + "zip": "67312", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T02:35:23.798Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 151.42, + "subtotal": 151.42 + }, + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 1, + "unit_price": 147.46, + "subtotal": 147.46 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 158.05, + "subtotal": 316.1 + } + ], + "total_price": 614.98, + "payment_method": "Credit Card", + "shipping_method": "Express", + "shipping_cost": 12.33, + "expected_delivery": { + "$date": "2025-05-13T02:35:23.798Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.462Z" + } + }, + { + "order_id": "07134df1-819e-49f5-9e6d-ab485e873468", + "customer": { + "customer_id": "30f86d4a-6e20-4231-9720-c911390fe6e2", + "name": "Rachel Mack", + "email": "amcintyre@example.com", + "phone": "709-977-8598", + "address": { + "street": "7093 Bailey Plaza Apt. 120", + "city": "Jasmineside", + "state": "Connecticut", + "zip": "73966", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T23:48:20.199Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 80.15, + "subtotal": 160.3 + } + ], + "total_price": 160.3, + "payment_method": "Google Pay", + "shipping_method": "Express", + "shipping_cost": 8.52, + "expected_delivery": { + "$date": "2025-05-19T23:48:20.199Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.462Z" + } + }, + { + "order_id": "a5cb7c25-3602-421a-9c21-e0fbc0b6bf3d", + "customer": { + "customer_id": "2b2b6df5-f0d7-4dca-9716-5828072be737", + "name": "Evan Owens", + "email": "debrashields@example.com", + "phone": "+1-420-250-7908", + "address": { + "street": "797 Greene Islands Suite 845", + "city": "Houstonhaven", + "state": "Arizona", + "zip": "63742", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T10:47:15.562Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 2, + "unit_price": 118.66, + "subtotal": 237.32 + }, + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 105.2, + "subtotal": 210.4 + }, + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 97.52, + "subtotal": 97.52 + } + ], + "total_price": 545.24, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 13.72, + "expected_delivery": { + "$date": "2025-05-13T10:47:15.562Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.462Z" + } + }, + { + "order_id": "148c0f98-ac23-4871-bd06-228b6fc29118", + "customer": { + "customer_id": "f027cf57-940b-41d6-98d7-2c6a30f26d90", + "name": "Sabrina Holmes", + "email": "brownabigail@example.com", + "phone": "8623137277", + "address": { + "street": "55568 Copeland Light", + "city": "Gregoryview", + "state": "Tennessee", + "zip": "38918", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T09:45:44.971Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 2, + "unit_price": 170.47, + "subtotal": 340.94 + }, + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 67.8, + "subtotal": 67.8 + }, + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 76.79, + "subtotal": 153.58 + } + ], + "total_price": 562.32, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 13.53, + "expected_delivery": { + "$date": "2025-05-21T09:45:44.971Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.462Z" + } + }, + { + "order_id": "b30d3a3b-f286-4643-a6f0-583a9f344083", + "customer": { + "customer_id": "932c9291-c886-46db-a2e4-56b0099496e2", + "name": "Wesley Dunn", + "email": "riverathomas@example.com", + "phone": "(622)750-2420x465", + "address": { + "street": "98083 Danny Row", + "city": "Rogerston", + "state": "South Dakota", + "zip": "43142", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T05:19:41.314Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 1, + "unit_price": 136.06, + "subtotal": 136.06 + }, + { + "model_id": "SHOE-010", + "name": "Seat Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 157.9, + "subtotal": 315.8 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 1, + "unit_price": 166.04, + "subtotal": 166.04 + } + ], + "total_price": 617.9, + "payment_method": "Credit Card", + "shipping_method": "Overnight", + "shipping_cost": 8.67, + "expected_delivery": { + "$date": "2025-05-17T05:19:41.314Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.462Z" + } + }, + { + "order_id": "37db650f-a573-4fc9-a41e-0604e4b1bec8", + "customer": { + "customer_id": "05e99d7b-2eee-433c-af3f-e99f18c2dad9", + "name": "Laura Adams", + "email": "grojas@example.net", + "phone": "663-843-8151", + "address": { + "street": "55305 Miller Trafficway", + "city": "West Andrewborough", + "state": "Connecticut", + "zip": "83315", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T09:43:52.784Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 129.93, + "subtotal": 259.86 + }, + { + "model_id": "SHOE-007", + "name": "Star Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 64.23, + "subtotal": 128.46 + }, + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 136.99, + "subtotal": 273.98 + } + ], + "total_price": 662.3, + "payment_method": "PayPal", + "shipping_method": "Overnight", + "shipping_cost": 18.84, + "expected_delivery": { + "$date": "2025-05-12T09:43:52.784Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.463Z" + } + }, + { + "order_id": "1e35c00f-7d0b-459e-9a2c-da063399000f", + "customer": { + "customer_id": "cf6bb164-6bed-490f-ac95-1181397b3445", + "name": "William Morris", + "email": "sharvey@example.com", + "phone": "501.733.8624x586", + "address": { + "street": "185 Underwood Corner Apt. 788", + "city": "New Melanie", + "state": "Indiana", + "zip": "03015", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T00:28:49.434Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 133.73, + "subtotal": 133.73 + }, + { + "model_id": "SHOE-014", + "name": "Both Runner", + "category": "Running", + "quantity": 1, + "unit_price": 154.51, + "subtotal": 154.51 + }, + { + "model_id": "SHOE-001", + "name": "Meet Runner", + "category": "Running", + "quantity": 1, + "unit_price": 110.28, + "subtotal": 110.28 + } + ], + "total_price": 398.52, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 6.11, + "expected_delivery": { + "$date": "2025-05-19T00:28:49.434Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.463Z" + } + }, + { + "order_id": "d2a48e1b-f7cd-48ef-b01c-6fcd2b2ba7bf", + "customer": { + "customer_id": "7bcec844-1b7f-4787-89b9-14ddbfeb8f6d", + "name": "Charles Williamson", + "email": "younglisa@example.com", + "phone": "001-668-568-5685", + "address": { + "street": "73621 Adams Walk", + "city": "Matthewsburgh", + "state": "Vermont", + "zip": "16903", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T21:53:33.112Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 67.01, + "subtotal": 67.01 + } + ], + "total_price": 67.01, + "payment_method": "Credit Card", + "shipping_method": "Standard", + "shipping_cost": 11.86, + "expected_delivery": { + "$date": "2025-05-17T21:53:33.112Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.463Z" + } + }, + { + "order_id": "35a8c451-d820-4e36-a0a3-e5e26f58483b", + "customer": { + "customer_id": "55a3e697-b409-42ac-b4f7-00fb2c434837", + "name": "Cynthia Payne", + "email": "cschneider@example.net", + "phone": "+1-995-494-9292x687", + "address": { + "street": "56267 Wilkins Lane Apt. 518", + "city": "Adamsburgh", + "state": "Massachusetts", + "zip": "83907", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-08T20:06:12.139Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-013", + "name": "Article Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 130.59, + "subtotal": 261.18 + }, + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 113.27, + "subtotal": 226.54 + }, + { + "model_id": "SHOE-005", + "name": "Short Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 65.48, + "subtotal": 130.96 + } + ], + "total_price": 618.68, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 12.27, + "expected_delivery": { + "$date": "2025-05-14T20:06:12.139Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.463Z" + } + }, + { + "order_id": "43e7d283-0332-43d8-b27e-7b0f37eae6a2", + "customer": { + "customer_id": "56019679-4aca-4ac1-a50f-48e6f2769696", + "name": "Robert Ramirez", + "email": "ihernandez@example.net", + "phone": "898-629-6822", + "address": { + "street": "49744 Bishop Spring", + "city": "Millerfort", + "state": "Nevada", + "zip": "33961", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-12T02:18:40.042Z" + }, + "status": "Processing", + "items": [ + { + "model_id": "SHOE-015", + "name": "My Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 157.52, + "subtotal": 157.52 + } + ], + "total_price": 157.52, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 16.26, + "expected_delivery": { + "$date": "2025-05-22T02:18:40.042Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.464Z" + } + }, + { + "order_id": "844af8ad-c60d-4756-99f7-16923c2fabd7", + "customer": { + "customer_id": "f09d13cd-9342-4d5d-8c54-43994017fece", + "name": "Jacqueline Santana DVM", + "email": "eclay@example.org", + "phone": "757-478-5684x714", + "address": { + "street": "67828 Glover Avenue", + "city": "Smithton", + "state": "Kansas", + "zip": "39577", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-07T14:28:08.450Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 66.94, + "subtotal": 133.88 + }, + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 147.88, + "subtotal": 147.88 + }, + { + "model_id": "SHOE-018", + "name": "From Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 92.99, + "subtotal": 185.98 + } + ], + "total_price": 467.74, + "payment_method": "Apple Pay", + "shipping_method": "Overnight", + "shipping_cost": 16.31, + "expected_delivery": { + "$date": "2025-05-10T14:28:08.450Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.464Z" + } + }, + { + "order_id": "ab064dde-086e-447c-8833-29aebeafa86a", + "customer": { + "customer_id": "b0ce40d1-083a-4979-b82b-99a4a56e98e5", + "name": "Keith Blackwell", + "email": "herringemily@example.org", + "phone": "+1-583-613-0011x0058", + "address": { + "street": "7021 Rogers Bypass Apt. 364", + "city": "Lake Neil", + "state": "Arizona", + "zip": "38398", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-11T06:52:49.851Z" + }, + "status": "Cancelled", + "items": [ + { + "model_id": "SHOE-008", + "name": "Allow Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 61.23, + "subtotal": 122.46 + } + ], + "total_price": 122.46, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 6.16, + "expected_delivery": { + "$date": "2025-05-19T06:52:49.851Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.464Z" + } + }, + { + "order_id": "739520ab-1c67-4a7c-934a-49059b58db92", + "customer": { + "customer_id": "419b771e-9c96-476e-9cd8-a9627fb1a26f", + "name": "Brandon Powell", + "email": "wilsonmegan@example.com", + "phone": "+1-323-488-6880x39443", + "address": { + "street": "4593 Edward Camp", + "city": "South Christopherborough", + "state": "Vermont", + "zip": "24853", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-09T16:04:43.035Z" + }, + "status": "Delivered", + "items": [ + { + "model_id": "SHOE-004", + "name": "Fire Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 171.7, + "subtotal": 343.4 + }, + { + "model_id": "SHOE-011", + "name": "Woman Runner", + "category": "Casual", + "quantity": 2, + "unit_price": 158.03, + "subtotal": 316.06 + }, + { + "model_id": "SHOE-019", + "name": "System Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 155.59, + "subtotal": 311.18 + } + ], + "total_price": 970.64, + "payment_method": "PayPal", + "shipping_method": "Standard", + "shipping_cost": 19.83, + "expected_delivery": { + "$date": "2025-05-17T16:04:43.035Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.464Z" + } + }, + { + "order_id": "f5f3c1c8-f540-4794-87bb-052f6ea3747b", + "customer": { + "customer_id": "442b0f8f-a6ae-400b-a92f-81cbe8815bcd", + "name": "Miss Tracey Nelson", + "email": "davidhuynh@example.com", + "phone": "(962)662-3603", + "address": { + "street": "6198 Bryant Meadow Apt. 942", + "city": "North Jessicaland", + "state": "Texas", + "zip": "79774", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-10T14:50:45.434Z" + }, + "status": "Shipped", + "items": [ + { + "model_id": "SHOE-020", + "name": "Life Runner", + "category": "Running", + "quantity": 2, + "unit_price": 85.58, + "subtotal": 171.16 + } + ], + "total_price": 171.16, + "payment_method": "Apple Pay", + "shipping_method": "Express", + "shipping_cost": 14.86, + "expected_delivery": { + "$date": "2025-05-20T14:50:45.434Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.465Z" + } + }, + { + "order_id": "d37d5c12-3239-40f4-88ee-18ccc8850886", + "customer": { + "customer_id": "e3e7f54f-0c63-4495-aa17-cd12b76c2661", + "name": "Daniel Mendoza", + "email": "gardnercaroline@example.org", + "phone": "(969)500-8796x993", + "address": { + "street": "94914 Mathews Ford Suite 757", + "city": "West Jennifer", + "state": "Nebraska", + "zip": "58111", + "country": "US" + } + }, + "order_date": { + "$date": "2025-05-06T03:08:31.585Z" + }, + "status": "Pending", + "items": [ + { + "model_id": "SHOE-009", + "name": "College Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 121.73, + "subtotal": 121.73 + }, + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 2, + "unit_price": 75.68, + "subtotal": 151.36 + }, + { + "model_id": "SHOE-017", + "name": "Agency Runner", + "category": "Hiking", + "quantity": 1, + "unit_price": 152.32, + "subtotal": 152.32 + } + ], + "total_price": 425.41, + "payment_method": "Google Pay", + "shipping_method": "Overnight", + "shipping_cost": 15.49, + "expected_delivery": { + "$date": "2025-05-11T03:08:31.585Z" + }, + "last_updated": { + "$date": "2025-05-12T23:14:45.465Z" + } + } +] \ No newline at end of file diff --git a/.data/sco/mongodb/entrypoint.sh b/.data/sco/mongodb/entrypoint.sh new file mode 100644 index 00000000..84968313 --- /dev/null +++ b/.data/sco/mongodb/entrypoint.sh @@ -0,0 +1,16 @@ +#!/bin/bash +set -e # Exit on any error + +# This script is executed by the MongoDB container during initialization +# The MongoDB server is already running when this script is executed + +echo "🚀 Importing customer orders data..." +if [[ -f "/customer_orders.json" ]]; then + # Use mongoimport with the environment variables provided by the MongoDB container + mongoimport --db "$MONGO_INITDB_DATABASE" --collection customer_orders --drop --file /customer_orders.json --jsonArray + echo "✅ Successfully imported customer orders" +else + echo "❌ File '/customer_orders.json' not found! Skipping..." +fi + +echo "🎉 MongoDB initialization complete!" \ No newline at end of file diff --git a/.data/sco/postgres/entrypoint/00-setup-database.sql b/.data/sco/postgres/entrypoint/00-setup-database.sql new file mode 100644 index 00000000..e0cd1ac6 --- /dev/null +++ b/.data/sco/postgres/entrypoint/00-setup-database.sql @@ -0,0 +1,407 @@ + +-- Create database if it doesn't exist +CREATE DATABASE scms; + +\c scms; + +-- +-- PostgreSQL database dump +-- + +-- Dumped from database version 17.4 (Debian 17.4-1.pgdg120+2) +-- Dumped by pg_dump version 17.4 (Homebrew) + +SET statement_timeout = 0; +SET lock_timeout = 0; +SET idle_in_transaction_session_timeout = 0; +SET transaction_timeout = 0; +SET client_encoding = 'UTF8'; +SET standard_conforming_strings = on; +SELECT pg_catalog.set_config('search_path', '', false); +SET check_function_bodies = false; +SET xmloption = content; +SET client_min_messages = warning; +SET row_security = off; + +-- +-- Name: us; Type: SCHEMA; Schema: -; Owner: postgres +-- + +CREATE SCHEMA us; + + +ALTER SCHEMA us OWNER TO "postgres"; + +SET default_tablespace = ''; + +SET default_table_access_method = heap; + +-- +-- Name: billofmaterials; Type: TABLE; Schema: us; Owner: postgres +-- + +CREATE TABLE us.billofmaterials ( + shoe_id integer NOT NULL, + material_id integer NOT NULL, + quantity_required numeric(10,2) +); + + +ALTER TABLE us.billofmaterials OWNER TO "postgres"; + +-- +-- Name: factories; Type: TABLE; Schema: us; Owner: postgres +-- + +CREATE TABLE us.factories ( + factory_id integer NOT NULL, + name character varying(100), + location character varying(100), + capacity integer +); + + +ALTER TABLE us.factories OWNER TO "postgres"; + +-- +-- Name: factories_factory_id_seq; Type: SEQUENCE; Schema: us; Owner: postgres +-- + +CREATE SEQUENCE us.factories_factory_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER SEQUENCE us.factories_factory_id_seq OWNER TO "postgres"; + +-- +-- Name: factories_factory_id_seq; Type: SEQUENCE OWNED BY; Schema: us; Owner: postgres +-- + +ALTER SEQUENCE us.factories_factory_id_seq OWNED BY us.factories.factory_id; + + +-- +-- Name: productionorders; Type: TABLE; Schema: us; Owner: postgres +-- + +CREATE TABLE us.productionorders ( + order_id integer NOT NULL, + shoe_id integer, + factory_id integer, + quantity integer, + start_date date, + expected_completion date +); + + +ALTER TABLE us.productionorders OWNER TO "postgres"; + +-- +-- Name: productionorders_order_id_seq; Type: SEQUENCE; Schema: us; Owner: postgres +-- + +CREATE SEQUENCE us.productionorders_order_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER SEQUENCE us.productionorders_order_id_seq OWNER TO "postgres"; + +-- +-- Name: productionorders_order_id_seq; Type: SEQUENCE OWNED BY; Schema: us; Owner: postgres +-- + +ALTER SEQUENCE us.productionorders_order_id_seq OWNED BY us.productionorders.order_id; + + +-- +-- Name: rawmaterials; Type: TABLE; Schema: us; Owner: postgres +-- + +CREATE TABLE us.rawmaterials ( + material_id integer NOT NULL, + name character varying(100) NOT NULL, + unit character varying(20), + cost_per_unit numeric(10,2) +); + + +ALTER TABLE us.rawmaterials OWNER TO "postgres"; + +-- +-- Name: rawmaterials_material_id_seq; Type: SEQUENCE; Schema: us; Owner: postgres +-- + +CREATE SEQUENCE us.rawmaterials_material_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER SEQUENCE us.rawmaterials_material_id_seq OWNER TO "postgres"; + +-- +-- Name: rawmaterials_material_id_seq; Type: SEQUENCE OWNED BY; Schema: us; Owner: postgres +-- + +ALTER SEQUENCE us.rawmaterials_material_id_seq OWNED BY us.rawmaterials.material_id; + + +-- +-- Name: shipments; Type: TABLE; Schema: us; Owner: postgres +-- + +CREATE TABLE us.shipments ( + shipment_id integer NOT NULL, + order_id integer, + warehouse_id integer, + shipped_date date, + arrival_date date, + quantity integer +); + + +ALTER TABLE us.shipments OWNER TO "postgres"; + +-- +-- Name: shipments_shipment_id_seq; Type: SEQUENCE; Schema: us; Owner: postgres +-- + +CREATE SEQUENCE us.shipments_shipment_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER SEQUENCE us.shipments_shipment_id_seq OWNER TO "postgres"; + +-- +-- Name: shipments_shipment_id_seq; Type: SEQUENCE OWNED BY; Schema: us; Owner: postgres +-- + +ALTER SEQUENCE us.shipments_shipment_id_seq OWNED BY us.shipments.shipment_id; + + +-- +-- Name: shoes; Type: TABLE; Schema: us; Owner: postgres +-- + +CREATE TABLE us.shoes ( + shoe_id integer NOT NULL, + model_name character varying(100), + category character varying(50), + release_date date +); + + +ALTER TABLE us.shoes OWNER TO "postgres"; + +-- +-- Name: shoes_shoe_id_seq; Type: SEQUENCE; Schema: us; Owner: postgres +-- + +CREATE SEQUENCE us.shoes_shoe_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER SEQUENCE us.shoes_shoe_id_seq OWNER TO "postgres"; + +-- +-- Name: shoes_shoe_id_seq; Type: SEQUENCE OWNED BY; Schema: us; Owner: postgres +-- + +ALTER SEQUENCE us.shoes_shoe_id_seq OWNED BY us.shoes.shoe_id; + + +-- +-- Name: suppliermaterials; Type: TABLE; Schema: us; Owner: postgres +-- + +CREATE TABLE us.suppliermaterials ( + supplier_id integer NOT NULL, + material_id integer NOT NULL, + lead_time_days integer +); + + +ALTER TABLE us.suppliermaterials OWNER TO "postgres"; + +-- +-- Name: suppliers; Type: TABLE; Schema: us; Owner: postgres +-- + +CREATE TABLE us.suppliers ( + supplier_id integer NOT NULL, + name character varying(100) NOT NULL, + contact_email character varying(100), + country character varying(50) +); + + +ALTER TABLE us.suppliers OWNER TO "postgres"; + +-- +-- Name: suppliers_supplier_id_seq; Type: SEQUENCE; Schema: us; Owner: postgres +-- + +CREATE SEQUENCE us.suppliers_supplier_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER SEQUENCE us.suppliers_supplier_id_seq OWNER TO "postgres"; + +-- +-- Name: suppliers_supplier_id_seq; Type: SEQUENCE OWNED BY; Schema: us; Owner: postgres +-- + +ALTER SEQUENCE us.suppliers_supplier_id_seq OWNED BY us.suppliers.supplier_id; + + +-- +-- Name: warehouses; Type: TABLE; Schema: us; Owner: postgres +-- + +CREATE TABLE us.warehouses ( + warehouse_id integer NOT NULL, + name character varying(100), + location character varying(100) +); + + +ALTER TABLE us.warehouses OWNER TO "postgres"; + +-- +-- Name: warehouses_warehouse_id_seq; Type: SEQUENCE; Schema: us; Owner: postgres +-- + +CREATE SEQUENCE us.warehouses_warehouse_id_seq + AS integer + START WITH 1 + INCREMENT BY 1 + NO MINVALUE + NO MAXVALUE + CACHE 1; + + +ALTER SEQUENCE us.warehouses_warehouse_id_seq OWNER TO "postgres"; + +-- +-- Name: warehouses_warehouse_id_seq; Type: SEQUENCE OWNED BY; Schema: us; Owner: postgres +-- + +ALTER SEQUENCE us.warehouses_warehouse_id_seq OWNED BY us.warehouses.warehouse_id; + + +-- +-- Name: factories factory_id; Type: DEFAULT; Schema: us; Owner: postgres +-- + +ALTER TABLE ONLY us.factories ALTER COLUMN factory_id SET DEFAULT nextval('us.factories_factory_id_seq'::regclass); + + +-- +-- Name: productionorders order_id; Type: DEFAULT; Schema: us; Owner: postgres +-- + +ALTER TABLE ONLY us.productionorders ALTER COLUMN order_id SET DEFAULT nextval('us.productionorders_order_id_seq'::regclass); + + +-- +-- Name: rawmaterials material_id; Type: DEFAULT; Schema: us; Owner: postgres +-- + +ALTER TABLE ONLY us.rawmaterials ALTER COLUMN material_id SET DEFAULT nextval('us.rawmaterials_material_id_seq'::regclass); + + +-- +-- Name: shipments shipment_id; Type: DEFAULT; Schema: us; Owner: postgres +-- + +ALTER TABLE ONLY us.shipments ALTER COLUMN shipment_id SET DEFAULT nextval('us.shipments_shipment_id_seq'::regclass); + + +-- +-- Name: shoes shoe_id; Type: DEFAULT; Schema: us; Owner: postgres +-- + +ALTER TABLE ONLY us.shoes ALTER COLUMN shoe_id SET DEFAULT nextval('us.shoes_shoe_id_seq'::regclass); + + +-- +-- Name: suppliers supplier_id; Type: DEFAULT; Schema: us; Owner: postgres +-- + +ALTER TABLE ONLY us.suppliers ALTER COLUMN supplier_id SET DEFAULT nextval('us.suppliers_supplier_id_seq'::regclass); + + +-- +-- Name: warehouses warehouse_id; Type: DEFAULT; Schema: us; Owner: postgres +-- + +ALTER TABLE ONLY us.warehouses ALTER COLUMN warehouse_id SET DEFAULT nextval('us.warehouses_warehouse_id_seq'::regclass); + +-- Import data from CSV files +-- Set default schema +SET search_path TO us; + +-- Import suppliers +\COPY Suppliers(name, contact_email, country) FROM '/docker-entrypoint-initdb.d/suppliers.csv' WITH (FORMAT csv, HEADER true); + +-- Import raw materials +\COPY RawMaterials(name, unit, cost_per_unit) FROM '/docker-entrypoint-initdb.d/raw_materials.csv' WITH (FORMAT csv, HEADER true); + +-- Import supplier materials +\COPY SupplierMaterials(supplier_id, material_id, lead_time_days) FROM '/docker-entrypoint-initdb.d/supplier_materials.csv' WITH (FORMAT csv, HEADER true); + +-- Import factories +\COPY Factories(name, location, capacity) FROM '/docker-entrypoint-initdb.d/factories.csv' WITH (FORMAT csv, HEADER true); + +-- Import shoes +\COPY Shoes(model_name, category, release_date) FROM '/docker-entrypoint-initdb.d/shoes.csv' WITH (FORMAT csv, HEADER true); + +-- Import bill of materials +\COPY BillOfMaterials(shoe_id, material_id, quantity_required) FROM '/docker-entrypoint-initdb.d/bill_of_materials.csv' WITH (FORMAT csv, HEADER true); + +-- Import production orders +\COPY ProductionOrders(shoe_id, factory_id, quantity, start_date, expected_completion) FROM '/docker-entrypoint-initdb.d/production_orders.csv' WITH (FORMAT csv, HEADER true); + +-- Import warehouses +\COPY Warehouses(name, location) FROM '/docker-entrypoint-initdb.d/warehouses.csv' WITH (FORMAT csv, HEADER true); + +-- Import shipments +\COPY Shipments(order_id, warehouse_id, shipped_date, arrival_date, quantity) FROM '/docker-entrypoint-initdb.d/shipments.csv' WITH (FORMAT csv, HEADER true); + +-- Create indexes for better performance +CREATE INDEX IF NOT EXISTS idx_suppliers_name ON Suppliers(name); +CREATE INDEX IF NOT EXISTS idx_rawmaterials_name ON RawMaterials(name); +CREATE INDEX IF NOT EXISTS idx_shoes_model_name ON Shoes(model_name); +CREATE INDEX IF NOT EXISTS idx_shoes_category ON Shoes(category); +CREATE INDEX IF NOT EXISTS idx_productionorders_shoe_id ON ProductionOrders(shoe_id); +CREATE INDEX IF NOT EXISTS idx_productionorders_factory_id ON ProductionOrders(factory_id); +CREATE INDEX IF NOT EXISTS idx_shipments_order_id ON Shipments(order_id); +CREATE INDEX IF NOT EXISTS idx_shipments_warehouse_id ON Shipments(warehouse_id); \ No newline at end of file diff --git a/.data/sco/postgres/entrypoint/bill_of_materials.csv b/.data/sco/postgres/entrypoint/bill_of_materials.csv new file mode 100644 index 00000000..81550d0d --- /dev/null +++ b/.data/sco/postgres/entrypoint/bill_of_materials.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7f6c5f2181da0d573fc85ed1a59b632c2ef9ae55659a3f510b4841945efc749 +size 668 diff --git a/.data/sco/postgres/entrypoint/factories.csv b/.data/sco/postgres/entrypoint/factories.csv new file mode 100644 index 00000000..46cccbc0 --- /dev/null +++ b/.data/sco/postgres/entrypoint/factories.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9d988f43e1d5c41c516f91ab8af6ecb63f91f2d35d7ce63228007ade4d8ce00 +size 212 diff --git a/.data/sco/postgres/entrypoint/production_orders.csv b/.data/sco/postgres/entrypoint/production_orders.csv new file mode 100644 index 00000000..3c136242 --- /dev/null +++ b/.data/sco/postgres/entrypoint/production_orders.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80565a286accb420334abc1081564ce91eb0db9dec311040a3f574a8abc5373d +size 4901 diff --git a/.data/sco/postgres/entrypoint/raw_materials.csv b/.data/sco/postgres/entrypoint/raw_materials.csv new file mode 100644 index 00000000..4a923e2f --- /dev/null +++ b/.data/sco/postgres/entrypoint/raw_materials.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e373e1b79620bd098a6ee9b04ec670991d1116c6fcffbe6fba23c7b57cfc6740 +size 132 diff --git a/.data/sco/postgres/entrypoint/shipments.csv b/.data/sco/postgres/entrypoint/shipments.csv new file mode 100644 index 00000000..e35dfe2d --- /dev/null +++ b/.data/sco/postgres/entrypoint/shipments.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d391f10a9fdb08442dec6fda067680e2031d9766217b4afdbdb014b3833d8521 +size 3298 diff --git a/.data/sco/postgres/entrypoint/shoes.csv b/.data/sco/postgres/entrypoint/shoes.csv new file mode 100644 index 00000000..a7525cfd --- /dev/null +++ b/.data/sco/postgres/entrypoint/shoes.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:768ba9c98a8028bda4e4e17cf1ba6b401e7781ad3478bb34e80fabe47511013b +size 682 diff --git a/.data/sco/postgres/entrypoint/supplier_materials.csv b/.data/sco/postgres/entrypoint/supplier_materials.csv new file mode 100644 index 00000000..8eb39b5e --- /dev/null +++ b/.data/sco/postgres/entrypoint/supplier_materials.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eff08c7a6bff3d069de1cd4d2d287f82a93705405c5304b97ea4b7ccae04f1a8 +size 658 diff --git a/.data/sco/postgres/entrypoint/suppliers.csv b/.data/sco/postgres/entrypoint/suppliers.csv new file mode 100644 index 00000000..8378a4e5 --- /dev/null +++ b/.data/sco/postgres/entrypoint/suppliers.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fcbeb57b04fd7c72bdcb23ab41c36b55815b65f7608dd62b9b213ed9f375c18c +size 1902 diff --git a/.data/sco/postgres/entrypoint/warehouses.csv b/.data/sco/postgres/entrypoint/warehouses.csv new file mode 100644 index 00000000..8f0ee455 --- /dev/null +++ b/.data/sco/postgres/entrypoint/warehouses.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87e768bb330666120c0c2f416598e50302a6fc2e4420abd7c76ddf867218da96 +size 203 diff --git a/hasura/.env.sco.template b/hasura/.env.sco.template new file mode 100644 index 00000000..8d34e268 --- /dev/null +++ b/hasura/.env.sco.template @@ -0,0 +1,23 @@ +ECOMMERCE_ECOMMERCE_MONGODB_AUTHORIZATION_HEADER="Bearer dBgPSjnHRWS02NBLtb5K3w==" +ECOMMERCE_ECOMMERCE_MONGODB_HASURA_CONNECTOR_PORT=5603 +ECOMMERCE_ECOMMERCE_MONGODB_HASURA_SERVICE_TOKEN_SECRET="dBgPSjnHRWS02NBLtb5K3w==" +ECOMMERCE_ECOMMERCE_MONGODB_MONGODB_DATABASE_URI="mongodb://root:hbGciOiJIUzI1NiIsInR5cCI6IkpX@local.hasura.dev:27017/ecommerce?authSource=admin" +ECOMMERCE_ECOMMERCE_MONGODB_OTEL_EXPORTER_OTLP_ENDPOINT="http://local.hasura.dev:4317" +ECOMMERCE_ECOMMERCE_MONGODB_OTEL_SERVICE_NAME="ecommerce_ecommerce_mongodb" +ECOMMERCE_ECOMMERCE_MONGODB_READ_URL="http://local.hasura.dev:5603" +ECOMMERCE_ECOMMERCE_MONGODB_WRITE_URL="http://local.hasura.dev:5603" +OPERATIONS_OPERATIONS_NODEJS_AUTHORIZATION_HEADER="Bearer Cd1niACOcvGq4XHOM6QAqQ==" +OPERATIONS_OPERATIONS_NODEJS_HASURA_CONNECTOR_PORT=7683 +OPERATIONS_OPERATIONS_NODEJS_HASURA_SERVICE_TOKEN_SECRET="Cd1niACOcvGq4XHOM6QAqQ==" +OPERATIONS_OPERATIONS_NODEJS_OTEL_EXPORTER_OTLP_ENDPOINT="http://local.hasura.dev:4317" +OPERATIONS_OPERATIONS_NODEJS_OTEL_SERVICE_NAME="operations_operations_nodejs" +OPERATIONS_OPERATIONS_NODEJS_READ_URL="http://local.hasura.dev:7683" +OPERATIONS_OPERATIONS_NODEJS_WRITE_URL="http://local.hasura.dev:7683" +SCMS_SCMS_POSTGRES_AUTHORIZATION_HEADER="Bearer Co_4vLzGUl2WBqZf3dZElQ==" +SCMS_SCMS_POSTGRES_HASURA_SERVICE_TOKEN_SECRET="Co_4vLzGUl2WBqZf3dZElQ==" +SCMS_SCMS_POSTGRES_JDBC_URL="jdbc:postgresql://local.hasura.dev:5432/scms?user=postgres&password=hbGciOiJIUzI1NiIsInR5cCI6IkpX +SCMS_SCMS_POSTGRES_OTEL_EXPORTER_OTLP_ENDPOINT="http://local.hasura.dev:4317" +SCMS_SCMS_POSTGRES_OTEL_SERVICE_NAME="scms_scms_postgres" +SCMS_SCMS_POSTGRES_READ_URL="http://local.hasura.dev:9598" +SCMS_SCMS_POSTGRES_WRITE_URL="http://local.hasura.dev:9598" +JWT_SECRET="hptj8supNeslwet7nhGGr5Uu5MombVVjDmcGMOyrWa8" diff --git a/hasura/.hasura/context.yaml b/hasura/.hasura/context.yaml index 6bf72bc7..1d1a155b 100644 --- a/hasura/.hasura/context.yaml +++ b/hasura/.hasura/context.yaml @@ -57,10 +57,16 @@ definition: subgraph: ../industry/telco/customer/subgraph.yaml localEnvFile: ../.env.telco cloudEnvFile: ../.env.cloud.telco + sco: + project: sandbox-sco + supergraph: ../supergraph-config/sco/2-supergraph.yaml + subgraph: ../industry/sco/scms/subgraph.yaml + localEnvFile: ../.env.sco + cloudEnvFile: ../.env.cloud.sco telco: project: telco supergraph: ../supergraph-config/telco/3-supergraph-noauth.yaml - subgraph: ../industry/telco/customer/subgraph.yaml + subgraph: ../industry/telco/customer/metadata-supergraph/subgraph.yaml localEnvFile: ../.env.telco cloudEnvFile: ../.env.cloud.telco telco-dev: diff --git a/hasura/compose-sco.yaml b/hasura/compose-sco.yaml new file mode 100644 index 00000000..61319c02 --- /dev/null +++ b/hasura/compose-sco.yaml @@ -0,0 +1,48 @@ +include: + - path: industry/sco/ecommerce/connector/ecommerce_mongodb/compose.yaml + - path: industry/sco/operations/connector/operations_nodejs/compose.yaml + - path: industry/sco/scms/connector/scms_postgres/compose.yaml +services: + engine: + build: + context: engine + dockerfile: Dockerfile.engine + pull: true + environment: + AUTHN_CONFIG_PATH: /md/auth_config.json + ENABLE_CORS: "true" + ENABLE_SQL_INTERFACE: "true" + INTROSPECTION_METADATA_FILE: /md/metadata.json + METADATA_PATH: /md/open_dd.json + OTLP_ENDPOINT: http://local.hasura.dev:4317 + extra_hosts: + - local.hasura.dev:host-gateway + labels: + io.hasura.ddn.service-name: engine + ports: + - 3280:3000 + otel-collector: + command: + - --config=/etc/otel-collector-config.yaml + environment: + HASURA_DDN_PAT: ${HASURA_DDN_PAT} + image: otel/opentelemetry-collector:0.104.0 + ports: + - 4317:4317 + - 4318:4318 + volumes: + - ./otel-collector-config.yaml:/etc/otel-collector-config.yaml + promptql-playground: + environment: + CORS_ORIGINS: ${CORS_ORIGINS:-https://console.hasura.io,https://promptql.console.hasura.io} + ENGINE_URL: ${HASURA_DDN_URL:-http://engine:3000/v1/sql} + HASURA_LLM_URI: ${HASURA_LLM_URI:-https://llm.promptql.pro.hasura.io} + LLM: ${LLM:-hasura} + OTEL_EXPORTER_OTLP_ENDPOINT: ${OTEL_EXPORTER_OTLP_ENDPOINT:-http://host.docker.internal:4317} + PROMPTQL_SECRET_KEY: ${PROMPTQL_SECRET_KEY} + PROMPTQL_URI: ${PROMPTQL_URI:-wss://runtime.promptql.pro.hasura.io} + image: us-east4-docker.pkg.dev/promptql-execution-service/promptql-public/promptql-playground-local + labels: + io.hasura.ddn.service-name: promptql-playground + ports: + - 3282:5000 diff --git a/hasura/industry/sco/ecommerce/connector/ecommerce_mongodb/.ddnignore b/hasura/industry/sco/ecommerce/connector/ecommerce_mongodb/.ddnignore new file mode 100644 index 00000000..ed72dd19 --- /dev/null +++ b/hasura/industry/sco/ecommerce/connector/ecommerce_mongodb/.ddnignore @@ -0,0 +1,2 @@ +.env* +compose.yaml diff --git a/hasura/industry/sco/ecommerce/connector/ecommerce_mongodb/.hasura-connector/Dockerfile.ecommerce_mongodb b/hasura/industry/sco/ecommerce/connector/ecommerce_mongodb/.hasura-connector/Dockerfile.ecommerce_mongodb new file mode 100644 index 00000000..d4eecffd --- /dev/null +++ b/hasura/industry/sco/ecommerce/connector/ecommerce_mongodb/.hasura-connector/Dockerfile.ecommerce_mongodb @@ -0,0 +1,2 @@ +FROM ghcr.io/hasura/ndc-mongodb:v1.7.1 +COPY ./ /etc/connector \ No newline at end of file diff --git a/hasura/industry/sco/ecommerce/connector/ecommerce_mongodb/.hasura-connector/connector-metadata.yaml b/hasura/industry/sco/ecommerce/connector/ecommerce_mongodb/.hasura-connector/connector-metadata.yaml new file mode 100644 index 00000000..a266b20a --- /dev/null +++ b/hasura/industry/sco/ecommerce/connector/ecommerce_mongodb/.hasura-connector/connector-metadata.yaml @@ -0,0 +1,43 @@ +packagingDefinition: + type: PrebuiltDockerImage + dockerImage: ghcr.io/hasura/ndc-mongodb:v1.7.1 +supportedEnvironmentVariables: + - name: MONGODB_DATABASE_URI + description: The URI for the MongoDB database +commands: + update: hasura-ndc-mongodb update +cliPlugin: + type: null + name: ndc-mongodb + version: v1.7.1 +dockerComposeWatch: + - path: ./ + action: sync+restart + target: /etc/connector +nativeToolchainDefinition: + commands: + start: + type: ShellScript + bash: "#!/usr/bin/env bash\nset -eu -o pipefail \nHASURA_CONFIGURATION_DIRECTORY=\"$HASURA_PLUGIN_CONNECTOR_CONTEXT_PATH\" \"$HASURA_DDN_NATIVE_CONNECTOR_DIR/mongodb-connector\" serve\n" + powershell: | + $ErrorActionPreference = "Stop" + $env:HASURA_CONFIGURATION_DIRECTORY="$env:HASURA_PLUGIN_CONNECTOR_CONTEXT_PATH"; & "$env:HASURA_DDN_NATIVE_CONNECTOR_DIR\mongodb-connector.exe" serve + watch: + type: ShellScript + bash: | + #!/usr/bin/env bash + echo "Watch is not supported for this connector" + exit 1 + powershell: | + Write-Output "Watch is not supported for this connector" + exit 1 + update: + type: ShellScript + bash: | + #!/usr/bin/env bash + set -eu -o pipefail + "$HASURA_DDN_NATIVE_CONNECTOR_PLUGIN_DIR/hasura-ndc-mongodb" update + powershell: | + $ErrorActionPreference = "Stop" + & "$env:HASURA_DDN_NATIVE_CONNECTOR_PLUGIN_DIR\hasura-ndc-mongodb.exe" update +documentationPage: https://hasura.info/mongodb-getting-started diff --git a/hasura/industry/sco/ecommerce/connector/ecommerce_mongodb/compose.yaml b/hasura/industry/sco/ecommerce/connector/ecommerce_mongodb/compose.yaml new file mode 100644 index 00000000..46224860 --- /dev/null +++ b/hasura/industry/sco/ecommerce/connector/ecommerce_mongodb/compose.yaml @@ -0,0 +1,14 @@ +services: + ecommerce_ecommerce_mongodb: + build: + context: . + dockerfile: .hasura-connector/Dockerfile.ecommerce_mongodb + environment: + HASURA_SERVICE_TOKEN_SECRET: $ECOMMERCE_ECOMMERCE_MONGODB_HASURA_SERVICE_TOKEN_SECRET + MONGODB_DATABASE_URI: $ECOMMERCE_ECOMMERCE_MONGODB_MONGODB_DATABASE_URI + OTEL_EXPORTER_OTLP_ENDPOINT: $ECOMMERCE_ECOMMERCE_MONGODB_OTEL_EXPORTER_OTLP_ENDPOINT + OTEL_SERVICE_NAME: $ECOMMERCE_ECOMMERCE_MONGODB_OTEL_SERVICE_NAME + extra_hosts: + - local.hasura.dev:host-gateway + ports: + - 5603:8080 diff --git a/hasura/industry/sco/ecommerce/connector/ecommerce_mongodb/configuration.json b/hasura/industry/sco/ecommerce/connector/ecommerce_mongodb/configuration.json new file mode 100644 index 00000000..95e0370e --- /dev/null +++ b/hasura/industry/sco/ecommerce/connector/ecommerce_mongodb/configuration.json @@ -0,0 +1,10 @@ +{ + "introspectionOptions": { + "sampleSize": 100, + "noValidatorSchema": false, + "allSchemaNullable": true + }, + "serializationOptions": { + "extendedJsonMode": "canonical" + } +} \ No newline at end of file diff --git a/hasura/industry/sco/ecommerce/connector/ecommerce_mongodb/connector.yaml b/hasura/industry/sco/ecommerce/connector/ecommerce_mongodb/connector.yaml new file mode 100644 index 00000000..af80c3c5 --- /dev/null +++ b/hasura/industry/sco/ecommerce/connector/ecommerce_mongodb/connector.yaml @@ -0,0 +1,18 @@ +kind: Connector +version: v2 +definition: + name: ecommerce_mongodb + subgraph: ecommerce + source: hasura/mongodb:v1.7.1 + context: . + envMapping: + HASURA_CONNECTOR_PORT: + fromEnv: ECOMMERCE_ECOMMERCE_MONGODB_HASURA_CONNECTOR_PORT + HASURA_SERVICE_TOKEN_SECRET: + fromEnv: ECOMMERCE_ECOMMERCE_MONGODB_HASURA_SERVICE_TOKEN_SECRET + MONGODB_DATABASE_URI: + fromEnv: ECOMMERCE_ECOMMERCE_MONGODB_MONGODB_DATABASE_URI + OTEL_EXPORTER_OTLP_ENDPOINT: + fromEnv: ECOMMERCE_ECOMMERCE_MONGODB_OTEL_EXPORTER_OTLP_ENDPOINT + OTEL_SERVICE_NAME: + fromEnv: ECOMMERCE_ECOMMERCE_MONGODB_OTEL_SERVICE_NAME diff --git a/hasura/industry/sco/ecommerce/connector/ecommerce_mongodb/schema/customer_orders.json b/hasura/industry/sco/ecommerce/connector/ecommerce_mongodb/schema/customer_orders.json new file mode 100644 index 00000000..f7c99224 --- /dev/null +++ b/hasura/industry/sco/ecommerce/connector/ecommerce_mongodb/schema/customer_orders.json @@ -0,0 +1,222 @@ +{ + "name": "customer_orders", + "collections": { + "customer_orders": { + "type": "customer_orders" + } + }, + "objectTypes": { + "customer_orders": { + "fields": { + "_id": { + "type": { + "scalar": "objectId" + } + }, + "customer": { + "type": { + "nullable": { + "object": "customer_orders_customer" + } + } + }, + "expected_delivery": { + "type": { + "nullable": { + "scalar": "date" + } + } + }, + "items": { + "type": { + "nullable": { + "arrayOf": { + "object": "customer_orders_items" + } + } + } + }, + "last_updated": { + "type": { + "nullable": { + "scalar": "date" + } + } + }, + "order_date": { + "type": { + "nullable": { + "scalar": "date" + } + } + }, + "order_id": { + "type": { + "nullable": { + "scalar": "string" + } + } + }, + "payment_method": { + "type": { + "nullable": { + "scalar": "string" + } + } + }, + "shipping_cost": { + "type": { + "nullable": { + "scalar": "double" + } + } + }, + "shipping_method": { + "type": { + "nullable": { + "scalar": "string" + } + } + }, + "status": { + "type": { + "nullable": { + "scalar": "string" + } + } + }, + "total_price": { + "type": { + "nullable": { + "scalar": "double" + } + } + } + } + }, + "customer_orders_customer": { + "fields": { + "address": { + "type": { + "nullable": { + "object": "customer_orders_customer_address" + } + } + }, + "customer_id": { + "type": { + "nullable": { + "scalar": "string" + } + } + }, + "email": { + "type": { + "nullable": { + "scalar": "string" + } + } + }, + "name": { + "type": { + "nullable": { + "scalar": "string" + } + } + }, + "phone": { + "type": { + "nullable": { + "scalar": "string" + } + } + } + } + }, + "customer_orders_customer_address": { + "fields": { + "city": { + "type": { + "nullable": { + "scalar": "string" + } + } + }, + "country": { + "type": { + "nullable": { + "scalar": "string" + } + } + }, + "state": { + "type": { + "nullable": { + "scalar": "string" + } + } + }, + "street": { + "type": { + "nullable": { + "scalar": "string" + } + } + }, + "zip": { + "type": { + "nullable": { + "scalar": "string" + } + } + } + } + }, + "customer_orders_items": { + "fields": { + "category": { + "type": { + "nullable": { + "scalar": "string" + } + } + }, + "model_id": { + "type": { + "nullable": { + "scalar": "string" + } + } + }, + "name": { + "type": { + "nullable": { + "scalar": "string" + } + } + }, + "quantity": { + "type": { + "nullable": { + "scalar": "int" + } + } + }, + "subtotal": { + "type": { + "nullable": { + "scalar": "double" + } + } + }, + "unit_price": { + "type": { + "nullable": { + "scalar": "double" + } + } + } + } + } + } +} \ No newline at end of file diff --git a/hasura/industry/sco/ecommerce/metadata/.keep b/hasura/industry/sco/ecommerce/metadata/.keep new file mode 100644 index 00000000..e69de29b diff --git a/hasura/industry/sco/ecommerce/metadata/customer_orders.hml b/hasura/industry/sco/ecommerce/metadata/customer_orders.hml new file mode 100644 index 00000000..36bad586 --- /dev/null +++ b/hasura/industry/sco/ecommerce/metadata/customer_orders.hml @@ -0,0 +1,543 @@ +--- +kind: ObjectType +version: v1 +definition: + name: customer_orders_customer_address + description: Customer full address object + fields: + - name: city + description: City + type: String + - name: country + description: Country + type: String + - name: state + description: State/province + type: String + - name: street + description: Street address + type: String + - name: zip + description: Postal/ZIP code + type: String + graphql: + typeName: eCommerce_customer_orders_customer_address + inputTypeName: eCommerce_customer_orders_customer_address_input + dataConnectorTypeMapping: + - dataConnectorName: ecommerce_mongodb + dataConnectorObjectType: customer_orders_customer_address + +--- +kind: TypePermissions +version: v1 +definition: + typeName: customer_orders_customer_address + permissions: + - role: admin + output: + allowedFields: + - city + - country + - state + - street + - zip + +--- +kind: ObjectType +version: v1 +definition: + name: customer_orders_customer + description: Nested object of customer details + fields: + - name: address + description: Customer's full shipping address + type: customer_orders_customer_address + - name: customer_id + description: Unique identifier for the customer + type: String + - name: email + description: Customer's email address + type: String + - name: name + description: Customer's full name + type: String + - name: phone + description: Customer's contact phone number + type: String + graphql: + typeName: eCommerce_customer_orders_customer + inputTypeName: eCommerce_customer_orders_customer_input + dataConnectorTypeMapping: + - dataConnectorName: ecommerce_mongodb + dataConnectorObjectType: customer_orders_customer + +--- +kind: TypePermissions +version: v1 +definition: + typeName: customer_orders_customer + permissions: + - role: admin + output: + allowedFields: + - address + - customer_id + - email + - name + - phone + +--- +kind: ObjectType +version: v1 +definition: + name: customer_orders_items + description: Nested structure of customer items by order + fields: + - name: category + description: Product category + type: String + - name: model_id + description: Product model identifier + type: String + - name: name + description: Product name + type: String + - name: quantity + description: Number of units ordered + type: Int + - name: subtotal + description: Total price in USD for this line item (quantity * unit_price) This table provides a comprehensive view of each order + type: double + - name: unit_price + description: Price per unit in USD + type: double + graphql: + typeName: eCommerce_customer_orders_items + inputTypeName: eCommerce_customer_orders_items_input + dataConnectorTypeMapping: + - dataConnectorName: ecommerce_mongodb + dataConnectorObjectType: customer_orders_items + +--- +kind: TypePermissions +version: v1 +definition: + typeName: customer_orders_items + permissions: + - role: admin + output: + allowedFields: + - category + - model_id + - name + - quantity + - subtotal + - unit_price + +--- +kind: ObjectType +version: v1 +definition: + name: customer_orders + description: Nested structure of each customer order + fields: + - name: id + description: Primary identifier for the order + type: object_id! + - name: customer + type: customer_orders_customer + - name: expected_delivery + description: Expected delivery date/time Nested Customer Information (customer STRUCT) + type: date + - name: items + type: "[customer_orders_items!]" + - name: last_updated + description: When the order was last modified + type: date + - name: order_date + description: When the order was placed + type: date + - name: order_id + description: Business-facing order identifier + type: String + - name: payment_method + description: Payment method used (e.g., Credit Card, PayPal, Apple Pay) + type: String + - name: shipping_cost + description: Cost of shipping in USD + type: double + - name: shipping_method + description: Delivery method chosen (e.g., Standard, Express, Overnight) + type: String + - name: status + description: Current order status (e.g., Processing, Shipped, Delivered, Cancelled) + type: String + - name: total_price + description: Total order amount in USD + type: double + graphql: + typeName: eCommerce_customer_orders + inputTypeName: eCommerce_customer_orders_input + dataConnectorTypeMapping: + - dataConnectorName: ecommerce_mongodb + dataConnectorObjectType: customer_orders + fieldMapping: + id: + column: + name: _id + customer: + column: + name: customer + expected_delivery: + column: + name: expected_delivery + items: + column: + name: items + last_updated: + column: + name: last_updated + order_date: + column: + name: order_date + order_id: + column: + name: order_id + payment_method: + column: + name: payment_method + shipping_cost: + column: + name: shipping_cost + shipping_method: + column: + name: shipping_method + status: + column: + name: status + total_price: + column: + name: total_price + +--- +kind: TypePermissions +version: v1 +definition: + typeName: customer_orders + permissions: + - role: admin + output: + allowedFields: + - id + - customer + - expected_delivery + - items + - last_updated + - order_date + - order_id + - payment_method + - shipping_cost + - shipping_method + - status + - total_price + +--- +kind: BooleanExpressionType +version: v1 +definition: + name: customer_orders_customer_address_bool_exp + operand: + object: + type: customer_orders_customer_address + comparableFields: + - fieldName: city + booleanExpressionType: string_bool_exp + - fieldName: country + booleanExpressionType: string_bool_exp + - fieldName: state + booleanExpressionType: string_bool_exp + - fieldName: street + booleanExpressionType: string_bool_exp + - fieldName: zip + booleanExpressionType: string_bool_exp + comparableRelationships: [] + logicalOperators: + enable: true + isNull: + enable: true + graphql: + typeName: eCommerce_customer_orders_customer_address_bool_exp + +--- +kind: BooleanExpressionType +version: v1 +definition: + name: customer_orders_customer_bool_exp + operand: + object: + type: customer_orders_customer + comparableFields: + - fieldName: address + booleanExpressionType: customer_orders_customer_address_bool_exp + - fieldName: customer_id + booleanExpressionType: string_bool_exp + - fieldName: email + booleanExpressionType: string_bool_exp + - fieldName: name + booleanExpressionType: string_bool_exp + - fieldName: phone + booleanExpressionType: string_bool_exp + comparableRelationships: [] + logicalOperators: + enable: true + isNull: + enable: true + graphql: + typeName: eCommerce_customer_orders_customer_bool_exp + +--- +kind: BooleanExpressionType +version: v1 +definition: + name: customer_orders_items_bool_exp + operand: + object: + type: customer_orders_items + comparableFields: + - fieldName: category + booleanExpressionType: string_bool_exp + - fieldName: model_id + booleanExpressionType: string_bool_exp + - fieldName: name + booleanExpressionType: string_bool_exp + - fieldName: quantity + booleanExpressionType: int_bool_exp + - fieldName: subtotal + booleanExpressionType: double_bool_exp + - fieldName: unit_price + booleanExpressionType: double_bool_exp + comparableRelationships: [] + logicalOperators: + enable: true + isNull: + enable: true + graphql: + typeName: eCommerce_customer_orders_items_bool_exp + +--- +kind: BooleanExpressionType +version: v1 +definition: + name: customer_orders_bool_exp + operand: + object: + type: customer_orders + comparableFields: + - fieldName: id + booleanExpressionType: object_id_bool_exp + - fieldName: customer + booleanExpressionType: customer_orders_customer_bool_exp + - fieldName: expected_delivery + booleanExpressionType: date_bool_exp + - fieldName: items + booleanExpressionType: customer_orders_items_bool_exp + - fieldName: last_updated + booleanExpressionType: date_bool_exp + - fieldName: order_date + booleanExpressionType: date_bool_exp + - fieldName: order_id + booleanExpressionType: string_bool_exp + - fieldName: payment_method + booleanExpressionType: string_bool_exp + - fieldName: shipping_cost + booleanExpressionType: double_bool_exp + - fieldName: shipping_method + booleanExpressionType: string_bool_exp + - fieldName: status + booleanExpressionType: string_bool_exp + - fieldName: total_price + booleanExpressionType: double_bool_exp + comparableRelationships: [] + logicalOperators: + enable: true + isNull: + enable: true + graphql: + typeName: eCommerce_customer_orders_bool_exp + +--- +kind: AggregateExpression +version: v1 +definition: + name: customer_orders_agg_exp + operand: + object: + aggregatedType: customer_orders + aggregatableFields: + - fieldName: id + aggregateExpression: object_id_agg_exp + - fieldName: expected_delivery + aggregateExpression: date_agg_exp + - fieldName: last_updated + aggregateExpression: date_agg_exp + - fieldName: order_date + aggregateExpression: date_agg_exp + - fieldName: order_id + aggregateExpression: string_agg_exp + - fieldName: payment_method + aggregateExpression: string_agg_exp + - fieldName: shipping_cost + aggregateExpression: double_agg_exp + - fieldName: shipping_method + aggregateExpression: string_agg_exp + - fieldName: status + aggregateExpression: string_agg_exp + - fieldName: total_price + aggregateExpression: double_agg_exp + count: + enable: true + graphql: + selectTypeName: eCommerce_customer_orders_agg_exp + +--- +kind: OrderByExpression +version: v1 +definition: + name: customer_orders_customer_address_order_by_exp + operand: + object: + orderedType: customer_orders_customer_address + orderableFields: + - fieldName: city + orderByExpression: string_order_by_exp + - fieldName: country + orderByExpression: string_order_by_exp + - fieldName: state + orderByExpression: string_order_by_exp + - fieldName: street + orderByExpression: string_order_by_exp + - fieldName: zip + orderByExpression: string_order_by_exp + orderableRelationships: [] + graphql: + expressionTypeName: eCommerce_customer_orders_customer_address_order_by_exp + +--- +kind: OrderByExpression +version: v1 +definition: + name: customer_orders_customer_order_by_exp + operand: + object: + orderedType: customer_orders_customer + orderableFields: + - fieldName: address + orderByExpression: customer_orders_customer_address_order_by_exp + - fieldName: customer_id + orderByExpression: string_order_by_exp + - fieldName: email + orderByExpression: string_order_by_exp + - fieldName: name + orderByExpression: string_order_by_exp + - fieldName: phone + orderByExpression: string_order_by_exp + orderableRelationships: [] + graphql: + expressionTypeName: eCommerce_customer_orders_customer_order_by_exp + +--- +kind: OrderByExpression +version: v1 +definition: + name: customer_orders_order_by_exp + operand: + object: + orderedType: customer_orders + orderableFields: + - fieldName: id + orderByExpression: object_id_order_by_exp + - fieldName: customer + orderByExpression: customer_orders_customer_order_by_exp + - fieldName: expected_delivery + orderByExpression: date_order_by_exp + - fieldName: last_updated + orderByExpression: date_order_by_exp + - fieldName: order_date + orderByExpression: date_order_by_exp + - fieldName: order_id + orderByExpression: string_order_by_exp + - fieldName: payment_method + orderByExpression: string_order_by_exp + - fieldName: shipping_cost + orderByExpression: double_order_by_exp + - fieldName: shipping_method + orderByExpression: string_order_by_exp + - fieldName: status + orderByExpression: string_order_by_exp + - fieldName: total_price + orderByExpression: double_order_by_exp + orderableRelationships: [] + graphql: + expressionTypeName: eCommerce_customer_orders_order_by_exp + +--- +kind: Model +version: v2 +definition: + name: customer_orders + description: > + Tracks e-commerce order transactions including customer information, order details, shipping information, and itemized purchase data. + + This table provides a comprehensive view of each order with: + + - Order metadata (status, dates, shipping details) + + - Customer information including shipping address + + - Detailed breakdown of items purchased + + - Financial information (item prices, shipping cost, total) + + + The nested structure allows for: + + - Multiple items per order through the items array + + - Complete shipping address information through the nested address struct + + - Full customer details through the customer struct + objectType: customer_orders + source: + dataConnectorName: ecommerce_mongodb + collection: customer_orders + filterExpressionType: customer_orders_bool_exp + aggregateExpression: customer_orders_agg_exp + orderByExpression: customer_orders_order_by_exp + graphql: + selectMany: + queryRootField: ecommerce_customer_orders + subscription: + rootField: ecommerce_customer_orders + selectUniques: + - queryRootField: ecommerce_customer_orders_by_id + uniqueIdentifier: + - id + subscription: + rootField: ecommerce_customer_orders_by_id + filterInputTypeName: eCommerce_customer_orders_filter_input + aggregate: + queryRootField: ecommerce_customer_orders_aggregate + subscription: + rootField: ecommerce_customer_orders_aggregate + +--- +kind: ModelPermissions +version: v1 +definition: + modelName: customer_orders + permissions: + - role: admin + select: + filter: null + allowSubscriptions: true + diff --git a/hasura/industry/sco/ecommerce/metadata/ecommerce_mongodb-types.hml b/hasura/industry/sco/ecommerce/metadata/ecommerce_mongodb-types.hml new file mode 100644 index 00000000..d84e4d0c --- /dev/null +++ b/hasura/industry/sco/ecommerce/metadata/ecommerce_mongodb-types.hml @@ -0,0 +1,430 @@ +--- +kind: ScalarType +version: v1 +definition: + name: object_id + graphql: + typeName: eCommerce_object_id + +--- +kind: BooleanExpressionType +version: v1 +definition: + name: object_id_bool_exp + operand: + scalar: + type: object_id + comparisonOperators: + - name: _eq + argumentType: object_id! + - name: _in + argumentType: "[object_id!]!" + - name: _neq + argumentType: object_id! + - name: _nin + argumentType: "[object_id!]!" + dataConnectorOperatorMapping: + - dataConnectorName: ecommerce_mongodb + dataConnectorScalarType: ObjectId + operatorMapping: {} + logicalOperators: + enable: true + isNull: + enable: true + graphql: + typeName: eCommerce_object_id_bool_exp + +--- +kind: DataConnectorScalarRepresentation +version: v1 +definition: + dataConnectorName: ecommerce_mongodb + dataConnectorScalarType: ObjectId + representation: object_id + graphql: + comparisonExpressionTypeName: eCommerce_object_id_comparison_exp + +--- +kind: DataConnectorScalarRepresentation +version: v1 +definition: + dataConnectorName: ecommerce_mongodb + dataConnectorScalarType: String + representation: String + graphql: + comparisonExpressionTypeName: eCommerce_string_comparison_exp + +--- +kind: ScalarType +version: v1 +definition: + name: date + graphql: + typeName: eCommerce_date + +--- +kind: BooleanExpressionType +version: v1 +definition: + name: date_bool_exp + operand: + scalar: + type: date + comparisonOperators: + - name: _eq + argumentType: date! + - name: _gt + argumentType: date! + - name: _gte + argumentType: date! + - name: _in + argumentType: "[date!]!" + - name: _lt + argumentType: date! + - name: _lte + argumentType: date! + - name: _neq + argumentType: date! + - name: _nin + argumentType: "[date!]!" + dataConnectorOperatorMapping: + - dataConnectorName: ecommerce_mongodb + dataConnectorScalarType: Date + operatorMapping: {} + logicalOperators: + enable: true + isNull: + enable: true + graphql: + typeName: eCommerce_date_bool_exp + +--- +kind: DataConnectorScalarRepresentation +version: v1 +definition: + dataConnectorName: ecommerce_mongodb + dataConnectorScalarType: Date + representation: date + graphql: + comparisonExpressionTypeName: eCommerce_date_comparison_exp + +--- +kind: DataConnectorScalarRepresentation +version: v1 +definition: + dataConnectorName: ecommerce_mongodb + dataConnectorScalarType: Int + representation: Int + graphql: + comparisonExpressionTypeName: eCommerce_int_comparison_exp + +--- +kind: ScalarType +version: v1 +definition: + name: double + graphql: + typeName: eCommerce_double + +--- +kind: BooleanExpressionType +version: v1 +definition: + name: double_bool_exp + operand: + scalar: + type: double + comparisonOperators: + - name: _eq + argumentType: double! + - name: _gt + argumentType: double! + - name: _gte + argumentType: double! + - name: _in + argumentType: "[double!]!" + - name: _lt + argumentType: double! + - name: _lte + argumentType: double! + - name: _neq + argumentType: double! + - name: _nin + argumentType: "[double!]!" + dataConnectorOperatorMapping: + - dataConnectorName: ecommerce_mongodb + dataConnectorScalarType: Double + operatorMapping: {} + logicalOperators: + enable: true + isNull: + enable: true + graphql: + typeName: eCommerce_double_bool_exp + +--- +kind: DataConnectorScalarRepresentation +version: v1 +definition: + dataConnectorName: ecommerce_mongodb + dataConnectorScalarType: Double + representation: double + graphql: + comparisonExpressionTypeName: eCommerce_double_comparison_exp + +--- +kind: BooleanExpressionType +version: v1 +definition: + name: string_bool_exp + operand: + scalar: + type: String + comparisonOperators: + - name: _eq + argumentType: String! + - name: _gt + argumentType: String! + - name: _gte + argumentType: String! + - name: _in + argumentType: "[String!]!" + - name: _iregex + argumentType: String! + - name: _lt + argumentType: String! + - name: _lte + argumentType: String! + - name: _neq + argumentType: String! + - name: _nin + argumentType: "[String!]!" + - name: _regex + argumentType: String! + dataConnectorOperatorMapping: + - dataConnectorName: ecommerce_mongodb + dataConnectorScalarType: String + operatorMapping: {} + logicalOperators: + enable: true + isNull: + enable: true + graphql: + typeName: eCommerce_string_bool_exp + +--- +kind: BooleanExpressionType +version: v1 +definition: + name: int_bool_exp + operand: + scalar: + type: Int + comparisonOperators: + - name: _eq + argumentType: Int! + - name: _gt + argumentType: Int! + - name: _gte + argumentType: Int! + - name: _in + argumentType: "[Int!]!" + - name: _lt + argumentType: Int! + - name: _lte + argumentType: Int! + - name: _neq + argumentType: Int! + - name: _nin + argumentType: "[Int!]!" + dataConnectorOperatorMapping: + - dataConnectorName: ecommerce_mongodb + dataConnectorScalarType: Int + operatorMapping: {} + logicalOperators: + enable: true + isNull: + enable: true + graphql: + typeName: eCommerce_int_bool_exp + +--- +kind: AggregateExpression +version: v1 +definition: + name: object_id_agg_exp + operand: + scalar: + aggregatedType: object_id + aggregationFunctions: + - name: count + returnType: Int! + dataConnectorAggregationFunctionMapping: + - dataConnectorName: ecommerce_mongodb + dataConnectorScalarType: ObjectId + functionMapping: + count: + name: count + count: + enable: true + countDistinct: + enable: true + graphql: + selectTypeName: eCommerce_object_id_agg_exp + +--- +kind: AggregateExpression +version: v1 +definition: + name: date_agg_exp + operand: + scalar: + aggregatedType: date + aggregationFunctions: + - name: count + returnType: Int! + - name: max + returnType: date + - name: min + returnType: date + dataConnectorAggregationFunctionMapping: + - dataConnectorName: ecommerce_mongodb + dataConnectorScalarType: Date + functionMapping: + count: + name: count + max: + name: max + min: + name: min + count: + enable: true + countDistinct: + enable: true + graphql: + selectTypeName: eCommerce_date_agg_exp + +--- +kind: AggregateExpression +version: v1 +definition: + name: string_agg_exp + operand: + scalar: + aggregatedType: String + aggregationFunctions: + - name: count + returnType: Int! + - name: max + returnType: String + - name: min + returnType: String + dataConnectorAggregationFunctionMapping: + - dataConnectorName: ecommerce_mongodb + dataConnectorScalarType: String + functionMapping: + count: + name: count + max: + name: max + min: + name: min + count: + enable: true + countDistinct: + enable: true + graphql: + selectTypeName: eCommerce_string_agg_exp + +--- +kind: AggregateExpression +version: v1 +definition: + name: double_agg_exp + operand: + scalar: + aggregatedType: double + aggregationFunctions: + - name: avg + returnType: double + - name: count + returnType: Int! + - name: max + returnType: double + - name: min + returnType: double + - name: sum + returnType: double + dataConnectorAggregationFunctionMapping: + - dataConnectorName: ecommerce_mongodb + dataConnectorScalarType: Double + functionMapping: + avg: + name: avg + count: + name: count + max: + name: max + min: + name: min + sum: + name: sum + count: + enable: true + countDistinct: + enable: true + graphql: + selectTypeName: eCommerce_double_agg_exp + +--- +kind: OrderByExpression +version: v1 +definition: + name: object_id_order_by_exp + operand: + scalar: + orderedType: object_id + enableOrderByDirections: + enableAll: true + graphql: + expressionTypeName: eCommerce_object_id_order_by_exp + +--- +kind: OrderByExpression +version: v1 +definition: + name: string_order_by_exp + operand: + scalar: + orderedType: String + enableOrderByDirections: + enableAll: true + graphql: + expressionTypeName: eCommerce_string_order_by_exp + +--- +kind: OrderByExpression +version: v1 +definition: + name: date_order_by_exp + operand: + scalar: + orderedType: date + enableOrderByDirections: + enableAll: true + graphql: + expressionTypeName: eCommerce_date_order_by_exp + +--- +kind: OrderByExpression +version: v1 +definition: + name: double_order_by_exp + operand: + scalar: + orderedType: double + enableOrderByDirections: + enableAll: true + graphql: + expressionTypeName: eCommerce_double_order_by_exp + diff --git a/hasura/industry/sco/ecommerce/metadata/ecommerce_mongodb.hml b/hasura/industry/sco/ecommerce/metadata/ecommerce_mongodb.hml new file mode 100644 index 00000000..1cecd613 --- /dev/null +++ b/hasura/industry/sco/ecommerce/metadata/ecommerce_mongodb.hml @@ -0,0 +1,1005 @@ +kind: DataConnectorLink +version: v1 +definition: + name: ecommerce_mongodb + url: + readWriteUrls: + read: + valueFromEnv: ECOMMERCE_ECOMMERCE_MONGODB_READ_URL + write: + valueFromEnv: ECOMMERCE_ECOMMERCE_MONGODB_WRITE_URL + headers: + Authorization: + valueFromEnv: ECOMMERCE_ECOMMERCE_MONGODB_AUTHORIZATION_HEADER + schema: + version: v0.1 + schema: + scalar_types: + BinData: + aggregate_functions: + count: + result_type: + name: Int + type: named + comparison_operators: + _eq: + type: equal + _in: + type: in + _neq: + type: custom + argument_type: + name: BinData + type: named + _nin: + type: custom + argument_type: + element_type: + name: BinData + type: named + type: array + Bool: + representation: + type: boolean + aggregate_functions: + count: + result_type: + name: Int + type: named + comparison_operators: + _eq: + type: equal + _in: + type: in + _neq: + type: custom + argument_type: + name: Bool + type: named + _nin: + type: custom + argument_type: + element_type: + name: Bool + type: named + type: array + Date: + representation: + type: timestamp + aggregate_functions: + count: + result_type: + name: Int + type: named + max: + result_type: + type: nullable + underlying_type: + name: Date + type: named + min: + result_type: + type: nullable + underlying_type: + name: Date + type: named + comparison_operators: + _eq: + type: equal + _gt: + type: custom + argument_type: + name: Date + type: named + _gte: + type: custom + argument_type: + name: Date + type: named + _in: + type: in + _lt: + type: custom + argument_type: + name: Date + type: named + _lte: + type: custom + argument_type: + name: Date + type: named + _neq: + type: custom + argument_type: + name: Date + type: named + _nin: + type: custom + argument_type: + element_type: + name: Date + type: named + type: array + DbPointer: + aggregate_functions: + count: + result_type: + name: Int + type: named + comparison_operators: + _eq: + type: equal + _in: + type: in + _neq: + type: custom + argument_type: + name: DbPointer + type: named + _nin: + type: custom + argument_type: + element_type: + name: DbPointer + type: named + type: array + Decimal: + representation: + type: bigdecimal + aggregate_functions: + avg: + result_type: + type: nullable + underlying_type: + name: Decimal + type: named + count: + result_type: + name: Int + type: named + max: + result_type: + type: nullable + underlying_type: + name: Decimal + type: named + min: + result_type: + type: nullable + underlying_type: + name: Decimal + type: named + sum: + result_type: + type: nullable + underlying_type: + name: Decimal + type: named + comparison_operators: + _eq: + type: equal + _gt: + type: custom + argument_type: + name: Decimal + type: named + _gte: + type: custom + argument_type: + name: Decimal + type: named + _in: + type: in + _lt: + type: custom + argument_type: + name: Decimal + type: named + _lte: + type: custom + argument_type: + name: Decimal + type: named + _neq: + type: custom + argument_type: + name: Decimal + type: named + _nin: + type: custom + argument_type: + element_type: + name: Decimal + type: named + type: array + Double: + representation: + type: float64 + aggregate_functions: + avg: + result_type: + type: nullable + underlying_type: + name: Double + type: named + count: + result_type: + name: Int + type: named + max: + result_type: + type: nullable + underlying_type: + name: Double + type: named + min: + result_type: + type: nullable + underlying_type: + name: Double + type: named + sum: + result_type: + type: nullable + underlying_type: + name: Double + type: named + comparison_operators: + _eq: + type: equal + _gt: + type: custom + argument_type: + name: Double + type: named + _gte: + type: custom + argument_type: + name: Double + type: named + _in: + type: in + _lt: + type: custom + argument_type: + name: Double + type: named + _lte: + type: custom + argument_type: + name: Double + type: named + _neq: + type: custom + argument_type: + name: Double + type: named + _nin: + type: custom + argument_type: + element_type: + name: Double + type: named + type: array + ExtendedJSON: + representation: + type: json + aggregate_functions: + avg: + result_type: + name: ExtendedJSON + type: named + count: + result_type: + name: Int + type: named + max: + result_type: + name: ExtendedJSON + type: named + min: + result_type: + name: ExtendedJSON + type: named + sum: + result_type: + name: ExtendedJSON + type: named + comparison_operators: + _eq: + type: equal + _gt: + type: custom + argument_type: + name: ExtendedJSON + type: named + _gte: + type: custom + argument_type: + name: ExtendedJSON + type: named + _in: + type: custom + argument_type: + name: ExtendedJSON + type: named + _iregex: + type: custom + argument_type: + name: String + type: named + _lt: + type: custom + argument_type: + name: ExtendedJSON + type: named + _lte: + type: custom + argument_type: + name: ExtendedJSON + type: named + _neq: + type: custom + argument_type: + name: ExtendedJSON + type: named + _nin: + type: custom + argument_type: + name: ExtendedJSON + type: named + _regex: + type: custom + argument_type: + name: String + type: named + Int: + representation: + type: int32 + aggregate_functions: + avg: + result_type: + type: nullable + underlying_type: + name: Int + type: named + count: + result_type: + name: Int + type: named + max: + result_type: + type: nullable + underlying_type: + name: Int + type: named + min: + result_type: + type: nullable + underlying_type: + name: Int + type: named + sum: + result_type: + type: nullable + underlying_type: + name: Int + type: named + comparison_operators: + _eq: + type: equal + _gt: + type: custom + argument_type: + name: Int + type: named + _gte: + type: custom + argument_type: + name: Int + type: named + _in: + type: in + _lt: + type: custom + argument_type: + name: Int + type: named + _lte: + type: custom + argument_type: + name: Int + type: named + _neq: + type: custom + argument_type: + name: Int + type: named + _nin: + type: custom + argument_type: + element_type: + name: Int + type: named + type: array + Javascript: + aggregate_functions: + count: + result_type: + name: Int + type: named + comparison_operators: {} + JavascriptWithScope: + aggregate_functions: + count: + result_type: + name: Int + type: named + comparison_operators: {} + Long: + representation: + type: int64 + aggregate_functions: + avg: + result_type: + type: nullable + underlying_type: + name: Long + type: named + count: + result_type: + name: Int + type: named + max: + result_type: + type: nullable + underlying_type: + name: Long + type: named + min: + result_type: + type: nullable + underlying_type: + name: Long + type: named + sum: + result_type: + type: nullable + underlying_type: + name: Long + type: named + comparison_operators: + _eq: + type: equal + _gt: + type: custom + argument_type: + name: Long + type: named + _gte: + type: custom + argument_type: + name: Long + type: named + _in: + type: in + _lt: + type: custom + argument_type: + name: Long + type: named + _lte: + type: custom + argument_type: + name: Long + type: named + _neq: + type: custom + argument_type: + name: Long + type: named + _nin: + type: custom + argument_type: + element_type: + name: Long + type: named + type: array + MaxKey: + aggregate_functions: + count: + result_type: + name: Int + type: named + comparison_operators: + _eq: + type: equal + _in: + type: in + _neq: + type: custom + argument_type: + name: MaxKey + type: named + _nin: + type: custom + argument_type: + element_type: + name: MaxKey + type: named + type: array + MinKey: + aggregate_functions: + count: + result_type: + name: Int + type: named + comparison_operators: + _eq: + type: equal + _in: + type: in + _neq: + type: custom + argument_type: + name: MinKey + type: named + _nin: + type: custom + argument_type: + element_type: + name: MinKey + type: named + type: array + "Null": + aggregate_functions: + count: + result_type: + name: Int + type: named + comparison_operators: + _eq: + type: equal + _in: + type: in + _neq: + type: custom + argument_type: + name: "Null" + type: named + _nin: + type: custom + argument_type: + element_type: + name: "Null" + type: named + type: array + ObjectId: + representation: + type: string + aggregate_functions: + count: + result_type: + name: Int + type: named + comparison_operators: + _eq: + type: equal + _in: + type: in + _neq: + type: custom + argument_type: + name: ObjectId + type: named + _nin: + type: custom + argument_type: + element_type: + name: ObjectId + type: named + type: array + Regex: + aggregate_functions: + count: + result_type: + name: Int + type: named + comparison_operators: {} + String: + representation: + type: string + aggregate_functions: + count: + result_type: + name: Int + type: named + max: + result_type: + type: nullable + underlying_type: + name: String + type: named + min: + result_type: + type: nullable + underlying_type: + name: String + type: named + comparison_operators: + _eq: + type: equal + _gt: + type: custom + argument_type: + name: String + type: named + _gte: + type: custom + argument_type: + name: String + type: named + _in: + type: in + _iregex: + type: custom + argument_type: + name: String + type: named + _lt: + type: custom + argument_type: + name: String + type: named + _lte: + type: custom + argument_type: + name: String + type: named + _neq: + type: custom + argument_type: + name: String + type: named + _nin: + type: custom + argument_type: + element_type: + name: String + type: named + type: array + _regex: + type: custom + argument_type: + name: String + type: named + Symbol: + aggregate_functions: + count: + result_type: + name: Int + type: named + comparison_operators: + _eq: + type: equal + _in: + type: in + _neq: + type: custom + argument_type: + name: Symbol + type: named + _nin: + type: custom + argument_type: + element_type: + name: Symbol + type: named + type: array + Timestamp: + aggregate_functions: + count: + result_type: + name: Int + type: named + max: + result_type: + type: nullable + underlying_type: + name: Timestamp + type: named + min: + result_type: + type: nullable + underlying_type: + name: Timestamp + type: named + comparison_operators: + _eq: + type: equal + _gt: + type: custom + argument_type: + name: Timestamp + type: named + _gte: + type: custom + argument_type: + name: Timestamp + type: named + _in: + type: in + _lt: + type: custom + argument_type: + name: Timestamp + type: named + _lte: + type: custom + argument_type: + name: Timestamp + type: named + _neq: + type: custom + argument_type: + name: Timestamp + type: named + _nin: + type: custom + argument_type: + element_type: + name: Timestamp + type: named + type: array + UUID: + representation: + type: string + aggregate_functions: + count: + result_type: + name: Int + type: named + comparison_operators: + _eq: + type: equal + _in: + type: in + _neq: + type: custom + argument_type: + name: UUID + type: named + _nin: + type: custom + argument_type: + element_type: + name: UUID + type: named + type: array + Undefined: + aggregate_functions: + count: + result_type: + name: Int + type: named + comparison_operators: + _eq: + type: equal + _in: + type: in + _neq: + type: custom + argument_type: + name: Undefined + type: named + _nin: + type: custom + argument_type: + element_type: + name: Undefined + type: named + type: array + object_types: + customer_orders: + fields: + _id: + type: + name: ObjectId + type: named + customer: + type: + type: nullable + underlying_type: + name: customer_orders_customer + type: named + expected_delivery: + type: + type: nullable + underlying_type: + name: Date + type: named + items: + type: + type: nullable + underlying_type: + element_type: + name: customer_orders_items + type: named + type: array + last_updated: + type: + type: nullable + underlying_type: + name: Date + type: named + order_date: + type: + type: nullable + underlying_type: + name: Date + type: named + order_id: + type: + type: nullable + underlying_type: + name: String + type: named + payment_method: + type: + type: nullable + underlying_type: + name: String + type: named + shipping_cost: + type: + type: nullable + underlying_type: + name: Double + type: named + shipping_method: + type: + type: nullable + underlying_type: + name: String + type: named + status: + type: + type: nullable + underlying_type: + name: String + type: named + total_price: + type: + type: nullable + underlying_type: + name: Double + type: named + customer_orders_customer: + fields: + address: + type: + type: nullable + underlying_type: + name: customer_orders_customer_address + type: named + customer_id: + type: + type: nullable + underlying_type: + name: String + type: named + email: + type: + type: nullable + underlying_type: + name: String + type: named + name: + type: + type: nullable + underlying_type: + name: String + type: named + phone: + type: + type: nullable + underlying_type: + name: String + type: named + customer_orders_customer_address: + fields: + city: + type: + type: nullable + underlying_type: + name: String + type: named + country: + type: + type: nullable + underlying_type: + name: String + type: named + state: + type: + type: nullable + underlying_type: + name: String + type: named + street: + type: + type: nullable + underlying_type: + name: String + type: named + zip: + type: + type: nullable + underlying_type: + name: String + type: named + customer_orders_items: + fields: + category: + type: + type: nullable + underlying_type: + name: String + type: named + model_id: + type: + type: nullable + underlying_type: + name: String + type: named + name: + type: + type: nullable + underlying_type: + name: String + type: named + quantity: + type: + type: nullable + underlying_type: + name: Int + type: named + subtotal: + type: + type: nullable + underlying_type: + name: Double + type: named + unit_price: + type: + type: nullable + underlying_type: + name: Double + type: named + collections: + - name: customer_orders + arguments: {} + type: customer_orders + uniqueness_constraints: + customer_orders_id: + unique_columns: + - _id + foreign_keys: {} + functions: [] + procedures: [] + capabilities: + version: 0.1.6 + capabilities: + query: + aggregates: {} + variables: {} + explain: {} + nested_fields: + filter_by: {} + order_by: {} + aggregates: {} + exists: + nested_collections: {} + mutation: {} + relationships: + relation_comparisons: {} diff --git a/hasura/industry/sco/ecommerce/subgraph.yaml b/hasura/industry/sco/ecommerce/subgraph.yaml new file mode 100644 index 00000000..a2ce5a09 --- /dev/null +++ b/hasura/industry/sco/ecommerce/subgraph.yaml @@ -0,0 +1,21 @@ +kind: Subgraph +version: v2 +definition: + name: ecommerce + generator: + rootPath: . + graphqlRootFieldPrefix: ecommerce_ + graphqlTypeNamePrefix: eCommerce_ + namingConvention: snake_case + includePaths: + - metadata + envMapping: + ECOMMERCE_ECOMMERCE_MONGODB_AUTHORIZATION_HEADER: + fromEnv: ECOMMERCE_ECOMMERCE_MONGODB_AUTHORIZATION_HEADER + ECOMMERCE_ECOMMERCE_MONGODB_READ_URL: + fromEnv: ECOMMERCE_ECOMMERCE_MONGODB_READ_URL + ECOMMERCE_ECOMMERCE_MONGODB_WRITE_URL: + fromEnv: ECOMMERCE_ECOMMERCE_MONGODB_WRITE_URL + connectors: + - path: connector/ecommerce_mongodb/connector.yaml + connectorLinkName: ecommerce_mongodb diff --git a/hasura/industry/sco/operations/connector/operations_nodejs/.ddnignore b/hasura/industry/sco/operations/connector/operations_nodejs/.ddnignore new file mode 100644 index 00000000..098c6a98 --- /dev/null +++ b/hasura/industry/sco/operations/connector/operations_nodejs/.ddnignore @@ -0,0 +1,5 @@ +.hasura-connector/ +*.hml +node_modules/ +.env* +compose.yaml diff --git a/hasura/industry/sco/operations/connector/operations_nodejs/.gitignore b/hasura/industry/sco/operations/connector/operations_nodejs/.gitignore new file mode 100644 index 00000000..c2658d7d --- /dev/null +++ b/hasura/industry/sco/operations/connector/operations_nodejs/.gitignore @@ -0,0 +1 @@ +node_modules/ diff --git a/hasura/industry/sco/operations/connector/operations_nodejs/.hasura-connector/Dockerfile b/hasura/industry/sco/operations/connector/operations_nodejs/.hasura-connector/Dockerfile new file mode 100644 index 00000000..1e569140 --- /dev/null +++ b/hasura/industry/sco/operations/connector/operations_nodejs/.hasura-connector/Dockerfile @@ -0,0 +1,9 @@ +FROM ghcr.io/hasura/ndc-nodejs-lambda:v1.13.0 + +COPY package-lock.json package.json /functions/ + +WORKDIR /functions +RUN --mount=type=cache,target=/root/.npm \ + npm ci + +COPY ./ /functions diff --git a/hasura/industry/sco/operations/connector/operations_nodejs/.hasura-connector/Dockerfile.dockerignore b/hasura/industry/sco/operations/connector/operations_nodejs/.hasura-connector/Dockerfile.dockerignore new file mode 100644 index 00000000..6e8ebe5e --- /dev/null +++ b/hasura/industry/sco/operations/connector/operations_nodejs/.hasura-connector/Dockerfile.dockerignore @@ -0,0 +1,3 @@ +.hasura-connector/ +*.hml +node_modules/ diff --git a/hasura/industry/sco/operations/connector/operations_nodejs/.hasura-connector/check-reqs.ps1 b/hasura/industry/sco/operations/connector/operations_nodejs/.hasura-connector/check-reqs.ps1 new file mode 100644 index 00000000..b3b5da57 --- /dev/null +++ b/hasura/industry/sco/operations/connector/operations_nodejs/.hasura-connector/check-reqs.ps1 @@ -0,0 +1,27 @@ +$ErrorActionPreference = "Stop" + +$minimumNodeVersion = 20 + +if (-not (Get-Command "node" -ErrorAction SilentlyContinue)) { + Write-Host "node could not be found. Please install NodeJS v$minimumNodeVersion+." + exit 1 +} + +$nodeVersion = & node --version +if ($nodeVersion -match "^v(\d+)\.") { + $majorVersion = $Matches[1] + if ($majorVersion -lt $minimumNodeVersion) { + Write-Host "Detected Node.js version $nodeVersion on the PATH. The minimum required version is v$minimumNodeVersion." + exit 1 + } +} + +Push-Location $env:HASURA_PLUGIN_CONNECTOR_CONTEXT_PATH +try { + if ((Test-Path "./node_modules") -eq $false) { + Write-Host "node_modules not found, please ensure you have run 'npm install'." + exit 1 + } +} finally { + Pop-Location +} diff --git a/hasura/industry/sco/operations/connector/operations_nodejs/.hasura-connector/check-reqs.sh b/hasura/industry/sco/operations/connector/operations_nodejs/.hasura-connector/check-reqs.sh new file mode 100755 index 00000000..408e58d6 --- /dev/null +++ b/hasura/industry/sco/operations/connector/operations_nodejs/.hasura-connector/check-reqs.sh @@ -0,0 +1,29 @@ +#!/usr/bin/env bash +set -eu -o pipefail + +minimum_node_version="20" + +if ! command -v node &> /dev/null +then + echo "node could not be found on the PATH. Please install Node.js v$minimum_node_version+." + exit 1 +fi + +node_version=$(node --version) +if [[ "$node_version" =~ ^v([[:digit:]]+)\. ]]; then + major_version="${BASH_REMATCH[1]}" + if [[ $major_version -lt $minimum_node_version ]]; then + echo "Detected Node.js version $node_version on the PATH. The minimum required version is v$minimum_node_version." + exit 1 + fi +else + echo "no match" +fi + +cd $HASURA_PLUGIN_CONNECTOR_CONTEXT_PATH + +if [ ! -d "node_modules" ] +then + echo "node_modules directory not found, please ensure you have run 'npm install'." + exit 1 +fi diff --git a/hasura/industry/sco/operations/connector/operations_nodejs/.hasura-connector/connector-metadata.yaml b/hasura/industry/sco/operations/connector/operations_nodejs/.hasura-connector/connector-metadata.yaml new file mode 100644 index 00000000..5c4da026 --- /dev/null +++ b/hasura/industry/sco/operations/connector/operations_nodejs/.hasura-connector/connector-metadata.yaml @@ -0,0 +1,36 @@ +packagingDefinition: + type: ManagedDockerBuild +supportedEnvironmentVariables: [] +commands: + upgradeConfiguration: + type: Dockerized + dockerImage: ghcr.io/hasura/ndc-nodejs-lambda:v1.13.0 + commandArgs: + - /scripts/upgrade.sh +dockerComposeWatch: + - path: package.json + action: rebuild + target: /functions/package.json + - path: package-lock.json + action: rebuild + target: /functions/package-lock.json + - path: ./ + action: sync+restart + target: /functions +nativeToolchainDefinition: + commands: + start: + type: ShellScript + bash: ./start.sh + powershell: ./start.ps1 + watch: + type: ShellScript + bash: ./watch.sh + powershell: ./watch.ps1 + upgradeConfiguration: + type: ShellScript + bash: | + ./upgrade-connector.sh "$HASURA_PLUGIN_CONNECTOR_CONTEXT_PATH" "1.13.0" + powershell: | + & ./upgrade-connector.ps1 "$env:HASURA_PLUGIN_CONNECTOR_CONTEXT_PATH" "1.13.0" +documentationPage: https://hasura.info/nodejs-getting-started diff --git a/hasura/industry/sco/operations/connector/operations_nodejs/.hasura-connector/read-package-script.js b/hasura/industry/sco/operations/connector/operations_nodejs/.hasura-connector/read-package-script.js new file mode 100644 index 00000000..c568ed46 --- /dev/null +++ b/hasura/industry/sco/operations/connector/operations_nodejs/.hasura-connector/read-package-script.js @@ -0,0 +1,29 @@ +// This script reads from the package.json file in the current working directory +// and prints out the text in the "scripts." entry. This is used to bypass +// npm, which does not handle signals correctly, and execute the command directly + +const fs = require("node:fs"); +const process = require("node:process"); +const path = require("node:path"); + +const cwd = process.cwd(); +const packageJsonPath = path.join(cwd, "./package.json"); + +if (process.argv.length < 3) { + console.error("Error: Pass the name of script command you want to read as the first command line arg."); + console.error("Usage: node read-package-script.js "); + process.exit(1); +} +const desiredScript = process.argv[2]; + +try { + const packageJsonText = fs.readFileSync(packageJsonPath); + const packageJson = JSON.parse(packageJsonText); + const script = packageJson.scripts[desiredScript]; + if (script === undefined) { + console.error(`Error: script ${desiredScript} not found in ${packageJsonPath}`) + } + console.log(script); +} catch (e) { + console.error(`Error reading ${packageJsonPath}: ${e}`); +} diff --git a/hasura/industry/sco/operations/connector/operations_nodejs/.hasura-connector/start.ps1 b/hasura/industry/sco/operations/connector/operations_nodejs/.hasura-connector/start.ps1 new file mode 100644 index 00000000..e988441c --- /dev/null +++ b/hasura/industry/sco/operations/connector/operations_nodejs/.hasura-connector/start.ps1 @@ -0,0 +1,17 @@ +$ErrorActionPreference = "Stop" + +$scriptDir = Get-Location + +& ./check-reqs.ps1 + +Push-Location $env:HASURA_PLUGIN_CONNECTOR_CONTEXT_PATH +try { + $startScript = & node "$PSScriptRoot\read-package-script.js" "start" + if ($LASTEXITCODE -ne 0) { + exit 1 + } + $env:PATH = "$($env:PATH);$($env:HASURA_PLUGIN_CONNECTOR_CONTEXT_PATH)\node_modules\.bin" + Invoke-Expression "& $startScript" +} finally { + Pop-Location +} diff --git a/hasura/industry/sco/operations/connector/operations_nodejs/.hasura-connector/start.sh b/hasura/industry/sco/operations/connector/operations_nodejs/.hasura-connector/start.sh new file mode 100755 index 00000000..23448012 --- /dev/null +++ b/hasura/industry/sco/operations/connector/operations_nodejs/.hasura-connector/start.sh @@ -0,0 +1,10 @@ +#!/usr/bin/env bash +set -eu -o pipefail + +script_dir=$(pwd) + +./check-reqs.sh + +cd $HASURA_PLUGIN_CONNECTOR_CONTEXT_PATH +start_script=$(node "$script_dir/read-package-script.js" "start") +PATH="$PATH:$(pwd)/node_modules/.bin" exec $start_script diff --git a/hasura/industry/sco/operations/connector/operations_nodejs/.hasura-connector/upgrade-connector.ps1 b/hasura/industry/sco/operations/connector/operations_nodejs/.hasura-connector/upgrade-connector.ps1 new file mode 100644 index 00000000..56c9d2fc --- /dev/null +++ b/hasura/industry/sco/operations/connector/operations_nodejs/.hasura-connector/upgrade-connector.ps1 @@ -0,0 +1,52 @@ +param( + [Parameter(Mandatory=$true)] + [string]$connector_path, + + [Parameter(Mandatory=$true)] + [string]$target_connector_version, + + [Parameter(Mandatory=$false)] + [string[]]$npm_flags = @() +) + +if (-not (Get-Command "npm" -ErrorAction SilentlyContinue)) { + Write-Host "npm could not be found. Is Node.js installed?" + exit 1 +} + +Push-Location $connector_path -ErrorAction Stop +try { + try { + $packageJson = Get-Content 'package.json' -Raw | ConvertFrom-Json + $existing_connector_version = $packageJson.dependencies.'@hasura/ndc-lambda-sdk' + } catch { + Write-Host "Unable to read the @hasura/ndc-lambda-sdk version from your package.json" + Write-Host "Please manually upgrade the @hasura/ndc-lambda-sdk package in your package.json to version $target_connector_version" + exit 1 + } + + if (-not $existing_connector_version) { + # This is very strange, their package.json must have the SDK installed but doesn't + # We'll roll with it and just install the package + Write-Host "Missing the @hasura/ndc-lambda-sdk package in your package.json. Installing version $target_connector_version" + } else { + Write-Host "Upgrading @hasura/ndc-lambda-sdk package from version $existing_connector_version to version $target_connector_version" + } + + try { + & npm install "@hasura/ndc-lambda-sdk@$target_connector_version" --save-exact --no-update-notifier @npm_flags + $exit_status = $LASTEXITCODE + } catch { + $exit_status = 1 + } + + if ($exit_status -ne 0) { + Write-Host "Failed to upgrade @hasura/ndc-lambda-sdk package to version $target_connector_version" + Write-Host "Please manually upgrade the @hasura/ndc-lambda-sdk package in your package.json to version $target_connector_version" + exit 1 + } + + Write-Host "Successfully upgraded @hasura/ndc-lambda-sdk package to version $target_connector_version" +} finally { + Pop-Location +} diff --git a/hasura/industry/sco/operations/connector/operations_nodejs/.hasura-connector/upgrade-connector.sh b/hasura/industry/sco/operations/connector/operations_nodejs/.hasura-connector/upgrade-connector.sh new file mode 100755 index 00000000..4b3f42dc --- /dev/null +++ b/hasura/industry/sco/operations/connector/operations_nodejs/.hasura-connector/upgrade-connector.sh @@ -0,0 +1,59 @@ +#!/usr/bin/env bash +set -eu -o pipefail + +connector_path="${1:-}" +target_connector_version="${2:-}" +npm_flags="${3:-}" + +if [ -z "$connector_path" ]; then + echo "Error: connector path must be passed as the first argument" + exit 1 +fi + +if [ -z "$target_connector_version" ]; then + echo "Error: target connector version must be passed as the second argument" + exit 1 +fi + +if ! command -v npm &> /dev/null +then + echo "npm could not be found on the PATH. Is Node.js installed?" + exit 1 +fi + +if ! command -v jq &> /dev/null +then + echo "jq could not be found on the PATH. Is jq installed?" + exit 1 +fi + +cd "$connector_path" + +set +e +existing_connector_version=$(jq '.dependencies["@hasura/ndc-lambda-sdk"]' -r package.json) +exit_status=$? +if [ $exit_status -ne 0 ]; then + echo "Unable to read the @hasura/ndc-lambda-sdk version from your package.json" + echo "Please manually upgrade the @hasura/ndc-lambda-sdk package in your package.json to version $target_connector_version" + exit 1 +fi + +if [ $existing_connector_version = "null" ]; then + # This is very strange, their package.json must have the SDK installed but doesn't + # We'll roll with it and just install the package + echo "Missing the @hasura/ndc-lambda-sdk package in your package.json. Installing version $target_connector_version" +else + echo "Upgrading @hasura/ndc-lambda-sdk package from version $existing_connector_version to version $target_connector_version" +fi + +npm install "@hasura/ndc-lambda-sdk@$target_connector_version" --save-exact --no-update-notifier $npm_flags +exit_status=$? +set -e + +if [ $exit_status -ne 0 ]; then + echo "Failed to upgrade @hasura/ndc-lambda-sdk package to version $target_connector_version" + echo "Please manually upgrade the @hasura/ndc-lambda-sdk package in your package.json to version $target_connector_version" + exit 1 +fi + +echo "Successfully upgraded @hasura/ndc-lambda-sdk package to version $target_connector_version" diff --git a/hasura/industry/sco/operations/connector/operations_nodejs/.hasura-connector/watch.ps1 b/hasura/industry/sco/operations/connector/operations_nodejs/.hasura-connector/watch.ps1 new file mode 100644 index 00000000..bd517e7a --- /dev/null +++ b/hasura/industry/sco/operations/connector/operations_nodejs/.hasura-connector/watch.ps1 @@ -0,0 +1,17 @@ +$ErrorActionPreference = "Stop" + +$scriptDir = Get-Location + +& ./check-reqs.ps1 + +Push-Location $env:HASURA_PLUGIN_CONNECTOR_CONTEXT_PATH +try { + $watchScript = & node "$PSScriptRoot\read-package-script.js" "watch" + if ($LASTEXITCODE -ne 0) { + exit 1 + } + $env:PATH = "$($env:PATH);$($env:HASURA_PLUGIN_CONNECTOR_CONTEXT_PATH)\node_modules\.bin" + Invoke-Expression "& $watchScript" +} finally { + Pop-Location +} diff --git a/hasura/industry/sco/operations/connector/operations_nodejs/.hasura-connector/watch.sh b/hasura/industry/sco/operations/connector/operations_nodejs/.hasura-connector/watch.sh new file mode 100755 index 00000000..615a7e9d --- /dev/null +++ b/hasura/industry/sco/operations/connector/operations_nodejs/.hasura-connector/watch.sh @@ -0,0 +1,10 @@ +#!/usr/bin/env bash +set -eu -o pipefail + +script_dir=$(pwd) + +./check-reqs.sh + +cd $HASURA_PLUGIN_CONNECTOR_CONTEXT_PATH +watch_script=$(node "$script_dir/read-package-script.js" "watch") +PATH="$PATH:$(pwd)/node_modules/.bin" exec $watch_script diff --git a/hasura/industry/sco/operations/connector/operations_nodejs/compose.yaml b/hasura/industry/sco/operations/connector/operations_nodejs/compose.yaml new file mode 100644 index 00000000..603cb04a --- /dev/null +++ b/hasura/industry/sco/operations/connector/operations_nodejs/compose.yaml @@ -0,0 +1,13 @@ +services: + operations_operations_nodejs: + build: + context: . + dockerfile: .hasura-connector/Dockerfile + environment: + HASURA_SERVICE_TOKEN_SECRET: $OPERATIONS_OPERATIONS_NODEJS_HASURA_SERVICE_TOKEN_SECRET + OTEL_EXPORTER_OTLP_ENDPOINT: $OPERATIONS_OPERATIONS_NODEJS_OTEL_EXPORTER_OTLP_ENDPOINT + OTEL_SERVICE_NAME: $OPERATIONS_OPERATIONS_NODEJS_OTEL_SERVICE_NAME + extra_hosts: + - local.hasura.dev:host-gateway + ports: + - 7683:8080 diff --git a/hasura/industry/sco/operations/connector/operations_nodejs/connector.yaml b/hasura/industry/sco/operations/connector/operations_nodejs/connector.yaml new file mode 100644 index 00000000..fcac20fd --- /dev/null +++ b/hasura/industry/sco/operations/connector/operations_nodejs/connector.yaml @@ -0,0 +1,16 @@ +kind: Connector +version: v2 +definition: + name: operations_nodejs + subgraph: operations + source: hasura/nodejs:v1.13.0 + context: . + envMapping: + HASURA_CONNECTOR_PORT: + fromEnv: OPERATIONS_OPERATIONS_NODEJS_HASURA_CONNECTOR_PORT + HASURA_SERVICE_TOKEN_SECRET: + fromEnv: OPERATIONS_OPERATIONS_NODEJS_HASURA_SERVICE_TOKEN_SECRET + OTEL_EXPORTER_OTLP_ENDPOINT: + fromEnv: OPERATIONS_OPERATIONS_NODEJS_OTEL_EXPORTER_OTLP_ENDPOINT + OTEL_SERVICE_NAME: + fromEnv: OPERATIONS_OPERATIONS_NODEJS_OTEL_SERVICE_NAME diff --git a/hasura/industry/sco/operations/connector/operations_nodejs/functions.ts b/hasura/industry/sco/operations/connector/operations_nodejs/functions.ts new file mode 100644 index 00000000..1947d526 --- /dev/null +++ b/hasura/industry/sco/operations/connector/operations_nodejs/functions.ts @@ -0,0 +1,56 @@ +/** +Functions for supply chain demos are include below +please note that all functions must return complex values +*/ + +/** Begin ShipmentRequest */ +/** + * Creates a new Warehouse Shipment Request + * @param shipmentData Data for the new product + * @returns Created shipment request object + */ +interface ShipmentRequest { + name: string; + units: number; + destination: string; +} +export async function createShipmentRequest(shipmentData: { + product_name: string; + unit_quantity: number; + warehouse_destination: string; +}): + Promise { + // Do a thing + return { + name: shipmentData.product_name, + units: shipmentData.unit_quantity, + destination: shipmentData.warehouse_destination + } +} +/** End ShipmentRequest */ + +/** Begin LoyaltyRewardsRequest */ +/** + * Creates a new Loyalty Reward Request + * @param rewardData Data for a customer + * @returns Created reward request object + */ +interface LoyaltyRewardsRequest { + name: string; + amount: number; + message: string; +} +export async function createLoyaltyRewardsRequest(rewardData: { + customer_name: string; + reward_amount: number; + reward_message: string; +}): + Promise { + // Do a thing + return { + name: rewardData.customer_name, + amount: rewardData.reward_amount, + message: rewardData.reward_message + } +} +/** End LoyaltyRewardsRequest */ diff --git a/hasura/industry/sco/operations/connector/operations_nodejs/package-lock.json b/hasura/industry/sco/operations/connector/operations_nodejs/package-lock.json new file mode 100644 index 00000000..0690531c --- /dev/null +++ b/hasura/industry/sco/operations/connector/operations_nodejs/package-lock.json @@ -0,0 +1,4100 @@ +{ + "name": "operations_nodejs", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "dependencies": { + "@hasura/ndc-lambda-sdk": "1.13.0" + }, + "devDependencies": { + "dotenv-cli": "^7.4.2" + }, + "engines": { + "node": ">=20" + } + }, + "node_modules/@cspotcode/source-map-support": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", + "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", + "license": "MIT", + "dependencies": { + "@jridgewell/trace-mapping": "0.3.9" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@fastify/ajv-compiler": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/@fastify/ajv-compiler/-/ajv-compiler-3.6.0.tgz", + "integrity": "sha512-LwdXQJjmMD+GwLOkP7TVC68qa+pSSogeWWmznRJ/coyTcfe9qA05AHFSe1eZFwK6q+xVRpChnvFUkf1iYaSZsQ==", + "license": "MIT", + "dependencies": { + "ajv": "^8.11.0", + "ajv-formats": "^2.1.1", + "fast-uri": "^2.0.0" + } + }, + "node_modules/@fastify/error": { + "version": "3.4.1", + "resolved": "https://registry.npmjs.org/@fastify/error/-/error-3.4.1.tgz", + "integrity": "sha512-wWSvph+29GR783IhmvdwWnN4bUxTD01Vm5Xad4i7i1VuAOItLvbPAb69sb0IQ2N57yprvhNIwAP5B6xfKTmjmQ==", + "license": "MIT" + }, + "node_modules/@fastify/fast-json-stringify-compiler": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/@fastify/fast-json-stringify-compiler/-/fast-json-stringify-compiler-4.3.0.tgz", + "integrity": "sha512-aZAXGYo6m22Fk1zZzEUKBvut/CIIQe/BapEORnxiD5Qr0kPHqqI69NtEMCme74h+at72sPhbkb4ZrLd1W3KRLA==", + "license": "MIT", + "dependencies": { + "fast-json-stringify": "^5.7.0" + } + }, + "node_modules/@fastify/merge-json-schemas": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/@fastify/merge-json-schemas/-/merge-json-schemas-0.1.1.tgz", + "integrity": "sha512-fERDVz7topgNjtXsJTTW1JKLy0rhuLRcquYqNR9rF7OcVpCa2OVW49ZPDIhaRRCaUuvVxI+N416xUoF76HNSXA==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3" + } + }, + "node_modules/@grpc/grpc-js": { + "version": "1.13.3", + "resolved": "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.13.3.tgz", + "integrity": "sha512-FTXHdOoPbZrBjlVLHuKbDZnsTxXv2BlHF57xw6LuThXacXvtkahEPED0CKMk6obZDf65Hv4k3z62eyPNpvinIg==", + "license": "Apache-2.0", + "dependencies": { + "@grpc/proto-loader": "^0.7.13", + "@js-sdsl/ordered-map": "^4.4.2" + }, + "engines": { + "node": ">=12.10.0" + } + }, + "node_modules/@grpc/proto-loader": { + "version": "0.7.15", + "resolved": "https://registry.npmjs.org/@grpc/proto-loader/-/proto-loader-0.7.15.tgz", + "integrity": "sha512-tMXdRCfYVixjuFK+Hk0Q1s38gV9zDiDJfWL3h1rv4Qc39oILCu1TRTDt7+fGUI8K4G1Fj125Hx/ru3azECWTyQ==", + "license": "Apache-2.0", + "dependencies": { + "lodash.camelcase": "^4.3.0", + "long": "^5.0.0", + "protobufjs": "^7.2.5", + "yargs": "^17.7.2" + }, + "bin": { + "proto-loader-gen-types": "build/bin/proto-loader-gen-types.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@hasura/ndc-lambda-sdk": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/@hasura/ndc-lambda-sdk/-/ndc-lambda-sdk-1.13.0.tgz", + "integrity": "sha512-4hPM9YS50FDa8OD3mUoNgJ1TpbgMpvwZRxE2vYE8ec01lCVEovRbLH2bBNtKe9DAejJe+SXjik4PIQi9JcwNtg==", + "license": "Apache-2.0", + "dependencies": { + "@hasura/ndc-sdk-typescript": "^7.0.0", + "@hasura/ts-node-dev": "^2.1.0", + "@tsconfig/node20": "^20.1.4", + "commander": "^11.1.0", + "cross-spawn": "^7.0.6", + "p-limit": "^3.1.0", + "ts-api-utils": "^2.1.0", + "ts-node": "^10.9.2", + "typescript": "^5.8.2" + }, + "bin": { + "ndc-lambda-sdk": "bin/index.js" + } + }, + "node_modules/@hasura/ndc-sdk-typescript": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@hasura/ndc-sdk-typescript/-/ndc-sdk-typescript-7.0.0.tgz", + "integrity": "sha512-y2ftrTQwtNZz9DmQXla/R/PDTgsSBxdA97uyq5zsAaBT9OjL9rAkRkXjkJdBC4GOXU+AsqSnsrDBn5pFvzzbxw==", + "license": "Apache-2.0", + "dependencies": { + "@json-schema-tools/meta-schema": "^1.7.0", + "@opentelemetry/api": "^1.8.0", + "@opentelemetry/exporter-metrics-otlp-grpc": "^0.53.0", + "@opentelemetry/exporter-metrics-otlp-proto": "^0.53.0", + "@opentelemetry/instrumentation-fastify": "^0.36.0", + "@opentelemetry/instrumentation-fetch": "^0.53.0", + "@opentelemetry/instrumentation-http": "^0.53.0", + "@opentelemetry/instrumentation-pino": "^0.38.0", + "@opentelemetry/resources": "^1.24.0", + "@opentelemetry/sdk-metrics": "^1.24.0", + "@opentelemetry/sdk-node": "^0.51.0", + "@opentelemetry/semantic-conventions": "^1.24.0", + "commander": "^11.0.0", + "fastify": "^4.23.2", + "pino-pretty": "^10.2.3", + "prom-client": "^15.1.2" + } + }, + "node_modules/@hasura/ts-node-dev": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@hasura/ts-node-dev/-/ts-node-dev-2.1.0.tgz", + "integrity": "sha512-GYbAR7UfMJl2SsBGDoki4s3tDKeVGJFC6l7d6j5Gy6sDchY7E1bA3UOzorBqo6EIrGkc44/S5fjnhobBnlpMWg==", + "license": "MIT", + "dependencies": { + "chokidar": "^3.5.1", + "dynamic-dedupe": "^0.3.0", + "minimist": "^1.2.6", + "mkdirp": "^3.0.1", + "resolve": "^1.0.0", + "rimraf": "^6.0.1", + "source-map-support": "^0.5.12", + "tree-kill": "^1.2.2", + "ts-node": "10.9.2", + "tsconfig": "^7.0.0" + }, + "bin": { + "ts-node-dev": "lib/bin.js", + "tsnd": "lib/bin.js" + }, + "engines": { + "node": ">=0.8.0" + }, + "peerDependencies": { + "node-notifier": "*", + "typescript": "*" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "license": "ISC", + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", + "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", + "license": "MIT" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", + "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.0.3", + "@jridgewell/sourcemap-codec": "^1.4.10" + } + }, + "node_modules/@js-sdsl/ordered-map": { + "version": "4.4.2", + "resolved": "https://registry.npmjs.org/@js-sdsl/ordered-map/-/ordered-map-4.4.2.tgz", + "integrity": "sha512-iUKgm52T8HOE/makSxjqoWhe95ZJA1/G1sYsGev2JDKUSS14KAgg1LHb+Ba+IPow0xflbnSkOsZcO08C7w1gYw==", + "license": "MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/js-sdsl" + } + }, + "node_modules/@json-schema-tools/meta-schema": { + "version": "1.7.5", + "resolved": "https://registry.npmjs.org/@json-schema-tools/meta-schema/-/meta-schema-1.7.5.tgz", + "integrity": "sha512-8Hy6tuMC2BQdK7O4ilLovFB9t0j5o0L/sQTuWeg2CNYpITmPiFTRiG7Yb/jYd483D8784kxLFJ0dT+T4O2hNmw==", + "license": "Apache-2.0" + }, + "node_modules/@opentelemetry/api": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/api/-/api-1.8.0.tgz", + "integrity": "sha512-I/s6F7yKUDdtMsoBWXJe8Qz40Tui5vsuKCWJEWVL+5q9sSWRzzx6v2KeNsOBEwd94j0eWkpWCH4yB6rZg9Mf0w==", + "license": "Apache-2.0", + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/@opentelemetry/api-logs": { + "version": "0.51.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/api-logs/-/api-logs-0.51.1.tgz", + "integrity": "sha512-E3skn949Pk1z2XtXu/lxf6QAZpawuTM/IUEXcAzpiUkTd73Hmvw26FiN3cJuTmkpM5hZzHwkomVdtrh/n/zzwA==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/api": "^1.0.0" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/@opentelemetry/context-async-hooks": { + "version": "1.24.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/context-async-hooks/-/context-async-hooks-1.24.1.tgz", + "integrity": "sha512-R5r6DO4kgEOVBxFXhXjwospLQkv+sYxwCfjvoZBe7Zm6KKXAV9kDSJhi/D1BweowdZmO+sdbENLs374gER8hpQ==", + "license": "Apache-2.0", + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.0.0 <1.9.0" + } + }, + "node_modules/@opentelemetry/core": { + "version": "1.26.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/core/-/core-1.26.0.tgz", + "integrity": "sha512-1iKxXXE8415Cdv0yjG3G6hQnB5eVEsJce3QaawX8SjDn0mAS0ZM8fAbZZJD4ajvhC15cePvosSCut404KrIIvQ==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/semantic-conventions": "1.27.0" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.0.0 <1.10.0" + } + }, + "node_modules/@opentelemetry/core/node_modules/@opentelemetry/semantic-conventions": { + "version": "1.27.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/semantic-conventions/-/semantic-conventions-1.27.0.tgz", + "integrity": "sha512-sAay1RrB+ONOem0OZanAR1ZI/k7yDpnOQSQmTMuGImUQb2y8EbSaCJ94FQluM74xoU03vlb2d2U90hZluL6nQg==", + "license": "Apache-2.0", + "engines": { + "node": ">=14" + } + }, + "node_modules/@opentelemetry/exporter-metrics-otlp-grpc": { + "version": "0.53.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/exporter-metrics-otlp-grpc/-/exporter-metrics-otlp-grpc-0.53.0.tgz", + "integrity": "sha512-2wjAccaG4yBxjfPqDeeXEYymwo1OYybUmBxUutDPeu0ColVkXyHIOxKSdHdn6vAn/v20m4w9E6SrSl4jtuZdiA==", + "license": "Apache-2.0", + "dependencies": { + "@grpc/grpc-js": "^1.7.1", + "@opentelemetry/core": "1.26.0", + "@opentelemetry/exporter-metrics-otlp-http": "0.53.0", + "@opentelemetry/otlp-exporter-base": "0.53.0", + "@opentelemetry/otlp-grpc-exporter-base": "0.53.0", + "@opentelemetry/otlp-transformer": "0.53.0", + "@opentelemetry/resources": "1.26.0", + "@opentelemetry/sdk-metrics": "1.26.0" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.3.0" + } + }, + "node_modules/@opentelemetry/exporter-metrics-otlp-grpc/node_modules/@opentelemetry/resources": { + "version": "1.26.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/resources/-/resources-1.26.0.tgz", + "integrity": "sha512-CPNYchBE7MBecCSVy0HKpUISEeJOniWqcHaAHpmasZ3j9o6V3AyBzhRc90jdmemq0HOxDr6ylhUbDhBqqPpeNw==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "1.26.0", + "@opentelemetry/semantic-conventions": "1.27.0" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.0.0 <1.10.0" + } + }, + "node_modules/@opentelemetry/exporter-metrics-otlp-grpc/node_modules/@opentelemetry/sdk-metrics": { + "version": "1.26.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/sdk-metrics/-/sdk-metrics-1.26.0.tgz", + "integrity": "sha512-0SvDXmou/JjzSDOjUmetAAvcKQW6ZrvosU0rkbDGpXvvZN+pQF6JbK/Kd4hNdK4q/22yeruqvukXEJyySTzyTQ==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "1.26.0", + "@opentelemetry/resources": "1.26.0" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.3.0 <1.10.0" + } + }, + "node_modules/@opentelemetry/exporter-metrics-otlp-grpc/node_modules/@opentelemetry/semantic-conventions": { + "version": "1.27.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/semantic-conventions/-/semantic-conventions-1.27.0.tgz", + "integrity": "sha512-sAay1RrB+ONOem0OZanAR1ZI/k7yDpnOQSQmTMuGImUQb2y8EbSaCJ94FQluM74xoU03vlb2d2U90hZluL6nQg==", + "license": "Apache-2.0", + "engines": { + "node": ">=14" + } + }, + "node_modules/@opentelemetry/exporter-metrics-otlp-http": { + "version": "0.53.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/exporter-metrics-otlp-http/-/exporter-metrics-otlp-http-0.53.0.tgz", + "integrity": "sha512-nvZtOk23pZOrTW10Za2WPd9pk4tWDvL6ALlHRFfInpcTjtOgCrv+fQDxpzosa5PeXvYeFFUO5aYCTnwiCX4Dzg==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "1.26.0", + "@opentelemetry/otlp-exporter-base": "0.53.0", + "@opentelemetry/otlp-transformer": "0.53.0", + "@opentelemetry/resources": "1.26.0", + "@opentelemetry/sdk-metrics": "1.26.0" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.3.0" + } + }, + "node_modules/@opentelemetry/exporter-metrics-otlp-http/node_modules/@opentelemetry/resources": { + "version": "1.26.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/resources/-/resources-1.26.0.tgz", + "integrity": "sha512-CPNYchBE7MBecCSVy0HKpUISEeJOniWqcHaAHpmasZ3j9o6V3AyBzhRc90jdmemq0HOxDr6ylhUbDhBqqPpeNw==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "1.26.0", + "@opentelemetry/semantic-conventions": "1.27.0" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.0.0 <1.10.0" + } + }, + "node_modules/@opentelemetry/exporter-metrics-otlp-http/node_modules/@opentelemetry/sdk-metrics": { + "version": "1.26.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/sdk-metrics/-/sdk-metrics-1.26.0.tgz", + "integrity": "sha512-0SvDXmou/JjzSDOjUmetAAvcKQW6ZrvosU0rkbDGpXvvZN+pQF6JbK/Kd4hNdK4q/22yeruqvukXEJyySTzyTQ==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "1.26.0", + "@opentelemetry/resources": "1.26.0" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.3.0 <1.10.0" + } + }, + "node_modules/@opentelemetry/exporter-metrics-otlp-http/node_modules/@opentelemetry/semantic-conventions": { + "version": "1.27.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/semantic-conventions/-/semantic-conventions-1.27.0.tgz", + "integrity": "sha512-sAay1RrB+ONOem0OZanAR1ZI/k7yDpnOQSQmTMuGImUQb2y8EbSaCJ94FQluM74xoU03vlb2d2U90hZluL6nQg==", + "license": "Apache-2.0", + "engines": { + "node": ">=14" + } + }, + "node_modules/@opentelemetry/exporter-metrics-otlp-proto": { + "version": "0.53.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/exporter-metrics-otlp-proto/-/exporter-metrics-otlp-proto-0.53.0.tgz", + "integrity": "sha512-cO99cY04Oy+i8nfYoY0DOVRWVSb0unlerblvf4Fyt2Ls8CkUECLfgjfUXqdjOhBYOX/OZGOBSGetqqYFtKGdGA==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "1.26.0", + "@opentelemetry/exporter-metrics-otlp-http": "0.53.0", + "@opentelemetry/otlp-exporter-base": "0.53.0", + "@opentelemetry/otlp-transformer": "0.53.0", + "@opentelemetry/resources": "1.26.0", + "@opentelemetry/sdk-metrics": "1.26.0" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.3.0" + } + }, + "node_modules/@opentelemetry/exporter-metrics-otlp-proto/node_modules/@opentelemetry/resources": { + "version": "1.26.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/resources/-/resources-1.26.0.tgz", + "integrity": "sha512-CPNYchBE7MBecCSVy0HKpUISEeJOniWqcHaAHpmasZ3j9o6V3AyBzhRc90jdmemq0HOxDr6ylhUbDhBqqPpeNw==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "1.26.0", + "@opentelemetry/semantic-conventions": "1.27.0" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.0.0 <1.10.0" + } + }, + "node_modules/@opentelemetry/exporter-metrics-otlp-proto/node_modules/@opentelemetry/sdk-metrics": { + "version": "1.26.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/sdk-metrics/-/sdk-metrics-1.26.0.tgz", + "integrity": "sha512-0SvDXmou/JjzSDOjUmetAAvcKQW6ZrvosU0rkbDGpXvvZN+pQF6JbK/Kd4hNdK4q/22yeruqvukXEJyySTzyTQ==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "1.26.0", + "@opentelemetry/resources": "1.26.0" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.3.0 <1.10.0" + } + }, + "node_modules/@opentelemetry/exporter-metrics-otlp-proto/node_modules/@opentelemetry/semantic-conventions": { + "version": "1.27.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/semantic-conventions/-/semantic-conventions-1.27.0.tgz", + "integrity": "sha512-sAay1RrB+ONOem0OZanAR1ZI/k7yDpnOQSQmTMuGImUQb2y8EbSaCJ94FQluM74xoU03vlb2d2U90hZluL6nQg==", + "license": "Apache-2.0", + "engines": { + "node": ">=14" + } + }, + "node_modules/@opentelemetry/exporter-trace-otlp-grpc": { + "version": "0.51.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/exporter-trace-otlp-grpc/-/exporter-trace-otlp-grpc-0.51.1.tgz", + "integrity": "sha512-P9+Hkszih95ITvldGZ+kXvj9HpD1QfS+PwooyHK72GYA+Bgm+yUSAsDkUkDms8+s9HW6poxURv3LcjaMuBBpVQ==", + "license": "Apache-2.0", + "dependencies": { + "@grpc/grpc-js": "^1.7.1", + "@opentelemetry/core": "1.24.1", + "@opentelemetry/otlp-grpc-exporter-base": "0.51.1", + "@opentelemetry/otlp-transformer": "0.51.1", + "@opentelemetry/resources": "1.24.1", + "@opentelemetry/sdk-trace-base": "1.24.1" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.0.0" + } + }, + "node_modules/@opentelemetry/exporter-trace-otlp-grpc/node_modules/@opentelemetry/core": { + "version": "1.24.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/core/-/core-1.24.1.tgz", + "integrity": "sha512-wMSGfsdmibI88K9wB498zXY04yThPexo8jvwNNlm542HZB7XrrMRBbAyKJqG8qDRJwIBdBrPMi4V9ZPW/sqrcg==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/semantic-conventions": "1.24.1" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.0.0 <1.9.0" + } + }, + "node_modules/@opentelemetry/exporter-trace-otlp-grpc/node_modules/@opentelemetry/otlp-exporter-base": { + "version": "0.51.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/otlp-exporter-base/-/otlp-exporter-base-0.51.1.tgz", + "integrity": "sha512-UYlnOYyDdzo1Gw559EHCzru0RwhvuXCwoH8jGo9J4gO1TE58GjnEmIjomMsKBCym3qWNJfIQXw+9SZCV0DdQNg==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "1.24.1" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.0.0" + } + }, + "node_modules/@opentelemetry/exporter-trace-otlp-grpc/node_modules/@opentelemetry/otlp-grpc-exporter-base": { + "version": "0.51.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/otlp-grpc-exporter-base/-/otlp-grpc-exporter-base-0.51.1.tgz", + "integrity": "sha512-ZAS+4pq8o7dsugGTwV9s6JMKSxi+guIHdn0acOv0bqj26e9pWDFx5Ky+bI0aY46uR9Y0JyXqY+KAEYM/SO3DFA==", + "license": "Apache-2.0", + "dependencies": { + "@grpc/grpc-js": "^1.7.1", + "@opentelemetry/core": "1.24.1", + "@opentelemetry/otlp-exporter-base": "0.51.1", + "protobufjs": "^7.2.3" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.0.0" + } + }, + "node_modules/@opentelemetry/exporter-trace-otlp-grpc/node_modules/@opentelemetry/otlp-transformer": { + "version": "0.51.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/otlp-transformer/-/otlp-transformer-0.51.1.tgz", + "integrity": "sha512-OppYOXwV9LQqqtYUCywqoOqX/JT9LQ5/FMuPZ//eTkvuHdUC4ZMwz2c6uSoT2R90GWvvGnF1iEqTGyTT3xAt2Q==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/api-logs": "0.51.1", + "@opentelemetry/core": "1.24.1", + "@opentelemetry/resources": "1.24.1", + "@opentelemetry/sdk-logs": "0.51.1", + "@opentelemetry/sdk-metrics": "1.24.1", + "@opentelemetry/sdk-trace-base": "1.24.1" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.3.0 <1.9.0" + } + }, + "node_modules/@opentelemetry/exporter-trace-otlp-grpc/node_modules/@opentelemetry/resources": { + "version": "1.24.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/resources/-/resources-1.24.1.tgz", + "integrity": "sha512-cyv0MwAaPF7O86x5hk3NNgenMObeejZFLJJDVuSeSMIsknlsj3oOZzRv3qSzlwYomXsICfBeFFlxwHQte5mGXQ==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "1.24.1", + "@opentelemetry/semantic-conventions": "1.24.1" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.0.0 <1.9.0" + } + }, + "node_modules/@opentelemetry/exporter-trace-otlp-grpc/node_modules/@opentelemetry/sdk-logs": { + "version": "0.51.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/sdk-logs/-/sdk-logs-0.51.1.tgz", + "integrity": "sha512-ULQQtl82b673PpZc5/0EtH4V+BrwVOgKJZEB7tYZnGTG3I98tQVk89S9/JSixomDr++F4ih+LSJTCqIKBz+MQQ==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "1.24.1", + "@opentelemetry/resources": "1.24.1" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.4.0 <1.9.0", + "@opentelemetry/api-logs": ">=0.39.1" + } + }, + "node_modules/@opentelemetry/exporter-trace-otlp-grpc/node_modules/@opentelemetry/sdk-metrics": { + "version": "1.24.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/sdk-metrics/-/sdk-metrics-1.24.1.tgz", + "integrity": "sha512-FrAqCbbGao9iKI+Mgh+OsC9+U2YMoXnlDHe06yH7dvavCKzE3S892dGtX54+WhSFVxHR/TMRVJiK/CV93GR0TQ==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "1.24.1", + "@opentelemetry/resources": "1.24.1", + "lodash.merge": "^4.6.2" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.3.0 <1.9.0" + } + }, + "node_modules/@opentelemetry/exporter-trace-otlp-grpc/node_modules/@opentelemetry/sdk-trace-base": { + "version": "1.24.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/sdk-trace-base/-/sdk-trace-base-1.24.1.tgz", + "integrity": "sha512-zz+N423IcySgjihl2NfjBf0qw1RWe11XIAWVrTNOSSI6dtSPJiVom2zipFB2AEEtJWpv0Iz6DY6+TjnyTV5pWg==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "1.24.1", + "@opentelemetry/resources": "1.24.1", + "@opentelemetry/semantic-conventions": "1.24.1" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.0.0 <1.9.0" + } + }, + "node_modules/@opentelemetry/exporter-trace-otlp-grpc/node_modules/@opentelemetry/semantic-conventions": { + "version": "1.24.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/semantic-conventions/-/semantic-conventions-1.24.1.tgz", + "integrity": "sha512-VkliWlS4/+GHLLW7J/rVBA00uXus1SWvwFvcUDxDwmFxYfg/2VI6ekwdXS28cjI8Qz2ky2BzG8OUHo+WeYIWqw==", + "license": "Apache-2.0", + "engines": { + "node": ">=14" + } + }, + "node_modules/@opentelemetry/exporter-trace-otlp-http": { + "version": "0.51.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/exporter-trace-otlp-http/-/exporter-trace-otlp-http-0.51.1.tgz", + "integrity": "sha512-n+LhLPsX07URh+HhV2SHVSvz1t4G/l/CE5BjpmhAPqeTceFac1VpyQkavWEJbvnK5bUEXijWt4LxAxFpt2fXyw==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "1.24.1", + "@opentelemetry/otlp-exporter-base": "0.51.1", + "@opentelemetry/otlp-transformer": "0.51.1", + "@opentelemetry/resources": "1.24.1", + "@opentelemetry/sdk-trace-base": "1.24.1" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.0.0" + } + }, + "node_modules/@opentelemetry/exporter-trace-otlp-http/node_modules/@opentelemetry/core": { + "version": "1.24.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/core/-/core-1.24.1.tgz", + "integrity": "sha512-wMSGfsdmibI88K9wB498zXY04yThPexo8jvwNNlm542HZB7XrrMRBbAyKJqG8qDRJwIBdBrPMi4V9ZPW/sqrcg==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/semantic-conventions": "1.24.1" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.0.0 <1.9.0" + } + }, + "node_modules/@opentelemetry/exporter-trace-otlp-http/node_modules/@opentelemetry/otlp-exporter-base": { + "version": "0.51.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/otlp-exporter-base/-/otlp-exporter-base-0.51.1.tgz", + "integrity": "sha512-UYlnOYyDdzo1Gw559EHCzru0RwhvuXCwoH8jGo9J4gO1TE58GjnEmIjomMsKBCym3qWNJfIQXw+9SZCV0DdQNg==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "1.24.1" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.0.0" + } + }, + "node_modules/@opentelemetry/exporter-trace-otlp-http/node_modules/@opentelemetry/otlp-transformer": { + "version": "0.51.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/otlp-transformer/-/otlp-transformer-0.51.1.tgz", + "integrity": "sha512-OppYOXwV9LQqqtYUCywqoOqX/JT9LQ5/FMuPZ//eTkvuHdUC4ZMwz2c6uSoT2R90GWvvGnF1iEqTGyTT3xAt2Q==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/api-logs": "0.51.1", + "@opentelemetry/core": "1.24.1", + "@opentelemetry/resources": "1.24.1", + "@opentelemetry/sdk-logs": "0.51.1", + "@opentelemetry/sdk-metrics": "1.24.1", + "@opentelemetry/sdk-trace-base": "1.24.1" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.3.0 <1.9.0" + } + }, + "node_modules/@opentelemetry/exporter-trace-otlp-http/node_modules/@opentelemetry/resources": { + "version": "1.24.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/resources/-/resources-1.24.1.tgz", + "integrity": "sha512-cyv0MwAaPF7O86x5hk3NNgenMObeejZFLJJDVuSeSMIsknlsj3oOZzRv3qSzlwYomXsICfBeFFlxwHQte5mGXQ==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "1.24.1", + "@opentelemetry/semantic-conventions": "1.24.1" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.0.0 <1.9.0" + } + }, + "node_modules/@opentelemetry/exporter-trace-otlp-http/node_modules/@opentelemetry/sdk-logs": { + "version": "0.51.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/sdk-logs/-/sdk-logs-0.51.1.tgz", + "integrity": "sha512-ULQQtl82b673PpZc5/0EtH4V+BrwVOgKJZEB7tYZnGTG3I98tQVk89S9/JSixomDr++F4ih+LSJTCqIKBz+MQQ==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "1.24.1", + "@opentelemetry/resources": "1.24.1" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.4.0 <1.9.0", + "@opentelemetry/api-logs": ">=0.39.1" + } + }, + "node_modules/@opentelemetry/exporter-trace-otlp-http/node_modules/@opentelemetry/sdk-metrics": { + "version": "1.24.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/sdk-metrics/-/sdk-metrics-1.24.1.tgz", + "integrity": "sha512-FrAqCbbGao9iKI+Mgh+OsC9+U2YMoXnlDHe06yH7dvavCKzE3S892dGtX54+WhSFVxHR/TMRVJiK/CV93GR0TQ==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "1.24.1", + "@opentelemetry/resources": "1.24.1", + "lodash.merge": "^4.6.2" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.3.0 <1.9.0" + } + }, + "node_modules/@opentelemetry/exporter-trace-otlp-http/node_modules/@opentelemetry/sdk-trace-base": { + "version": "1.24.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/sdk-trace-base/-/sdk-trace-base-1.24.1.tgz", + "integrity": "sha512-zz+N423IcySgjihl2NfjBf0qw1RWe11XIAWVrTNOSSI6dtSPJiVom2zipFB2AEEtJWpv0Iz6DY6+TjnyTV5pWg==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "1.24.1", + "@opentelemetry/resources": "1.24.1", + "@opentelemetry/semantic-conventions": "1.24.1" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.0.0 <1.9.0" + } + }, + "node_modules/@opentelemetry/exporter-trace-otlp-http/node_modules/@opentelemetry/semantic-conventions": { + "version": "1.24.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/semantic-conventions/-/semantic-conventions-1.24.1.tgz", + "integrity": "sha512-VkliWlS4/+GHLLW7J/rVBA00uXus1SWvwFvcUDxDwmFxYfg/2VI6ekwdXS28cjI8Qz2ky2BzG8OUHo+WeYIWqw==", + "license": "Apache-2.0", + "engines": { + "node": ">=14" + } + }, + "node_modules/@opentelemetry/exporter-trace-otlp-proto": { + "version": "0.51.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/exporter-trace-otlp-proto/-/exporter-trace-otlp-proto-0.51.1.tgz", + "integrity": "sha512-SE9f0/6V6EeXC9i+WA4WFjS1EYgaBCpAnI5+lxWvZ7iO7EU1IvHvZhP6Kojr0nLldo83gqg6G7OWFqsID3uF+w==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "1.24.1", + "@opentelemetry/otlp-exporter-base": "0.51.1", + "@opentelemetry/otlp-proto-exporter-base": "0.51.1", + "@opentelemetry/otlp-transformer": "0.51.1", + "@opentelemetry/resources": "1.24.1", + "@opentelemetry/sdk-trace-base": "1.24.1" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.0.0" + } + }, + "node_modules/@opentelemetry/exporter-trace-otlp-proto/node_modules/@opentelemetry/core": { + "version": "1.24.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/core/-/core-1.24.1.tgz", + "integrity": "sha512-wMSGfsdmibI88K9wB498zXY04yThPexo8jvwNNlm542HZB7XrrMRBbAyKJqG8qDRJwIBdBrPMi4V9ZPW/sqrcg==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/semantic-conventions": "1.24.1" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.0.0 <1.9.0" + } + }, + "node_modules/@opentelemetry/exporter-trace-otlp-proto/node_modules/@opentelemetry/otlp-exporter-base": { + "version": "0.51.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/otlp-exporter-base/-/otlp-exporter-base-0.51.1.tgz", + "integrity": "sha512-UYlnOYyDdzo1Gw559EHCzru0RwhvuXCwoH8jGo9J4gO1TE58GjnEmIjomMsKBCym3qWNJfIQXw+9SZCV0DdQNg==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "1.24.1" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.0.0" + } + }, + "node_modules/@opentelemetry/exporter-trace-otlp-proto/node_modules/@opentelemetry/otlp-transformer": { + "version": "0.51.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/otlp-transformer/-/otlp-transformer-0.51.1.tgz", + "integrity": "sha512-OppYOXwV9LQqqtYUCywqoOqX/JT9LQ5/FMuPZ//eTkvuHdUC4ZMwz2c6uSoT2R90GWvvGnF1iEqTGyTT3xAt2Q==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/api-logs": "0.51.1", + "@opentelemetry/core": "1.24.1", + "@opentelemetry/resources": "1.24.1", + "@opentelemetry/sdk-logs": "0.51.1", + "@opentelemetry/sdk-metrics": "1.24.1", + "@opentelemetry/sdk-trace-base": "1.24.1" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.3.0 <1.9.0" + } + }, + "node_modules/@opentelemetry/exporter-trace-otlp-proto/node_modules/@opentelemetry/resources": { + "version": "1.24.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/resources/-/resources-1.24.1.tgz", + "integrity": "sha512-cyv0MwAaPF7O86x5hk3NNgenMObeejZFLJJDVuSeSMIsknlsj3oOZzRv3qSzlwYomXsICfBeFFlxwHQte5mGXQ==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "1.24.1", + "@opentelemetry/semantic-conventions": "1.24.1" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.0.0 <1.9.0" + } + }, + "node_modules/@opentelemetry/exporter-trace-otlp-proto/node_modules/@opentelemetry/sdk-logs": { + "version": "0.51.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/sdk-logs/-/sdk-logs-0.51.1.tgz", + "integrity": "sha512-ULQQtl82b673PpZc5/0EtH4V+BrwVOgKJZEB7tYZnGTG3I98tQVk89S9/JSixomDr++F4ih+LSJTCqIKBz+MQQ==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "1.24.1", + "@opentelemetry/resources": "1.24.1" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.4.0 <1.9.0", + "@opentelemetry/api-logs": ">=0.39.1" + } + }, + "node_modules/@opentelemetry/exporter-trace-otlp-proto/node_modules/@opentelemetry/sdk-metrics": { + "version": "1.24.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/sdk-metrics/-/sdk-metrics-1.24.1.tgz", + "integrity": "sha512-FrAqCbbGao9iKI+Mgh+OsC9+U2YMoXnlDHe06yH7dvavCKzE3S892dGtX54+WhSFVxHR/TMRVJiK/CV93GR0TQ==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "1.24.1", + "@opentelemetry/resources": "1.24.1", + "lodash.merge": "^4.6.2" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.3.0 <1.9.0" + } + }, + "node_modules/@opentelemetry/exporter-trace-otlp-proto/node_modules/@opentelemetry/sdk-trace-base": { + "version": "1.24.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/sdk-trace-base/-/sdk-trace-base-1.24.1.tgz", + "integrity": "sha512-zz+N423IcySgjihl2NfjBf0qw1RWe11XIAWVrTNOSSI6dtSPJiVom2zipFB2AEEtJWpv0Iz6DY6+TjnyTV5pWg==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "1.24.1", + "@opentelemetry/resources": "1.24.1", + "@opentelemetry/semantic-conventions": "1.24.1" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.0.0 <1.9.0" + } + }, + "node_modules/@opentelemetry/exporter-trace-otlp-proto/node_modules/@opentelemetry/semantic-conventions": { + "version": "1.24.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/semantic-conventions/-/semantic-conventions-1.24.1.tgz", + "integrity": "sha512-VkliWlS4/+GHLLW7J/rVBA00uXus1SWvwFvcUDxDwmFxYfg/2VI6ekwdXS28cjI8Qz2ky2BzG8OUHo+WeYIWqw==", + "license": "Apache-2.0", + "engines": { + "node": ">=14" + } + }, + "node_modules/@opentelemetry/exporter-zipkin": { + "version": "1.24.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/exporter-zipkin/-/exporter-zipkin-1.24.1.tgz", + "integrity": "sha512-+Rl/VFmu2n6eaRMnVbyfZx1DqR/1KNyWebYuHyQBZaEAVIn/ZLgmofRpXN1X2nhJ4BNaptQUNxAstCYYz6dKoQ==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "1.24.1", + "@opentelemetry/resources": "1.24.1", + "@opentelemetry/sdk-trace-base": "1.24.1", + "@opentelemetry/semantic-conventions": "1.24.1" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.0.0" + } + }, + "node_modules/@opentelemetry/exporter-zipkin/node_modules/@opentelemetry/core": { + "version": "1.24.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/core/-/core-1.24.1.tgz", + "integrity": "sha512-wMSGfsdmibI88K9wB498zXY04yThPexo8jvwNNlm542HZB7XrrMRBbAyKJqG8qDRJwIBdBrPMi4V9ZPW/sqrcg==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/semantic-conventions": "1.24.1" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.0.0 <1.9.0" + } + }, + "node_modules/@opentelemetry/exporter-zipkin/node_modules/@opentelemetry/resources": { + "version": "1.24.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/resources/-/resources-1.24.1.tgz", + "integrity": "sha512-cyv0MwAaPF7O86x5hk3NNgenMObeejZFLJJDVuSeSMIsknlsj3oOZzRv3qSzlwYomXsICfBeFFlxwHQte5mGXQ==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "1.24.1", + "@opentelemetry/semantic-conventions": "1.24.1" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.0.0 <1.9.0" + } + }, + "node_modules/@opentelemetry/exporter-zipkin/node_modules/@opentelemetry/sdk-trace-base": { + "version": "1.24.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/sdk-trace-base/-/sdk-trace-base-1.24.1.tgz", + "integrity": "sha512-zz+N423IcySgjihl2NfjBf0qw1RWe11XIAWVrTNOSSI6dtSPJiVom2zipFB2AEEtJWpv0Iz6DY6+TjnyTV5pWg==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "1.24.1", + "@opentelemetry/resources": "1.24.1", + "@opentelemetry/semantic-conventions": "1.24.1" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.0.0 <1.9.0" + } + }, + "node_modules/@opentelemetry/exporter-zipkin/node_modules/@opentelemetry/semantic-conventions": { + "version": "1.24.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/semantic-conventions/-/semantic-conventions-1.24.1.tgz", + "integrity": "sha512-VkliWlS4/+GHLLW7J/rVBA00uXus1SWvwFvcUDxDwmFxYfg/2VI6ekwdXS28cjI8Qz2ky2BzG8OUHo+WeYIWqw==", + "license": "Apache-2.0", + "engines": { + "node": ">=14" + } + }, + "node_modules/@opentelemetry/instrumentation": { + "version": "0.51.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation/-/instrumentation-0.51.1.tgz", + "integrity": "sha512-JIrvhpgqY6437QIqToyozrUG1h5UhwHkaGK/WAX+fkrpyPtc+RO5FkRtUd9BH0MibabHHvqsnBGKfKVijbmp8w==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/api-logs": "0.51.1", + "@types/shimmer": "^1.0.2", + "import-in-the-middle": "1.7.4", + "require-in-the-middle": "^7.1.1", + "semver": "^7.5.2", + "shimmer": "^1.2.1" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.3.0" + } + }, + "node_modules/@opentelemetry/instrumentation-fastify": { + "version": "0.36.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-fastify/-/instrumentation-fastify-0.36.1.tgz", + "integrity": "sha512-3Nfm43PI0I+3EX+1YbSy6xbDu276R1Dh1tqAk68yd4yirnIh52Kd5B+nJ8CgHA7o3UKakpBjj6vSzi5vNCzJIA==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "^1.8.0", + "@opentelemetry/instrumentation": "^0.51.0", + "@opentelemetry/semantic-conventions": "^1.22.0" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.3.0" + } + }, + "node_modules/@opentelemetry/instrumentation-fetch": { + "version": "0.53.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-fetch/-/instrumentation-fetch-0.53.0.tgz", + "integrity": "sha512-Sayp/Oypr0lyTgOKide/Dz4ovqDWPdmazapCMyfsVpXpV9zrH2kbdO2vAKUMx9vF98vxsqcxXucf4z54WXWZ8A==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "1.26.0", + "@opentelemetry/instrumentation": "0.53.0", + "@opentelemetry/sdk-trace-web": "1.26.0", + "@opentelemetry/semantic-conventions": "1.27.0" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.0.0" + } + }, + "node_modules/@opentelemetry/instrumentation-fetch/node_modules/@opentelemetry/api-logs": { + "version": "0.53.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/api-logs/-/api-logs-0.53.0.tgz", + "integrity": "sha512-8HArjKx+RaAI8uEIgcORbZIPklyh1YLjPSBus8hjRmvLi6DeFzgOcdZ7KwPabKj8mXF8dX0hyfAyGfycz0DbFw==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/api": "^1.0.0" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/@opentelemetry/instrumentation-fetch/node_modules/@opentelemetry/instrumentation": { + "version": "0.53.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation/-/instrumentation-0.53.0.tgz", + "integrity": "sha512-DMwg0hy4wzf7K73JJtl95m/e0boSoWhH07rfvHvYzQtBD3Bmv0Wc1x733vyZBqmFm8OjJD0/pfiUg1W3JjFX0A==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/api-logs": "0.53.0", + "@types/shimmer": "^1.2.0", + "import-in-the-middle": "^1.8.1", + "require-in-the-middle": "^7.1.1", + "semver": "^7.5.2", + "shimmer": "^1.2.1" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.3.0" + } + }, + "node_modules/@opentelemetry/instrumentation-fetch/node_modules/@opentelemetry/semantic-conventions": { + "version": "1.27.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/semantic-conventions/-/semantic-conventions-1.27.0.tgz", + "integrity": "sha512-sAay1RrB+ONOem0OZanAR1ZI/k7yDpnOQSQmTMuGImUQb2y8EbSaCJ94FQluM74xoU03vlb2d2U90hZluL6nQg==", + "license": "Apache-2.0", + "engines": { + "node": ">=14" + } + }, + "node_modules/@opentelemetry/instrumentation-fetch/node_modules/import-in-the-middle": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/import-in-the-middle/-/import-in-the-middle-1.13.1.tgz", + "integrity": "sha512-k2V9wNm9B+ysuelDTHjI9d5KPc4l8zAZTGqj+pcynvWkypZd857ryzN8jNC7Pg2YZXNMJcHRPpaDyCBbNyVRpA==", + "license": "Apache-2.0", + "dependencies": { + "acorn": "^8.14.0", + "acorn-import-attributes": "^1.9.5", + "cjs-module-lexer": "^1.2.2", + "module-details-from-path": "^1.0.3" + } + }, + "node_modules/@opentelemetry/instrumentation-http": { + "version": "0.53.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-http/-/instrumentation-http-0.53.0.tgz", + "integrity": "sha512-H74ErMeDuZfj7KgYCTOFGWF5W9AfaPnqLQQxeFq85+D29wwV2yqHbz2IKLYpkOh7EI6QwDEl7rZCIxjJLyc/CQ==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "1.26.0", + "@opentelemetry/instrumentation": "0.53.0", + "@opentelemetry/semantic-conventions": "1.27.0", + "semver": "^7.5.2" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.3.0" + } + }, + "node_modules/@opentelemetry/instrumentation-http/node_modules/@opentelemetry/api-logs": { + "version": "0.53.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/api-logs/-/api-logs-0.53.0.tgz", + "integrity": "sha512-8HArjKx+RaAI8uEIgcORbZIPklyh1YLjPSBus8hjRmvLi6DeFzgOcdZ7KwPabKj8mXF8dX0hyfAyGfycz0DbFw==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/api": "^1.0.0" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/@opentelemetry/instrumentation-http/node_modules/@opentelemetry/instrumentation": { + "version": "0.53.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation/-/instrumentation-0.53.0.tgz", + "integrity": "sha512-DMwg0hy4wzf7K73JJtl95m/e0boSoWhH07rfvHvYzQtBD3Bmv0Wc1x733vyZBqmFm8OjJD0/pfiUg1W3JjFX0A==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/api-logs": "0.53.0", + "@types/shimmer": "^1.2.0", + "import-in-the-middle": "^1.8.1", + "require-in-the-middle": "^7.1.1", + "semver": "^7.5.2", + "shimmer": "^1.2.1" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.3.0" + } + }, + "node_modules/@opentelemetry/instrumentation-http/node_modules/@opentelemetry/semantic-conventions": { + "version": "1.27.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/semantic-conventions/-/semantic-conventions-1.27.0.tgz", + "integrity": "sha512-sAay1RrB+ONOem0OZanAR1ZI/k7yDpnOQSQmTMuGImUQb2y8EbSaCJ94FQluM74xoU03vlb2d2U90hZluL6nQg==", + "license": "Apache-2.0", + "engines": { + "node": ">=14" + } + }, + "node_modules/@opentelemetry/instrumentation-http/node_modules/import-in-the-middle": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/import-in-the-middle/-/import-in-the-middle-1.13.1.tgz", + "integrity": "sha512-k2V9wNm9B+ysuelDTHjI9d5KPc4l8zAZTGqj+pcynvWkypZd857ryzN8jNC7Pg2YZXNMJcHRPpaDyCBbNyVRpA==", + "license": "Apache-2.0", + "dependencies": { + "acorn": "^8.14.0", + "acorn-import-attributes": "^1.9.5", + "cjs-module-lexer": "^1.2.2", + "module-details-from-path": "^1.0.3" + } + }, + "node_modules/@opentelemetry/instrumentation-pino": { + "version": "0.38.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/instrumentation-pino/-/instrumentation-pino-0.38.0.tgz", + "integrity": "sha512-m4tkO+tuKv0zs2uLNxsMw06RwBNjHua8r9FYUlSlVcaF4EHTqC2XOk3h3OWw8HosZAvJvjryAgbEGuX9wJPn7A==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/instrumentation": "^0.51.0" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.3.0" + } + }, + "node_modules/@opentelemetry/otlp-exporter-base": { + "version": "0.53.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/otlp-exporter-base/-/otlp-exporter-base-0.53.0.tgz", + "integrity": "sha512-UCWPreGQEhD6FjBaeDuXhiMf6kkBODF0ZQzrk/tuQcaVDJ+dDQ/xhJp192H9yWnKxVpEjFrSSLnpqmX4VwX+eA==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "1.26.0", + "@opentelemetry/otlp-transformer": "0.53.0" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.0.0" + } + }, + "node_modules/@opentelemetry/otlp-grpc-exporter-base": { + "version": "0.53.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/otlp-grpc-exporter-base/-/otlp-grpc-exporter-base-0.53.0.tgz", + "integrity": "sha512-F7RCN8VN+lzSa4fGjewit8Z5fEUpY/lmMVy5EWn2ZpbAabg3EE3sCLuTNfOiooNGnmvzimUPruoeqeko/5/TzQ==", + "license": "Apache-2.0", + "dependencies": { + "@grpc/grpc-js": "^1.7.1", + "@opentelemetry/core": "1.26.0", + "@opentelemetry/otlp-exporter-base": "0.53.0", + "@opentelemetry/otlp-transformer": "0.53.0" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.0.0" + } + }, + "node_modules/@opentelemetry/otlp-proto-exporter-base": { + "version": "0.51.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/otlp-proto-exporter-base/-/otlp-proto-exporter-base-0.51.1.tgz", + "integrity": "sha512-gxxxwfk0inDMb5DLeuxQ3L8TtptxSiTNHE4nnAJH34IQXAVRhXSXW1rK8PmDKDngRPIZ6J7ncUCjjIn8b+AgqQ==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "1.24.1", + "@opentelemetry/otlp-exporter-base": "0.51.1", + "protobufjs": "^7.2.3" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.0.0" + } + }, + "node_modules/@opentelemetry/otlp-proto-exporter-base/node_modules/@opentelemetry/core": { + "version": "1.24.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/core/-/core-1.24.1.tgz", + "integrity": "sha512-wMSGfsdmibI88K9wB498zXY04yThPexo8jvwNNlm542HZB7XrrMRBbAyKJqG8qDRJwIBdBrPMi4V9ZPW/sqrcg==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/semantic-conventions": "1.24.1" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.0.0 <1.9.0" + } + }, + "node_modules/@opentelemetry/otlp-proto-exporter-base/node_modules/@opentelemetry/otlp-exporter-base": { + "version": "0.51.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/otlp-exporter-base/-/otlp-exporter-base-0.51.1.tgz", + "integrity": "sha512-UYlnOYyDdzo1Gw559EHCzru0RwhvuXCwoH8jGo9J4gO1TE58GjnEmIjomMsKBCym3qWNJfIQXw+9SZCV0DdQNg==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "1.24.1" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.0.0" + } + }, + "node_modules/@opentelemetry/otlp-proto-exporter-base/node_modules/@opentelemetry/semantic-conventions": { + "version": "1.24.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/semantic-conventions/-/semantic-conventions-1.24.1.tgz", + "integrity": "sha512-VkliWlS4/+GHLLW7J/rVBA00uXus1SWvwFvcUDxDwmFxYfg/2VI6ekwdXS28cjI8Qz2ky2BzG8OUHo+WeYIWqw==", + "license": "Apache-2.0", + "engines": { + "node": ">=14" + } + }, + "node_modules/@opentelemetry/otlp-transformer": { + "version": "0.53.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/otlp-transformer/-/otlp-transformer-0.53.0.tgz", + "integrity": "sha512-rM0sDA9HD8dluwuBxLetUmoqGJKSAbWenwD65KY9iZhUxdBHRLrIdrABfNDP7aiTjcgK8XFyTn5fhDz7N+W6DA==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/api-logs": "0.53.0", + "@opentelemetry/core": "1.26.0", + "@opentelemetry/resources": "1.26.0", + "@opentelemetry/sdk-logs": "0.53.0", + "@opentelemetry/sdk-metrics": "1.26.0", + "@opentelemetry/sdk-trace-base": "1.26.0", + "protobufjs": "^7.3.0" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": "^1.3.0" + } + }, + "node_modules/@opentelemetry/otlp-transformer/node_modules/@opentelemetry/api-logs": { + "version": "0.53.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/api-logs/-/api-logs-0.53.0.tgz", + "integrity": "sha512-8HArjKx+RaAI8uEIgcORbZIPklyh1YLjPSBus8hjRmvLi6DeFzgOcdZ7KwPabKj8mXF8dX0hyfAyGfycz0DbFw==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/api": "^1.0.0" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/@opentelemetry/otlp-transformer/node_modules/@opentelemetry/resources": { + "version": "1.26.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/resources/-/resources-1.26.0.tgz", + "integrity": "sha512-CPNYchBE7MBecCSVy0HKpUISEeJOniWqcHaAHpmasZ3j9o6V3AyBzhRc90jdmemq0HOxDr6ylhUbDhBqqPpeNw==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "1.26.0", + "@opentelemetry/semantic-conventions": "1.27.0" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.0.0 <1.10.0" + } + }, + "node_modules/@opentelemetry/otlp-transformer/node_modules/@opentelemetry/sdk-metrics": { + "version": "1.26.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/sdk-metrics/-/sdk-metrics-1.26.0.tgz", + "integrity": "sha512-0SvDXmou/JjzSDOjUmetAAvcKQW6ZrvosU0rkbDGpXvvZN+pQF6JbK/Kd4hNdK4q/22yeruqvukXEJyySTzyTQ==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "1.26.0", + "@opentelemetry/resources": "1.26.0" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.3.0 <1.10.0" + } + }, + "node_modules/@opentelemetry/otlp-transformer/node_modules/@opentelemetry/semantic-conventions": { + "version": "1.27.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/semantic-conventions/-/semantic-conventions-1.27.0.tgz", + "integrity": "sha512-sAay1RrB+ONOem0OZanAR1ZI/k7yDpnOQSQmTMuGImUQb2y8EbSaCJ94FQluM74xoU03vlb2d2U90hZluL6nQg==", + "license": "Apache-2.0", + "engines": { + "node": ">=14" + } + }, + "node_modules/@opentelemetry/propagator-b3": { + "version": "1.24.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/propagator-b3/-/propagator-b3-1.24.1.tgz", + "integrity": "sha512-nda97ZwhpZKyUJTXqQuKzNhPMUgMLunbbGWn8kroBwegn+nh6OhtyGkrVQsQLNdVKJl0KeB5z0ZgeWszrYhwFw==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "1.24.1" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.0.0 <1.9.0" + } + }, + "node_modules/@opentelemetry/propagator-b3/node_modules/@opentelemetry/core": { + "version": "1.24.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/core/-/core-1.24.1.tgz", + "integrity": "sha512-wMSGfsdmibI88K9wB498zXY04yThPexo8jvwNNlm542HZB7XrrMRBbAyKJqG8qDRJwIBdBrPMi4V9ZPW/sqrcg==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/semantic-conventions": "1.24.1" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.0.0 <1.9.0" + } + }, + "node_modules/@opentelemetry/propagator-b3/node_modules/@opentelemetry/semantic-conventions": { + "version": "1.24.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/semantic-conventions/-/semantic-conventions-1.24.1.tgz", + "integrity": "sha512-VkliWlS4/+GHLLW7J/rVBA00uXus1SWvwFvcUDxDwmFxYfg/2VI6ekwdXS28cjI8Qz2ky2BzG8OUHo+WeYIWqw==", + "license": "Apache-2.0", + "engines": { + "node": ">=14" + } + }, + "node_modules/@opentelemetry/propagator-jaeger": { + "version": "1.24.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/propagator-jaeger/-/propagator-jaeger-1.24.1.tgz", + "integrity": "sha512-7bRBJn3FG1l195A1m+xXRHvgzAOBsfmRi9uZ5Da18oTh7BLmNDiA8+kpk51FpTsU1PCikPVpRDNPhKVB6lyzZg==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "1.24.1" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.0.0 <1.9.0" + } + }, + "node_modules/@opentelemetry/propagator-jaeger/node_modules/@opentelemetry/core": { + "version": "1.24.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/core/-/core-1.24.1.tgz", + "integrity": "sha512-wMSGfsdmibI88K9wB498zXY04yThPexo8jvwNNlm542HZB7XrrMRBbAyKJqG8qDRJwIBdBrPMi4V9ZPW/sqrcg==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/semantic-conventions": "1.24.1" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.0.0 <1.9.0" + } + }, + "node_modules/@opentelemetry/propagator-jaeger/node_modules/@opentelemetry/semantic-conventions": { + "version": "1.24.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/semantic-conventions/-/semantic-conventions-1.24.1.tgz", + "integrity": "sha512-VkliWlS4/+GHLLW7J/rVBA00uXus1SWvwFvcUDxDwmFxYfg/2VI6ekwdXS28cjI8Qz2ky2BzG8OUHo+WeYIWqw==", + "license": "Apache-2.0", + "engines": { + "node": ">=14" + } + }, + "node_modules/@opentelemetry/resources": { + "version": "1.30.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/resources/-/resources-1.30.1.tgz", + "integrity": "sha512-5UxZqiAgLYGFjS4s9qm5mBVo433u+dSPUFWVWXmLAD4wB65oMCoXaJP1KJa9DIYYMeHu3z4BZcStG3LC593cWA==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "1.30.1", + "@opentelemetry/semantic-conventions": "1.28.0" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.0.0 <1.10.0" + } + }, + "node_modules/@opentelemetry/resources/node_modules/@opentelemetry/core": { + "version": "1.30.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/core/-/core-1.30.1.tgz", + "integrity": "sha512-OOCM2C/QIURhJMuKaekP3TRBxBKxG/TWWA0TL2J6nXUtDnuCtccy49LUJF8xPFXMX+0LMcxFpCo8M9cGY1W6rQ==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/semantic-conventions": "1.28.0" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.0.0 <1.10.0" + } + }, + "node_modules/@opentelemetry/resources/node_modules/@opentelemetry/semantic-conventions": { + "version": "1.28.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/semantic-conventions/-/semantic-conventions-1.28.0.tgz", + "integrity": "sha512-lp4qAiMTD4sNWW4DbKLBkfiMZ4jbAboJIGOQr5DvciMRI494OapieI9qiODpOt0XBr1LjIDy1xAGAnVs5supTA==", + "license": "Apache-2.0", + "engines": { + "node": ">=14" + } + }, + "node_modules/@opentelemetry/sdk-logs": { + "version": "0.53.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/sdk-logs/-/sdk-logs-0.53.0.tgz", + "integrity": "sha512-dhSisnEgIj/vJZXZV6f6KcTnyLDx/VuQ6l3ejuZpMpPlh9S1qMHiZU9NMmOkVkwwHkMy3G6mEBwdP23vUZVr4g==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/api-logs": "0.53.0", + "@opentelemetry/core": "1.26.0", + "@opentelemetry/resources": "1.26.0" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.4.0 <1.10.0" + } + }, + "node_modules/@opentelemetry/sdk-logs/node_modules/@opentelemetry/api-logs": { + "version": "0.53.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/api-logs/-/api-logs-0.53.0.tgz", + "integrity": "sha512-8HArjKx+RaAI8uEIgcORbZIPklyh1YLjPSBus8hjRmvLi6DeFzgOcdZ7KwPabKj8mXF8dX0hyfAyGfycz0DbFw==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/api": "^1.0.0" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/@opentelemetry/sdk-logs/node_modules/@opentelemetry/resources": { + "version": "1.26.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/resources/-/resources-1.26.0.tgz", + "integrity": "sha512-CPNYchBE7MBecCSVy0HKpUISEeJOniWqcHaAHpmasZ3j9o6V3AyBzhRc90jdmemq0HOxDr6ylhUbDhBqqPpeNw==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "1.26.0", + "@opentelemetry/semantic-conventions": "1.27.0" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.0.0 <1.10.0" + } + }, + "node_modules/@opentelemetry/sdk-logs/node_modules/@opentelemetry/semantic-conventions": { + "version": "1.27.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/semantic-conventions/-/semantic-conventions-1.27.0.tgz", + "integrity": "sha512-sAay1RrB+ONOem0OZanAR1ZI/k7yDpnOQSQmTMuGImUQb2y8EbSaCJ94FQluM74xoU03vlb2d2U90hZluL6nQg==", + "license": "Apache-2.0", + "engines": { + "node": ">=14" + } + }, + "node_modules/@opentelemetry/sdk-metrics": { + "version": "1.30.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/sdk-metrics/-/sdk-metrics-1.30.1.tgz", + "integrity": "sha512-q9zcZ0Okl8jRgmy7eNW3Ku1XSgg3sDLa5evHZpCwjspw7E8Is4K/haRPDJrBcX3YSn/Y7gUvFnByNYEKQNbNog==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "1.30.1", + "@opentelemetry/resources": "1.30.1" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.3.0 <1.10.0" + } + }, + "node_modules/@opentelemetry/sdk-metrics/node_modules/@opentelemetry/core": { + "version": "1.30.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/core/-/core-1.30.1.tgz", + "integrity": "sha512-OOCM2C/QIURhJMuKaekP3TRBxBKxG/TWWA0TL2J6nXUtDnuCtccy49LUJF8xPFXMX+0LMcxFpCo8M9cGY1W6rQ==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/semantic-conventions": "1.28.0" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.0.0 <1.10.0" + } + }, + "node_modules/@opentelemetry/sdk-metrics/node_modules/@opentelemetry/semantic-conventions": { + "version": "1.28.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/semantic-conventions/-/semantic-conventions-1.28.0.tgz", + "integrity": "sha512-lp4qAiMTD4sNWW4DbKLBkfiMZ4jbAboJIGOQr5DvciMRI494OapieI9qiODpOt0XBr1LjIDy1xAGAnVs5supTA==", + "license": "Apache-2.0", + "engines": { + "node": ">=14" + } + }, + "node_modules/@opentelemetry/sdk-node": { + "version": "0.51.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/sdk-node/-/sdk-node-0.51.1.tgz", + "integrity": "sha512-GgmNF9C+6esr8PIJxCqHw84rEOkYm6XdFWZ2+Wyc3qaUt92ACoN7uSw5iKNvaUq62W0xii1wsGxwHzyENtPP8w==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/api-logs": "0.51.1", + "@opentelemetry/core": "1.24.1", + "@opentelemetry/exporter-trace-otlp-grpc": "0.51.1", + "@opentelemetry/exporter-trace-otlp-http": "0.51.1", + "@opentelemetry/exporter-trace-otlp-proto": "0.51.1", + "@opentelemetry/exporter-zipkin": "1.24.1", + "@opentelemetry/instrumentation": "0.51.1", + "@opentelemetry/resources": "1.24.1", + "@opentelemetry/sdk-logs": "0.51.1", + "@opentelemetry/sdk-metrics": "1.24.1", + "@opentelemetry/sdk-trace-base": "1.24.1", + "@opentelemetry/sdk-trace-node": "1.24.1", + "@opentelemetry/semantic-conventions": "1.24.1" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.3.0 <1.9.0" + } + }, + "node_modules/@opentelemetry/sdk-node/node_modules/@opentelemetry/core": { + "version": "1.24.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/core/-/core-1.24.1.tgz", + "integrity": "sha512-wMSGfsdmibI88K9wB498zXY04yThPexo8jvwNNlm542HZB7XrrMRBbAyKJqG8qDRJwIBdBrPMi4V9ZPW/sqrcg==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/semantic-conventions": "1.24.1" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.0.0 <1.9.0" + } + }, + "node_modules/@opentelemetry/sdk-node/node_modules/@opentelemetry/resources": { + "version": "1.24.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/resources/-/resources-1.24.1.tgz", + "integrity": "sha512-cyv0MwAaPF7O86x5hk3NNgenMObeejZFLJJDVuSeSMIsknlsj3oOZzRv3qSzlwYomXsICfBeFFlxwHQte5mGXQ==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "1.24.1", + "@opentelemetry/semantic-conventions": "1.24.1" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.0.0 <1.9.0" + } + }, + "node_modules/@opentelemetry/sdk-node/node_modules/@opentelemetry/sdk-logs": { + "version": "0.51.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/sdk-logs/-/sdk-logs-0.51.1.tgz", + "integrity": "sha512-ULQQtl82b673PpZc5/0EtH4V+BrwVOgKJZEB7tYZnGTG3I98tQVk89S9/JSixomDr++F4ih+LSJTCqIKBz+MQQ==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "1.24.1", + "@opentelemetry/resources": "1.24.1" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.4.0 <1.9.0", + "@opentelemetry/api-logs": ">=0.39.1" + } + }, + "node_modules/@opentelemetry/sdk-node/node_modules/@opentelemetry/sdk-metrics": { + "version": "1.24.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/sdk-metrics/-/sdk-metrics-1.24.1.tgz", + "integrity": "sha512-FrAqCbbGao9iKI+Mgh+OsC9+U2YMoXnlDHe06yH7dvavCKzE3S892dGtX54+WhSFVxHR/TMRVJiK/CV93GR0TQ==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "1.24.1", + "@opentelemetry/resources": "1.24.1", + "lodash.merge": "^4.6.2" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.3.0 <1.9.0" + } + }, + "node_modules/@opentelemetry/sdk-node/node_modules/@opentelemetry/sdk-trace-base": { + "version": "1.24.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/sdk-trace-base/-/sdk-trace-base-1.24.1.tgz", + "integrity": "sha512-zz+N423IcySgjihl2NfjBf0qw1RWe11XIAWVrTNOSSI6dtSPJiVom2zipFB2AEEtJWpv0Iz6DY6+TjnyTV5pWg==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "1.24.1", + "@opentelemetry/resources": "1.24.1", + "@opentelemetry/semantic-conventions": "1.24.1" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.0.0 <1.9.0" + } + }, + "node_modules/@opentelemetry/sdk-node/node_modules/@opentelemetry/semantic-conventions": { + "version": "1.24.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/semantic-conventions/-/semantic-conventions-1.24.1.tgz", + "integrity": "sha512-VkliWlS4/+GHLLW7J/rVBA00uXus1SWvwFvcUDxDwmFxYfg/2VI6ekwdXS28cjI8Qz2ky2BzG8OUHo+WeYIWqw==", + "license": "Apache-2.0", + "engines": { + "node": ">=14" + } + }, + "node_modules/@opentelemetry/sdk-trace-base": { + "version": "1.26.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/sdk-trace-base/-/sdk-trace-base-1.26.0.tgz", + "integrity": "sha512-olWQldtvbK4v22ymrKLbIcBi9L2SpMO84sCPY54IVsJhP9fRsxJT194C/AVaAuJzLE30EdhhM1VmvVYR7az+cw==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "1.26.0", + "@opentelemetry/resources": "1.26.0", + "@opentelemetry/semantic-conventions": "1.27.0" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.0.0 <1.10.0" + } + }, + "node_modules/@opentelemetry/sdk-trace-base/node_modules/@opentelemetry/resources": { + "version": "1.26.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/resources/-/resources-1.26.0.tgz", + "integrity": "sha512-CPNYchBE7MBecCSVy0HKpUISEeJOniWqcHaAHpmasZ3j9o6V3AyBzhRc90jdmemq0HOxDr6ylhUbDhBqqPpeNw==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "1.26.0", + "@opentelemetry/semantic-conventions": "1.27.0" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.0.0 <1.10.0" + } + }, + "node_modules/@opentelemetry/sdk-trace-base/node_modules/@opentelemetry/semantic-conventions": { + "version": "1.27.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/semantic-conventions/-/semantic-conventions-1.27.0.tgz", + "integrity": "sha512-sAay1RrB+ONOem0OZanAR1ZI/k7yDpnOQSQmTMuGImUQb2y8EbSaCJ94FQluM74xoU03vlb2d2U90hZluL6nQg==", + "license": "Apache-2.0", + "engines": { + "node": ">=14" + } + }, + "node_modules/@opentelemetry/sdk-trace-node": { + "version": "1.24.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/sdk-trace-node/-/sdk-trace-node-1.24.1.tgz", + "integrity": "sha512-/FZX8uWaGIAwsDhqI8VvQ+qWtfMNlXjaFYGc+vmxgdRFppCSSIRwrPyIhJO1qx61okyYhoyxVEZAfoiNxrfJCg==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/context-async-hooks": "1.24.1", + "@opentelemetry/core": "1.24.1", + "@opentelemetry/propagator-b3": "1.24.1", + "@opentelemetry/propagator-jaeger": "1.24.1", + "@opentelemetry/sdk-trace-base": "1.24.1", + "semver": "^7.5.2" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.0.0 <1.9.0" + } + }, + "node_modules/@opentelemetry/sdk-trace-node/node_modules/@opentelemetry/core": { + "version": "1.24.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/core/-/core-1.24.1.tgz", + "integrity": "sha512-wMSGfsdmibI88K9wB498zXY04yThPexo8jvwNNlm542HZB7XrrMRBbAyKJqG8qDRJwIBdBrPMi4V9ZPW/sqrcg==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/semantic-conventions": "1.24.1" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.0.0 <1.9.0" + } + }, + "node_modules/@opentelemetry/sdk-trace-node/node_modules/@opentelemetry/resources": { + "version": "1.24.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/resources/-/resources-1.24.1.tgz", + "integrity": "sha512-cyv0MwAaPF7O86x5hk3NNgenMObeejZFLJJDVuSeSMIsknlsj3oOZzRv3qSzlwYomXsICfBeFFlxwHQte5mGXQ==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "1.24.1", + "@opentelemetry/semantic-conventions": "1.24.1" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.0.0 <1.9.0" + } + }, + "node_modules/@opentelemetry/sdk-trace-node/node_modules/@opentelemetry/sdk-trace-base": { + "version": "1.24.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/sdk-trace-base/-/sdk-trace-base-1.24.1.tgz", + "integrity": "sha512-zz+N423IcySgjihl2NfjBf0qw1RWe11XIAWVrTNOSSI6dtSPJiVom2zipFB2AEEtJWpv0Iz6DY6+TjnyTV5pWg==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "1.24.1", + "@opentelemetry/resources": "1.24.1", + "@opentelemetry/semantic-conventions": "1.24.1" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.0.0 <1.9.0" + } + }, + "node_modules/@opentelemetry/sdk-trace-node/node_modules/@opentelemetry/semantic-conventions": { + "version": "1.24.1", + "resolved": "https://registry.npmjs.org/@opentelemetry/semantic-conventions/-/semantic-conventions-1.24.1.tgz", + "integrity": "sha512-VkliWlS4/+GHLLW7J/rVBA00uXus1SWvwFvcUDxDwmFxYfg/2VI6ekwdXS28cjI8Qz2ky2BzG8OUHo+WeYIWqw==", + "license": "Apache-2.0", + "engines": { + "node": ">=14" + } + }, + "node_modules/@opentelemetry/sdk-trace-web": { + "version": "1.26.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/sdk-trace-web/-/sdk-trace-web-1.26.0.tgz", + "integrity": "sha512-sxeKPcG/gUyxZ8iB8X1MI8/grfSCGgo1n2kxOE73zjVaO9yW/7JuVC3gqUaWRjtZ6VD/V3lo2/ZSwMlm6n2mdg==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/core": "1.26.0", + "@opentelemetry/sdk-trace-base": "1.26.0", + "@opentelemetry/semantic-conventions": "1.27.0" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "@opentelemetry/api": ">=1.0.0 <1.10.0" + } + }, + "node_modules/@opentelemetry/sdk-trace-web/node_modules/@opentelemetry/semantic-conventions": { + "version": "1.27.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/semantic-conventions/-/semantic-conventions-1.27.0.tgz", + "integrity": "sha512-sAay1RrB+ONOem0OZanAR1ZI/k7yDpnOQSQmTMuGImUQb2y8EbSaCJ94FQluM74xoU03vlb2d2U90hZluL6nQg==", + "license": "Apache-2.0", + "engines": { + "node": ">=14" + } + }, + "node_modules/@opentelemetry/semantic-conventions": { + "version": "1.32.0", + "resolved": "https://registry.npmjs.org/@opentelemetry/semantic-conventions/-/semantic-conventions-1.32.0.tgz", + "integrity": "sha512-s0OpmpQFSfMrmedAn9Lhg4KWJELHCU6uU9dtIJ28N8UGhf9Y55im5X8fEzwhwDwiSqN+ZPSNrDJF7ivf/AuRPQ==", + "license": "Apache-2.0", + "engines": { + "node": ">=14" + } + }, + "node_modules/@protobufjs/aspromise": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz", + "integrity": "sha512-j+gKExEuLmKwvz3OgROXtrJ2UG2x8Ch2YZUxahh+s1F2HZ+wAceUNLkvy6zKCPVRkU++ZWQrdxsUeQXmcg4uoQ==", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/base64": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@protobufjs/base64/-/base64-1.1.2.tgz", + "integrity": "sha512-AZkcAA5vnN/v4PDqKyMR5lx7hZttPDgClv83E//FMNhR2TMcLUhfRUBHCmSl0oi9zMgDDqRUJkSxO3wm85+XLg==", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/codegen": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@protobufjs/codegen/-/codegen-2.0.4.tgz", + "integrity": "sha512-YyFaikqM5sH0ziFZCN3xDC7zeGaB/d0IUb9CATugHWbd1FRFwWwt4ld4OYMPWu5a3Xe01mGAULCdqhMlPl29Jg==", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/eventemitter": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/eventemitter/-/eventemitter-1.1.0.tgz", + "integrity": "sha512-j9ednRT81vYJ9OfVuXG6ERSTdEL1xVsNgqpkxMsbIabzSo3goCjDIveeGv5d03om39ML71RdmrGNjG5SReBP/Q==", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/fetch": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/fetch/-/fetch-1.1.0.tgz", + "integrity": "sha512-lljVXpqXebpsijW71PZaCYeIcE5on1w5DlQy5WH6GLbFryLUrBD4932W/E2BSpfRJWseIL4v/KPgBFxDOIdKpQ==", + "license": "BSD-3-Clause", + "dependencies": { + "@protobufjs/aspromise": "^1.1.1", + "@protobufjs/inquire": "^1.1.0" + } + }, + "node_modules/@protobufjs/float": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@protobufjs/float/-/float-1.0.2.tgz", + "integrity": "sha512-Ddb+kVXlXst9d+R9PfTIxh1EdNkgoRe5tOX6t01f1lYWOvJnSPDBlG241QLzcyPdoNTsblLUdujGSE4RzrTZGQ==", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/inquire": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/inquire/-/inquire-1.1.0.tgz", + "integrity": "sha512-kdSefcPdruJiFMVSbn801t4vFK7KB/5gd2fYvrxhuJYg8ILrmn9SKSX2tZdV6V+ksulWqS7aXjBcRXl3wHoD9Q==", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/path": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@protobufjs/path/-/path-1.1.2.tgz", + "integrity": "sha512-6JOcJ5Tm08dOHAbdR3GrvP+yUUfkjG5ePsHYczMFLq3ZmMkAD98cDgcT2iA1lJ9NVwFd4tH/iSSoe44YWkltEA==", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/pool": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/pool/-/pool-1.1.0.tgz", + "integrity": "sha512-0kELaGSIDBKvcgS4zkjz1PeddatrjYcmMWOlAuAPwAeccUrPHdUqo/J6LiymHHEiJT5NrF1UVwxY14f+fy4WQw==", + "license": "BSD-3-Clause" + }, + "node_modules/@protobufjs/utf8": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@protobufjs/utf8/-/utf8-1.1.0.tgz", + "integrity": "sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==", + "license": "BSD-3-Clause" + }, + "node_modules/@tsconfig/node10": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.11.tgz", + "integrity": "sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==", + "license": "MIT" + }, + "node_modules/@tsconfig/node12": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", + "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", + "license": "MIT" + }, + "node_modules/@tsconfig/node14": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", + "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", + "license": "MIT" + }, + "node_modules/@tsconfig/node16": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz", + "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==", + "license": "MIT" + }, + "node_modules/@tsconfig/node20": { + "version": "20.1.5", + "resolved": "https://registry.npmjs.org/@tsconfig/node20/-/node20-20.1.5.tgz", + "integrity": "sha512-Vm8e3WxDTqMGPU4GATF9keQAIy1Drd7bPwlgzKJnZtoOsTm1tduUTbDjg0W5qERvGuxPI2h9RbMufH0YdfBylA==", + "license": "MIT" + }, + "node_modules/@types/node": { + "version": "22.14.1", + "resolved": "https://registry.npmjs.org/@types/node/-/node-22.14.1.tgz", + "integrity": "sha512-u0HuPQwe/dHrItgHHpmw3N2fYCR6x4ivMNbPHRkBVP4CvN+kiRrKHWk3i8tXiO/joPwXLMYvF9TTF0eqgHIuOw==", + "license": "MIT", + "dependencies": { + "undici-types": "~6.21.0" + } + }, + "node_modules/@types/shimmer": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@types/shimmer/-/shimmer-1.2.0.tgz", + "integrity": "sha512-UE7oxhQLLd9gub6JKIAhDq06T0F6FnztwMNRvYgjeQSBeMc1ZG/tA47EwfduvkuQS8apbkM/lpLpWsaCeYsXVg==", + "license": "MIT" + }, + "node_modules/@types/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-xevGOReSYGM7g/kUBZzPqCrR/KYAo+F0yiPc85WFTJa0MSLtyFTVTU6cJu/aV4mid7IffDIWqo69THF2o4JiEQ==", + "license": "MIT" + }, + "node_modules/@types/strip-json-comments": { + "version": "0.0.30", + "resolved": "https://registry.npmjs.org/@types/strip-json-comments/-/strip-json-comments-0.0.30.tgz", + "integrity": "sha512-7NQmHra/JILCd1QqpSzl8+mJRc8ZHz3uDm8YV1Ks9IhK0epEiTw8aIErbvH9PI+6XbqhyIQy3462nEsn7UVzjQ==", + "license": "MIT" + }, + "node_modules/abort-controller": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/abort-controller/-/abort-controller-3.0.0.tgz", + "integrity": "sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==", + "license": "MIT", + "dependencies": { + "event-target-shim": "^5.0.0" + }, + "engines": { + "node": ">=6.5" + } + }, + "node_modules/abstract-logging": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/abstract-logging/-/abstract-logging-2.0.1.tgz", + "integrity": "sha512-2BjRTZxTPvheOvGbBslFSYOUkr+SjPtOnrLP33f+VIWLzezQpZcqVg7ja3L4dBXmzzgwT+a029jRx5PCi3JuiA==", + "license": "MIT" + }, + "node_modules/acorn": { + "version": "8.14.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.1.tgz", + "integrity": "sha512-OvQ/2pUDKmgfCg++xsTX1wGxfTaszcHVcTctW4UJB4hibJx2HXxxO5UmVgyjMa+ZDsiaf5wWLXYpRWMmBI0QHg==", + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-import-attributes": { + "version": "1.9.5", + "resolved": "https://registry.npmjs.org/acorn-import-attributes/-/acorn-import-attributes-1.9.5.tgz", + "integrity": "sha512-n02Vykv5uA3eHGM/Z2dQrcD56kL8TyDb2p1+0P83PClMnC/nc+anbQRhIOWnSq4Ke/KvDPrY3C9hDtC/A3eHnQ==", + "license": "MIT", + "peerDependencies": { + "acorn": "^8" + } + }, + "node_modules/acorn-walk": { + "version": "8.3.4", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.4.tgz", + "integrity": "sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==", + "license": "MIT", + "dependencies": { + "acorn": "^8.11.0" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/ajv": { + "version": "8.17.1", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", + "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-uri": "^3.0.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "license": "MIT", + "dependencies": { + "ajv": "^8.0.0" + }, + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/ajv/node_modules/fast-uri": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.6.tgz", + "integrity": "sha512-Atfo14OibSv5wAp4VWNsFYE1AchQRTv9cBGWET4pZWHzYshFSS9NQI6I57rdKn9croWVMbYFbLhJ+yJvmZIIHw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fastify" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/fastify" + } + ], + "license": "BSD-3-Clause" + }, + "node_modules/ansi-regex": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", + "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "license": "ISC", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/arg": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", + "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", + "license": "MIT" + }, + "node_modules/atomic-sleep": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/atomic-sleep/-/atomic-sleep-1.0.0.tgz", + "integrity": "sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==", + "license": "MIT", + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/avvio": { + "version": "8.4.0", + "resolved": "https://registry.npmjs.org/avvio/-/avvio-8.4.0.tgz", + "integrity": "sha512-CDSwaxINFy59iNwhYnkvALBwZiTydGkOecZyPkqBpABYR1KqGEsET0VOOYDwtleZSUIdeY36DC2bSZ24CO1igA==", + "license": "MIT", + "dependencies": { + "@fastify/error": "^3.3.0", + "fastq": "^1.17.1" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "license": "MIT" + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/binary-extensions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/bintrees": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/bintrees/-/bintrees-1.0.2.tgz", + "integrity": "sha512-VOMgTMwjAaUG580SXn3LacVgjurrbMme7ZZNYGSSV7mmtY6QQRh0Eg3pwIcntQ77DErK1L0NxkbetjcoXzVwKw==", + "license": "MIT" + }, + "node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "license": "MIT", + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/buffer": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", + "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.2.1" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "license": "MIT" + }, + "node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "license": "MIT", + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/cjs-module-lexer": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.4.3.tgz", + "integrity": "sha512-9z8TZaGM1pfswYeXrUpzPrkx8UnWYdhJclsiYMm6x/w5+nN+8Tf/LnAgfLGQCm59qAOxU8WwHEq2vNwF6i4j+Q==", + "license": "MIT" + }, + "node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "license": "ISC", + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/cliui/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/cliui/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/cliui/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" + }, + "node_modules/cliui/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cliui/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cliui/node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" + }, + "node_modules/colorette": { + "version": "2.0.20", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", + "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", + "license": "MIT" + }, + "node_modules/commander": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-11.1.0.tgz", + "integrity": "sha512-yPVavfyCcRhmorC7rWlkHn15b4wDVgVmBA7kV4QVBsF7kv/9TKJAbAXVTxvTnwP8HHKjRCJDClKbciiYS7p0DQ==", + "license": "MIT", + "engines": { + "node": ">=16" + } + }, + "node_modules/cookie": { + "version": "0.7.2", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.2.tgz", + "integrity": "sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/create-require": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", + "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", + "license": "MIT" + }, + "node_modules/cross-spawn": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", + "license": "MIT", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/dateformat": { + "version": "4.6.3", + "resolved": "https://registry.npmjs.org/dateformat/-/dateformat-4.6.3.tgz", + "integrity": "sha512-2P0p0pFGzHS5EMnhdxQi7aJN+iMheud0UhG4dlE1DLAlvL8JHjJJTX/CSm4JXwV0Ka5nGk3zC5mcb5bUQUxxMA==", + "license": "MIT", + "engines": { + "node": "*" + } + }, + "node_modules/debug": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", + "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/diff": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", + "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.3.1" + } + }, + "node_modules/dotenv": { + "version": "16.5.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.5.0.tgz", + "integrity": "sha512-m/C+AwOAr9/W1UOIZUo232ejMNnJAJtYQjUbHoNTBNTJSvqzzDh7vnrei3o3r3m9blf6ZoDkvcw0VmozNRFJxg==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://dotenvx.com" + } + }, + "node_modules/dotenv-cli": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/dotenv-cli/-/dotenv-cli-7.4.4.tgz", + "integrity": "sha512-XkBYCG0tPIes+YZr4SpfFv76SQrV/LeCE8CI7JSEMi3VR9MvTihCGTOtbIexD6i2mXF+6px7trb1imVCXSNMDw==", + "dev": true, + "license": "MIT", + "dependencies": { + "cross-spawn": "^7.0.6", + "dotenv": "^16.3.0", + "dotenv-expand": "^10.0.0", + "minimist": "^1.2.6" + }, + "bin": { + "dotenv": "cli.js" + } + }, + "node_modules/dotenv-expand": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-10.0.0.tgz", + "integrity": "sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=12" + } + }, + "node_modules/dynamic-dedupe": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/dynamic-dedupe/-/dynamic-dedupe-0.3.0.tgz", + "integrity": "sha512-ssuANeD+z97meYOqd50e04Ze5qp4bPqo8cCkI4TRjZkzAUgIDTrXV1R8QCdINpiI+hw14+rYazvTRdQrz0/rFQ==", + "license": "MIT", + "dependencies": { + "xtend": "^4.0.0" + } + }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "license": "MIT" + }, + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "license": "MIT" + }, + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "license": "MIT", + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/event-target-shim": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz", + "integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "license": "MIT", + "engines": { + "node": ">=0.8.x" + } + }, + "node_modules/fast-content-type-parse": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fast-content-type-parse/-/fast-content-type-parse-1.1.0.tgz", + "integrity": "sha512-fBHHqSTFLVnR61C+gltJuE5GkVQMV0S2nqUO8TJ+5Z3qAKG8vAx4FKai1s5jq/inV1+sREynIWSuQ6HgoSXpDQ==", + "license": "MIT" + }, + "node_modules/fast-copy": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/fast-copy/-/fast-copy-3.0.2.tgz", + "integrity": "sha512-dl0O9Vhju8IrcLndv2eU4ldt1ftXMqqfgN4H1cpmGV7P6jeB9FwpN9a2c8DPGE1Ys88rNUJVYDHq73CGAGOPfQ==", + "license": "MIT" + }, + "node_modules/fast-decode-uri-component": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/fast-decode-uri-component/-/fast-decode-uri-component-1.0.1.tgz", + "integrity": "sha512-WKgKWg5eUxvRZGwW8FvfbaH7AXSh2cL+3j5fMGzUMCxWBJ3dV3a7Wz8y2f/uQ0e3B6WmodD3oS54jTQ9HVTIIg==", + "license": "MIT" + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "license": "MIT" + }, + "node_modules/fast-json-stringify": { + "version": "5.16.1", + "resolved": "https://registry.npmjs.org/fast-json-stringify/-/fast-json-stringify-5.16.1.tgz", + "integrity": "sha512-KAdnLvy1yu/XrRtP+LJnxbBGrhN+xXu+gt3EUvZhYGKCr3lFHq/7UFJHHFgmJKoqlh6B40bZLEv7w46B0mqn1g==", + "license": "MIT", + "dependencies": { + "@fastify/merge-json-schemas": "^0.1.0", + "ajv": "^8.10.0", + "ajv-formats": "^3.0.1", + "fast-deep-equal": "^3.1.3", + "fast-uri": "^2.1.0", + "json-schema-ref-resolver": "^1.0.1", + "rfdc": "^1.2.0" + } + }, + "node_modules/fast-json-stringify/node_modules/ajv-formats": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-3.0.1.tgz", + "integrity": "sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ==", + "license": "MIT", + "dependencies": { + "ajv": "^8.0.0" + }, + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/fast-querystring": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/fast-querystring/-/fast-querystring-1.1.2.tgz", + "integrity": "sha512-g6KuKWmFXc0fID8WWH0jit4g0AGBoJhCkJMb1RmbsSEUNvQ+ZC8D6CUZ+GtF8nMzSPXnhiePyyqqipzNNEnHjg==", + "license": "MIT", + "dependencies": { + "fast-decode-uri-component": "^1.0.1" + } + }, + "node_modules/fast-redact": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/fast-redact/-/fast-redact-3.5.0.tgz", + "integrity": "sha512-dwsoQlS7h9hMeYUq1W++23NDcBLV4KqONnITDV9DjfS3q1SgDGVrBdvvTLUotWtPSD7asWDV9/CmsZPy8Hf70A==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/fast-safe-stringify": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.1.1.tgz", + "integrity": "sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==", + "license": "MIT" + }, + "node_modules/fast-uri": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-2.4.0.tgz", + "integrity": "sha512-ypuAmmMKInk5q7XcepxlnUWDLWv4GFtaJqAzWKqn62IpQ3pejtr5dTVbt3vwqVaMKmkNR55sTT+CqUKIaT21BA==", + "license": "MIT" + }, + "node_modules/fastify": { + "version": "4.29.0", + "resolved": "https://registry.npmjs.org/fastify/-/fastify-4.29.0.tgz", + "integrity": "sha512-MaaUHUGcCgC8fXQDsDtioaCcag1fmPJ9j64vAKunqZF4aSub040ZGi/ag8NGE2714yREPOKZuHCfpPzuUD3UQQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fastify" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/fastify" + } + ], + "license": "MIT", + "dependencies": { + "@fastify/ajv-compiler": "^3.5.0", + "@fastify/error": "^3.4.0", + "@fastify/fast-json-stringify-compiler": "^4.3.0", + "abstract-logging": "^2.0.1", + "avvio": "^8.3.0", + "fast-content-type-parse": "^1.1.0", + "fast-json-stringify": "^5.8.0", + "find-my-way": "^8.0.0", + "light-my-request": "^5.11.0", + "pino": "^9.0.0", + "process-warning": "^3.0.0", + "proxy-addr": "^2.0.7", + "rfdc": "^1.3.0", + "secure-json-parse": "^2.7.0", + "semver": "^7.5.4", + "toad-cache": "^3.3.0" + } + }, + "node_modules/fastq": { + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.19.1.tgz", + "integrity": "sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==", + "license": "ISC", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-my-way": { + "version": "8.2.2", + "resolved": "https://registry.npmjs.org/find-my-way/-/find-my-way-8.2.2.tgz", + "integrity": "sha512-Dobi7gcTEq8yszimcfp/R7+owiT4WncAJ7VTTgFH1jYJ5GaG1FbhjwDG820hptN0QDFvzVY3RfCzdInvGPGzjA==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3", + "fast-querystring": "^1.0.0", + "safe-regex2": "^3.1.0" + }, + "engines": { + "node": ">=14" + } + }, + "node_modules/foreground-child": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.1.tgz", + "integrity": "sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==", + "license": "ISC", + "dependencies": { + "cross-spawn": "^7.0.6", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "license": "ISC", + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/glob": { + "version": "11.0.2", + "resolved": "https://registry.npmjs.org/glob/-/glob-11.0.2.tgz", + "integrity": "sha512-YT7U7Vye+t5fZ/QMkBFrTJ7ZQxInIUjwyAjVj84CYXqgBdv30MFUPGnBR6sQaVq6Is15wYJUsnzTuWaGRBhBAQ==", + "license": "ISC", + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^4.0.1", + "minimatch": "^10.0.0", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^2.0.0" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "engines": { + "node": "20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/help-me": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/help-me/-/help-me-5.0.0.tgz", + "integrity": "sha512-7xgomUX6ADmcYzFik0HzAxh/73YlKR9bmFzf51CZwR+b6YtzU2m0u49hQCqV6SvlqIqsaxovfwdvbnsw3b/zpg==", + "license": "MIT" + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "BSD-3-Clause" + }, + "node_modules/import-in-the-middle": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/import-in-the-middle/-/import-in-the-middle-1.7.4.tgz", + "integrity": "sha512-Lk+qzWmiQuRPPulGQeK5qq0v32k2bHnWrRPFgqyvhw7Kkov5L6MOLOIU3pcWeujc9W4q54Cp3Q2WV16eQkc7Bg==", + "license": "Apache-2.0", + "dependencies": { + "acorn": "^8.8.2", + "acorn-import-attributes": "^1.9.5", + "cjs-module-lexer": "^1.2.2", + "module-details-from-path": "^1.0.3" + } + }, + "node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "license": "MIT", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "license": "MIT", + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-core-module": { + "version": "2.16.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", + "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", + "license": "MIT", + "dependencies": { + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "license": "ISC" + }, + "node_modules/jackspeak": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-4.1.0.tgz", + "integrity": "sha512-9DDdhb5j6cpeitCbvLO7n7J4IxnbM6hoF6O1g4HQ5TfhvvKN8ywDM7668ZhMHRqVmxqhps/F6syWK2KcPxYlkw==", + "license": "BlueOak-1.0.0", + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "engines": { + "node": "20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/joycon": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/joycon/-/joycon-3.1.1.tgz", + "integrity": "sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==", + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/json-schema-ref-resolver": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-schema-ref-resolver/-/json-schema-ref-resolver-1.0.1.tgz", + "integrity": "sha512-EJAj1pgHc1hxF6vo2Z3s69fMjO1INq6eGHXZ8Z6wCQeldCuwxGK9Sxf4/cScGn3FZubCVUehfWtcDM/PLteCQw==", + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.3" + } + }, + "node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "license": "MIT" + }, + "node_modules/light-my-request": { + "version": "5.14.0", + "resolved": "https://registry.npmjs.org/light-my-request/-/light-my-request-5.14.0.tgz", + "integrity": "sha512-aORPWntbpH5esaYpGOOmri0OHDOe3wC5M2MQxZ9dvMLZm6DnaAn0kJlcbU9hwsQgLzmZyReKwFwwPkR+nHu5kA==", + "license": "BSD-3-Clause", + "dependencies": { + "cookie": "^0.7.0", + "process-warning": "^3.0.0", + "set-cookie-parser": "^2.4.1" + } + }, + "node_modules/lodash.camelcase": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", + "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==", + "license": "MIT" + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "license": "MIT" + }, + "node_modules/long": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/long/-/long-5.3.2.tgz", + "integrity": "sha512-mNAgZ1GmyNhD7AuqnTG3/VQ26o760+ZYBPKjPvugO8+nLbYfX6TVpJPseBvopbdY+qpZ/lKUnmEc1LeZYS3QAA==", + "license": "Apache-2.0" + }, + "node_modules/lru-cache": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-11.1.0.tgz", + "integrity": "sha512-QIXZUBJUx+2zHUdQujWejBkcD9+cs94tLn0+YL8UrCh+D5sCXZ4c7LaEH48pNwRY3MLDgqUFyhlCyjJPf1WP0A==", + "license": "ISC", + "engines": { + "node": "20 || >=22" + } + }, + "node_modules/make-error": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", + "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", + "license": "ISC" + }, + "node_modules/minimatch": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.0.1.tgz", + "integrity": "sha512-ethXTt3SGGR+95gudmqJ1eNhRO7eGEGIgYA9vnPatK4/etz2MEVDno5GMCibdMTuBMyElzIlgxMna3K94XDIDQ==", + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": "20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/minipass": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + "license": "ISC", + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/mkdirp": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-3.0.1.tgz", + "integrity": "sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==", + "license": "MIT", + "bin": { + "mkdirp": "dist/cjs/src/bin.js" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/module-details-from-path": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/module-details-from-path/-/module-details-from-path-1.0.3.tgz", + "integrity": "sha512-ySViT69/76t8VhE1xXHK6Ch4NcDd26gx0MzKXLO+F7NOtnqH68d9zF94nT8ZWSxXh8ELOERsnJO/sWt1xZYw5A==", + "license": "MIT" + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "license": "MIT" + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/on-exit-leak-free": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/on-exit-leak-free/-/on-exit-leak-free-2.1.2.tgz", + "integrity": "sha512-0eJJY6hXLGf1udHwfNftBqH+g73EU4B504nZeKpz1sYRKafAghwxEJunB2O7rDZkL4PGfsMVnTXZ2EjibbqcsA==", + "license": "MIT", + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "license": "ISC", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/package-json-from-dist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", + "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", + "license": "BlueOak-1.0.0" + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "license": "MIT" + }, + "node_modules/path-scurry": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-2.0.0.tgz", + "integrity": "sha512-ypGJsmGtdXUOeM5u93TyeIEfEhM6s+ljAhrk5vAvSx8uyY/02OvrZnA0YNGUrPXfpJMgI1ODd3nwz8Npx4O4cg==", + "license": "BlueOak-1.0.0", + "dependencies": { + "lru-cache": "^11.0.0", + "minipass": "^7.1.2" + }, + "engines": { + "node": "20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pino": { + "version": "9.6.0", + "resolved": "https://registry.npmjs.org/pino/-/pino-9.6.0.tgz", + "integrity": "sha512-i85pKRCt4qMjZ1+L7sy2Ag4t1atFcdbEt76+7iRJn1g2BvsnRMGu9p8pivl9fs63M2kF/A0OacFZhTub+m/qMg==", + "license": "MIT", + "dependencies": { + "atomic-sleep": "^1.0.0", + "fast-redact": "^3.1.1", + "on-exit-leak-free": "^2.1.0", + "pino-abstract-transport": "^2.0.0", + "pino-std-serializers": "^7.0.0", + "process-warning": "^4.0.0", + "quick-format-unescaped": "^4.0.3", + "real-require": "^0.2.0", + "safe-stable-stringify": "^2.3.1", + "sonic-boom": "^4.0.1", + "thread-stream": "^3.0.0" + }, + "bin": { + "pino": "bin.js" + } + }, + "node_modules/pino-abstract-transport": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/pino-abstract-transport/-/pino-abstract-transport-2.0.0.tgz", + "integrity": "sha512-F63x5tizV6WCh4R6RHyi2Ml+M70DNRXt/+HANowMflpgGFMAym/VKm6G7ZOQRjqN7XbGxK1Lg9t6ZrtzOaivMw==", + "license": "MIT", + "dependencies": { + "split2": "^4.0.0" + } + }, + "node_modules/pino-pretty": { + "version": "10.3.1", + "resolved": "https://registry.npmjs.org/pino-pretty/-/pino-pretty-10.3.1.tgz", + "integrity": "sha512-az8JbIYeN/1iLj2t0jR9DV48/LQ3RC6hZPpapKPkb84Q+yTidMCpgWxIT3N0flnBDilyBQ1luWNpOeJptjdp/g==", + "license": "MIT", + "dependencies": { + "colorette": "^2.0.7", + "dateformat": "^4.6.3", + "fast-copy": "^3.0.0", + "fast-safe-stringify": "^2.1.1", + "help-me": "^5.0.0", + "joycon": "^3.1.1", + "minimist": "^1.2.6", + "on-exit-leak-free": "^2.1.0", + "pino-abstract-transport": "^1.0.0", + "pump": "^3.0.0", + "readable-stream": "^4.0.0", + "secure-json-parse": "^2.4.0", + "sonic-boom": "^3.0.0", + "strip-json-comments": "^3.1.1" + }, + "bin": { + "pino-pretty": "bin.js" + } + }, + "node_modules/pino-pretty/node_modules/pino-abstract-transport": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/pino-abstract-transport/-/pino-abstract-transport-1.2.0.tgz", + "integrity": "sha512-Guhh8EZfPCfH+PMXAb6rKOjGQEoy0xlAIn+irODG5kgfYV+BQ0rGYYWTIel3P5mmyXqkYkPmdIkywsn6QKUR1Q==", + "license": "MIT", + "dependencies": { + "readable-stream": "^4.0.0", + "split2": "^4.0.0" + } + }, + "node_modules/pino-pretty/node_modules/sonic-boom": { + "version": "3.8.1", + "resolved": "https://registry.npmjs.org/sonic-boom/-/sonic-boom-3.8.1.tgz", + "integrity": "sha512-y4Z8LCDBuum+PBP3lSV7RHrXscqksve/bi0as7mhwVnBW+/wUqKT/2Kb7um8yqcFy0duYbbPxzt89Zy2nOCaxg==", + "license": "MIT", + "dependencies": { + "atomic-sleep": "^1.0.0" + } + }, + "node_modules/pino-std-serializers": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/pino-std-serializers/-/pino-std-serializers-7.0.0.tgz", + "integrity": "sha512-e906FRY0+tV27iq4juKzSYPbUj2do2X2JX4EzSca1631EB2QJQUqGbDuERal7LCtOpxl6x3+nvo9NPZcmjkiFA==", + "license": "MIT" + }, + "node_modules/pino/node_modules/process-warning": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/process-warning/-/process-warning-4.0.1.tgz", + "integrity": "sha512-3c2LzQ3rY9d0hc1emcsHhfT9Jwz0cChib/QN89oME2R451w5fy3f0afAhERFZAwrbDU43wk12d0ORBpDVME50Q==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fastify" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/fastify" + } + ], + "license": "MIT" + }, + "node_modules/process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", + "license": "MIT", + "engines": { + "node": ">= 0.6.0" + } + }, + "node_modules/process-warning": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/process-warning/-/process-warning-3.0.0.tgz", + "integrity": "sha512-mqn0kFRl0EoqhnL0GQ0veqFHyIN1yig9RHh/InzORTUiZHFRAur+aMtRkELNwGs9aNwKS6tg/An4NYBPGwvtzQ==", + "license": "MIT" + }, + "node_modules/prom-client": { + "version": "15.1.3", + "resolved": "https://registry.npmjs.org/prom-client/-/prom-client-15.1.3.tgz", + "integrity": "sha512-6ZiOBfCywsD4k1BN9IX0uZhF+tJkV8q8llP64G5Hajs4JOeVLPCwpPVcpXy3BwYiUGgyJzsJJQeOIv7+hDSq8g==", + "license": "Apache-2.0", + "dependencies": { + "@opentelemetry/api": "^1.4.0", + "tdigest": "^0.1.1" + }, + "engines": { + "node": "^16 || ^18 || >=20" + } + }, + "node_modules/protobufjs": { + "version": "7.5.0", + "resolved": "https://registry.npmjs.org/protobufjs/-/protobufjs-7.5.0.tgz", + "integrity": "sha512-Z2E/kOY1QjoMlCytmexzYfDm/w5fKAiRwpSzGtdnXW1zC88Z2yXazHHrOtwCzn+7wSxyE8PYM4rvVcMphF9sOA==", + "hasInstallScript": true, + "license": "BSD-3-Clause", + "dependencies": { + "@protobufjs/aspromise": "^1.1.2", + "@protobufjs/base64": "^1.1.2", + "@protobufjs/codegen": "^2.0.4", + "@protobufjs/eventemitter": "^1.1.0", + "@protobufjs/fetch": "^1.1.0", + "@protobufjs/float": "^1.0.2", + "@protobufjs/inquire": "^1.1.0", + "@protobufjs/path": "^1.1.2", + "@protobufjs/pool": "^1.1.0", + "@protobufjs/utf8": "^1.1.0", + "@types/node": ">=13.7.0", + "long": "^5.0.0" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "license": "MIT", + "dependencies": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/pump": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.2.tgz", + "integrity": "sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==", + "license": "MIT", + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/quick-format-unescaped": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/quick-format-unescaped/-/quick-format-unescaped-4.0.4.tgz", + "integrity": "sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==", + "license": "MIT" + }, + "node_modules/readable-stream": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-4.7.0.tgz", + "integrity": "sha512-oIGGmcpTLwPga8Bn6/Z75SVaH1z5dUut2ibSyAMVhmUggWpmDn2dapB0n7f8nwaSiRtepAsfJyfXIO5DCVAODg==", + "license": "MIT", + "dependencies": { + "abort-controller": "^3.0.0", + "buffer": "^6.0.3", + "events": "^3.3.0", + "process": "^0.11.10", + "string_decoder": "^1.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "license": "MIT", + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/real-require": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/real-require/-/real-require-0.2.0.tgz", + "integrity": "sha512-57frrGM/OCTLqLOAh0mhVA9VBMHd+9U7Zb2THMGdBUoZVOtGbJzjxsYGDJ3A9AYYCP4hn6y1TVbaOfzWtm5GFg==", + "license": "MIT", + "engines": { + "node": ">= 12.13.0" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-in-the-middle": { + "version": "7.5.2", + "resolved": "https://registry.npmjs.org/require-in-the-middle/-/require-in-the-middle-7.5.2.tgz", + "integrity": "sha512-gAZ+kLqBdHarXB64XpAe2VCjB7rIRv+mU8tfRWziHRJ5umKsIHN2tLLv6EtMw7WCdP19S0ERVMldNvxYCHnhSQ==", + "license": "MIT", + "dependencies": { + "debug": "^4.3.5", + "module-details-from-path": "^1.0.3", + "resolve": "^1.22.8" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/resolve": { + "version": "1.22.10", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.10.tgz", + "integrity": "sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==", + "license": "MIT", + "dependencies": { + "is-core-module": "^2.16.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/ret": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/ret/-/ret-0.4.3.tgz", + "integrity": "sha512-0f4Memo5QP7WQyUEAYUO3esD/XjOc3Zjjg5CPsAq1p8sIu0XPeMbHJemKA0BO7tV0X7+A0FoEpbmHXWxPyD3wQ==", + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/reusify": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.1.0.tgz", + "integrity": "sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==", + "license": "MIT", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rfdc": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/rfdc/-/rfdc-1.4.1.tgz", + "integrity": "sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==", + "license": "MIT" + }, + "node_modules/rimraf": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-6.0.1.tgz", + "integrity": "sha512-9dkvaxAsk/xNXSJzMgFqqMCuFgt2+KsOFek3TMLfo8NCPfWpBmqwyNn5Y+NX56QUYfCtsyhF3ayiboEoUmJk/A==", + "license": "ISC", + "dependencies": { + "glob": "^11.0.0", + "package-json-from-dist": "^1.0.0" + }, + "bin": { + "rimraf": "dist/esm/bin.mjs" + }, + "engines": { + "node": "20 || >=22" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/safe-regex2": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/safe-regex2/-/safe-regex2-3.1.0.tgz", + "integrity": "sha512-RAAZAGbap2kBfbVhvmnTFv73NWLMvDGOITFYTZBAaY8eR+Ir4ef7Up/e7amo+y1+AH+3PtLkrt9mvcTsG9LXug==", + "license": "MIT", + "dependencies": { + "ret": "~0.4.0" + } + }, + "node_modules/safe-stable-stringify": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.5.0.tgz", + "integrity": "sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA==", + "license": "MIT", + "engines": { + "node": ">=10" + } + }, + "node_modules/secure-json-parse": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/secure-json-parse/-/secure-json-parse-2.7.0.tgz", + "integrity": "sha512-6aU+Rwsezw7VR8/nyvKTx8QpWH9FrcYiXXlqC4z5d5XQBDRqtbfsRjnwGyqbi3gddNtWHuEk9OANUotL26qKUw==", + "license": "BSD-3-Clause" + }, + "node_modules/semver": { + "version": "7.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz", + "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==", + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/set-cookie-parser": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/set-cookie-parser/-/set-cookie-parser-2.7.1.tgz", + "integrity": "sha512-IOc8uWeOZgnb3ptbCURJWNjWUPcO3ZnTTdzsurqERrP6nPyv+paC55vJM0LpOlT2ne+Ix+9+CRG1MNLlyZ4GjQ==", + "license": "MIT" + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/shimmer": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/shimmer/-/shimmer-1.2.1.tgz", + "integrity": "sha512-sQTKC1Re/rM6XyFM6fIAGHRPVGvyXfgzIDvzoq608vM+jeyVD0Tu1E6Np0Kc2zAIFWIj963V2800iF/9LPieQw==", + "license": "BSD-2-Clause" + }, + "node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "license": "ISC", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/sonic-boom": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/sonic-boom/-/sonic-boom-4.2.0.tgz", + "integrity": "sha512-INb7TM37/mAcsGmc9hyyI6+QR3rR1zVRu36B0NeGXKnOOLiZOfER5SA+N7X7k3yUYRzLWafduTDvJAfDswwEww==", + "license": "MIT", + "dependencies": { + "atomic-sleep": "^1.0.0" + } + }, + "node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "license": "MIT", + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/split2": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/split2/-/split2-4.2.0.tgz", + "integrity": "sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==", + "license": "ISC", + "engines": { + "node": ">= 10.x" + } + }, + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "license": "MIT", + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "license": "MIT", + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" + }, + "node_modules/string-width-cjs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/tdigest": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/tdigest/-/tdigest-0.1.2.tgz", + "integrity": "sha512-+G0LLgjjo9BZX2MfdvPfH+MKLCrxlXSYec5DaPYP1fe6Iyhf0/fSmJ0bFiZ1F8BT6cGXl2LpltQptzjXKWEkKA==", + "license": "MIT", + "dependencies": { + "bintrees": "1.0.2" + } + }, + "node_modules/thread-stream": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/thread-stream/-/thread-stream-3.1.0.tgz", + "integrity": "sha512-OqyPZ9u96VohAyMfJykzmivOrY2wfMSf3C5TtFJVgN+Hm6aj+voFhlK+kZEIv2FBh1X6Xp3DlnCOfEQ3B2J86A==", + "license": "MIT", + "dependencies": { + "real-require": "^0.2.0" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "license": "MIT", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/toad-cache": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/toad-cache/-/toad-cache-3.7.0.tgz", + "integrity": "sha512-/m8M+2BJUpoJdgAHoG+baCwBT+tf2VraSfkBgl0Y00qIWt41DJ8R5B8nsEw0I58YwF5IZH6z24/2TobDKnqSWw==", + "license": "MIT", + "engines": { + "node": ">=12" + } + }, + "node_modules/tree-kill": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/tree-kill/-/tree-kill-1.2.2.tgz", + "integrity": "sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==", + "license": "MIT", + "bin": { + "tree-kill": "cli.js" + } + }, + "node_modules/ts-api-utils": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-2.1.0.tgz", + "integrity": "sha512-CUgTZL1irw8u29bzrOD/nH85jqyc74D6SshFgujOIA7osm2Rz7dYH77agkx7H4FBNxDq7Cjf+IjaX/8zwFW+ZQ==", + "license": "MIT", + "engines": { + "node": ">=18.12" + }, + "peerDependencies": { + "typescript": ">=4.8.4" + } + }, + "node_modules/ts-node": { + "version": "10.9.2", + "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.2.tgz", + "integrity": "sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==", + "license": "MIT", + "dependencies": { + "@cspotcode/source-map-support": "^0.8.0", + "@tsconfig/node10": "^1.0.7", + "@tsconfig/node12": "^1.0.7", + "@tsconfig/node14": "^1.0.0", + "@tsconfig/node16": "^1.0.2", + "acorn": "^8.4.1", + "acorn-walk": "^8.1.1", + "arg": "^4.1.0", + "create-require": "^1.1.0", + "diff": "^4.0.1", + "make-error": "^1.1.1", + "v8-compile-cache-lib": "^3.0.1", + "yn": "3.1.1" + }, + "bin": { + "ts-node": "dist/bin.js", + "ts-node-cwd": "dist/bin-cwd.js", + "ts-node-esm": "dist/bin-esm.js", + "ts-node-script": "dist/bin-script.js", + "ts-node-transpile-only": "dist/bin-transpile.js", + "ts-script": "dist/bin-script-deprecated.js" + }, + "peerDependencies": { + "@swc/core": ">=1.2.50", + "@swc/wasm": ">=1.2.50", + "@types/node": "*", + "typescript": ">=2.7" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "@swc/wasm": { + "optional": true + } + } + }, + "node_modules/tsconfig": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/tsconfig/-/tsconfig-7.0.0.tgz", + "integrity": "sha512-vZXmzPrL+EmC4T/4rVlT2jNVMWCi/O4DIiSj3UHg1OE5kCKbk4mfrXc6dZksLgRM/TZlKnousKH9bbTazUWRRw==", + "license": "MIT", + "dependencies": { + "@types/strip-bom": "^3.0.0", + "@types/strip-json-comments": "0.0.30", + "strip-bom": "^3.0.0", + "strip-json-comments": "^2.0.0" + } + }, + "node_modules/tsconfig/node_modules/strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/typescript": { + "version": "5.8.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.3.tgz", + "integrity": "sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==", + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/undici-types": { + "version": "6.21.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz", + "integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==", + "license": "MIT" + }, + "node_modules/v8-compile-cache-lib": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", + "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==", + "license": "MIT" + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" + }, + "node_modules/wrap-ansi-cjs/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "license": "ISC" + }, + "node_modules/xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "license": "MIT", + "engines": { + "node": ">=0.4" + } + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "license": "ISC", + "engines": { + "node": ">=10" + } + }, + "node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "license": "MIT", + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/yargs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/yargs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" + }, + "node_modules/yargs/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/yargs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/yn": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", + "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + } + } +} diff --git a/hasura/industry/sco/operations/connector/operations_nodejs/package.json b/hasura/industry/sco/operations/connector/operations_nodejs/package.json new file mode 100644 index 00000000..aa67eabc --- /dev/null +++ b/hasura/industry/sco/operations/connector/operations_nodejs/package.json @@ -0,0 +1,16 @@ +{ + "private": true, + "engines": { + "node": ">=20" + }, + "scripts": { + "start": "ndc-lambda-sdk host -f functions.ts serve --configuration ./", + "watch": "ndc-lambda-sdk host -f functions.ts --watch serve --configuration ./ --pretty-print-logs" + }, + "dependencies": { + "@hasura/ndc-lambda-sdk": "1.13.0" + }, + "devDependencies": { + "dotenv-cli": "^7.4.2" + } +} diff --git a/hasura/industry/sco/operations/connector/operations_nodejs/tsconfig.json b/hasura/industry/sco/operations/connector/operations_nodejs/tsconfig.json new file mode 100644 index 00000000..73f9d001 --- /dev/null +++ b/hasura/industry/sco/operations/connector/operations_nodejs/tsconfig.json @@ -0,0 +1,3 @@ +{ + "extends": "./node_modules/@tsconfig/node20/tsconfig.json" +} diff --git a/hasura/industry/sco/operations/metadata/.keep b/hasura/industry/sco/operations/metadata/.keep new file mode 100644 index 00000000..e69de29b diff --git a/hasura/industry/sco/operations/metadata/create_loyalty_rewards_request.hml b/hasura/industry/sco/operations/metadata/create_loyalty_rewards_request.hml new file mode 100644 index 00000000..1ee94fc0 --- /dev/null +++ b/hasura/industry/sco/operations/metadata/create_loyalty_rewards_request.hml @@ -0,0 +1,98 @@ +--- +kind: ObjectType +version: v1 +definition: + name: create_loyalty_rewards_request_reward_data + fields: + - name: customer_name + type: String! + - name: reward_amount + type: Float! + - name: reward_message + type: String! + graphql: + typeName: Operations_create_loyalty_rewards_request_reward_data + inputTypeName: Operations_create_loyalty_rewards_request_reward_data_input + dataConnectorTypeMapping: + - dataConnectorName: operations_nodejs + dataConnectorObjectType: createLoyaltyRewardsRequest_rewardData + +--- +kind: TypePermissions +version: v1 +definition: + typeName: create_loyalty_rewards_request_reward_data + permissions: + - role: admin + output: + allowedFields: + - customer_name + - reward_amount + - reward_message + +--- +kind: ObjectType +version: v1 +definition: + name: loyalty_rewards_request + description: Creates a new Loyalty Reward Request + fields: + - name: amount + type: Float! + - name: message + type: String! + - name: name + type: String! + graphql: + typeName: Operations_loyalty_rewards_request + inputTypeName: Operations_loyalty_rewards_request_input + dataConnectorTypeMapping: + - dataConnectorName: operations_nodejs + dataConnectorObjectType: LoyaltyRewardsRequest + +--- +kind: TypePermissions +version: v1 +definition: + typeName: loyalty_rewards_request + permissions: + - role: admin + output: + allowedFields: + - amount + - message + - name + +--- +kind: Command +version: v1 +definition: + name: create_loyalty_rewards_request + description: > + Creates a new Loyalty Rewards Request + + - This can be used to give a percentage discount or amount in USD as reward. A customized thank you message can also be included. + + outputType: loyalty_rewards_request! + arguments: + - name: reward_data + type: create_loyalty_rewards_request_reward_data! + source: + dataConnectorName: operations_nodejs + dataConnectorCommand: + procedure: createLoyaltyRewardsRequest + argumentMapping: + reward_data: rewardData + graphql: + rootFieldName: operations_create_loyalty_rewards_request + rootFieldKind: Mutation + +--- +kind: CommandPermissions +version: v1 +definition: + commandName: create_loyalty_rewards_request + permissions: + - role: admin + allowExecution: true + diff --git a/hasura/industry/sco/operations/metadata/create_shipment_request.hml b/hasura/industry/sco/operations/metadata/create_shipment_request.hml new file mode 100644 index 00000000..de6aace8 --- /dev/null +++ b/hasura/industry/sco/operations/metadata/create_shipment_request.hml @@ -0,0 +1,100 @@ +--- +kind: ObjectType +version: v1 +definition: + name: create_shipment_request_shipment_data + fields: + - name: product_name + type: String! + - name: unit_quantity + type: Float! + - name: warehouse_destination + type: String! + graphql: + typeName: Operations_create_shipment_request_shipment_data + inputTypeName: Operations_create_shipment_request_shipment_data_input + dataConnectorTypeMapping: + - dataConnectorName: operations_nodejs + dataConnectorObjectType: createShipmentRequest_shipmentData + +--- +kind: TypePermissions +version: v1 +definition: + typeName: create_shipment_request_shipment_data + permissions: + - role: admin + output: + allowedFields: + - product_name + - unit_quantity + - warehouse_destination + +--- +kind: ObjectType +version: v1 +definition: + name: shipment_request + description: |- + Start functions for supply chain demos + note that all functions must not return scalar values + fields: + - name: destination + type: String! + - name: name + type: String! + - name: units + type: Float! + graphql: + typeName: Operations_shipment_request + inputTypeName: Operations_shipment_request_input + dataConnectorTypeMapping: + - dataConnectorName: operations_nodejs + dataConnectorObjectType: ShipmentRequest + +--- +kind: TypePermissions +version: v1 +definition: + typeName: shipment_request + permissions: + - role: admin + output: + allowedFields: + - destination + - name + - units + +--- +kind: Command +version: v1 +definition: + name: create_shipment_request + description: > + Creates a new Warehouse Shipment Request + + - This can be used to redistribute stock units from one warehouse to another. + outputType: shipment_request! + arguments: + - name: shipment_data + type: create_shipment_request_shipment_data! + description: Data for the new product + source: + dataConnectorName: operations_nodejs + dataConnectorCommand: + procedure: createShipmentRequest + argumentMapping: + shipment_data: shipmentData + graphql: + rootFieldName: operations_create_shipment_request + rootFieldKind: Mutation + +--- +kind: CommandPermissions +version: v1 +definition: + commandName: create_shipment_request + permissions: + - role: admin + allowExecution: true + diff --git a/hasura/industry/sco/operations/metadata/operations_nodejs-types.hml b/hasura/industry/sco/operations/metadata/operations_nodejs-types.hml new file mode 100644 index 00000000..3a1509e0 --- /dev/null +++ b/hasura/industry/sco/operations/metadata/operations_nodejs-types.hml @@ -0,0 +1,20 @@ +--- +kind: DataConnectorScalarRepresentation +version: v1 +definition: + dataConnectorName: operations_nodejs + dataConnectorScalarType: String + representation: String + graphql: + comparisonExpressionTypeName: Operations_string_comparison_exp + +--- +kind: DataConnectorScalarRepresentation +version: v1 +definition: + dataConnectorName: operations_nodejs + dataConnectorScalarType: Float + representation: Float + graphql: + comparisonExpressionTypeName: Operations_float_comparison_exp + diff --git a/hasura/industry/sco/operations/metadata/operations_nodejs.hml b/hasura/industry/sco/operations/metadata/operations_nodejs.hml new file mode 100644 index 00000000..f3964541 --- /dev/null +++ b/hasura/industry/sco/operations/metadata/operations_nodejs.hml @@ -0,0 +1,118 @@ +kind: DataConnectorLink +version: v1 +definition: + name: operations_nodejs + url: + readWriteUrls: + read: + valueFromEnv: OPERATIONS_OPERATIONS_NODEJS_READ_URL + write: + valueFromEnv: OPERATIONS_OPERATIONS_NODEJS_WRITE_URL + headers: + Authorization: + valueFromEnv: OPERATIONS_OPERATIONS_NODEJS_AUTHORIZATION_HEADER + schema: + version: v0.1 + schema: + scalar_types: + Float: + representation: + type: float64 + aggregate_functions: {} + comparison_operators: + _eq: + type: equal + String: + representation: + type: string + aggregate_functions: {} + comparison_operators: + _eq: + type: equal + object_types: + LoyaltyRewardsRequest: + description: Creates a new Loyalty Reward Request + fields: + amount: + type: + name: Float + type: named + message: + type: + name: String + type: named + name: + type: + name: String + type: named + ShipmentRequest: + description: Creates a new Warehouse Shipment Request + fields: + destination: + type: + name: String + type: named + name: + type: + name: String + type: named + units: + type: + name: Float + type: named + createLoyaltyRewardsRequest_rewardData: + fields: + customer_name: + type: + name: String + type: named + reward_amount: + type: + name: Float + type: named + reward_message: + type: + name: String + type: named + createShipmentRequest_shipmentData: + fields: + product_name: + type: + name: String + type: named + unit_quantity: + type: + name: Float + type: named + warehouse_destination: + type: + name: String + type: named + collections: [] + functions: [] + procedures: + - name: createShipmentRequest + arguments: + shipmentData: + type: + name: createShipmentRequest_shipmentData + type: named + result_type: + name: ShipmentRequest + type: named + - name: createLoyaltyRewardsRequest + arguments: + rewardData: + type: + name: createLoyaltyRewardsRequest_rewardData + type: named + result_type: + name: LoyaltyRewardsRequest + type: named + capabilities: + version: 0.1.6 + capabilities: + query: + variables: {} + nested_fields: {} + mutation: {} diff --git a/hasura/industry/sco/operations/subgraph.yaml b/hasura/industry/sco/operations/subgraph.yaml new file mode 100644 index 00000000..eca3f88a --- /dev/null +++ b/hasura/industry/sco/operations/subgraph.yaml @@ -0,0 +1,21 @@ +kind: Subgraph +version: v2 +definition: + name: operations + generator: + rootPath: . + graphqlRootFieldPrefix: operations_ + graphqlTypeNamePrefix: Operations_ + namingConvention: snake_case + includePaths: + - metadata + envMapping: + OPERATIONS_OPERATIONS_NODEJS_AUTHORIZATION_HEADER: + fromEnv: OPERATIONS_OPERATIONS_NODEJS_AUTHORIZATION_HEADER + OPERATIONS_OPERATIONS_NODEJS_READ_URL: + fromEnv: OPERATIONS_OPERATIONS_NODEJS_READ_URL + OPERATIONS_OPERATIONS_NODEJS_WRITE_URL: + fromEnv: OPERATIONS_OPERATIONS_NODEJS_WRITE_URL + connectors: + - path: connector/operations_nodejs/connector.yaml + connectorLinkName: operations_nodejs diff --git a/hasura/industry/sco/scms/connector/scms_postgres/.ddnignore b/hasura/industry/sco/scms/connector/scms_postgres/.ddnignore new file mode 100644 index 00000000..ed72dd19 --- /dev/null +++ b/hasura/industry/sco/scms/connector/scms_postgres/.ddnignore @@ -0,0 +1,2 @@ +.env* +compose.yaml diff --git a/hasura/industry/sco/scms/connector/scms_postgres/.hasura-connector/Dockerfile.scms_postgres b/hasura/industry/sco/scms/connector/scms_postgres/.hasura-connector/Dockerfile.scms_postgres new file mode 100644 index 00000000..a7c9f043 --- /dev/null +++ b/hasura/industry/sco/scms/connector/scms_postgres/.hasura-connector/Dockerfile.scms_postgres @@ -0,0 +1,2 @@ +FROM ghcr.io/hasura/ndc-postgres-jdbc:v1.0.0 +COPY ./ /etc/connector \ No newline at end of file diff --git a/hasura/industry/sco/scms/connector/scms_postgres/.hasura-connector/connector-metadata.yaml b/hasura/industry/sco/scms/connector/scms_postgres/.hasura-connector/connector-metadata.yaml new file mode 100644 index 00000000..7687a9ba --- /dev/null +++ b/hasura/industry/sco/scms/connector/scms_postgres/.hasura-connector/connector-metadata.yaml @@ -0,0 +1,30 @@ +packagingDefinition: + type: PrebuiltDockerImage + dockerImage: ghcr.io/hasura/ndc-postgres-jdbc:v1.0.0 +supportedEnvironmentVariables: + - name: JDBC_URL + description: The JDBC URL to connect to the database + - name: JDBC_SCHEMAS + description: A comma-separated list of schemas to include in the metadata +commands: + update: + type: Dockerized + dockerImage: ghcr.io/hasura/ndc-postgres-jdbc-cli:v1.0.0 + commandArgs: + - update + - --jdbc-url + - JDBC_URL + - --schemas + - $JDBC_SCHEMAS + - --outfile + - /etc/connector/configuration.json + upgradeConfiguration: + type: Dockerized + dockerImage: ghcr.io/hasura/ndc-postgres-jdbc-cli:v1.0.0 + commandArgs: + - upgrade + - --config-file + - /etc/connector/configuration.json + - --outfile + - /etc/connector/configuration.json +dockerComposeWatch: [] diff --git a/hasura/industry/sco/scms/connector/scms_postgres/compose.yaml b/hasura/industry/sco/scms/connector/scms_postgres/compose.yaml new file mode 100644 index 00000000..ca6af8d6 --- /dev/null +++ b/hasura/industry/sco/scms/connector/scms_postgres/compose.yaml @@ -0,0 +1,14 @@ +services: + scms_scms_postgres: + build: + context: . + dockerfile: .hasura-connector/Dockerfile.scms_postgres + environment: + HASURA_SERVICE_TOKEN_SECRET: $SCMS_SCMS_POSTGRES_HASURA_SERVICE_TOKEN_SECRET + JDBC_URL: $SCMS_SCMS_POSTGRES_JDBC_URL + OTEL_EXPORTER_OTLP_ENDPOINT: $SCMS_SCMS_POSTGRES_OTEL_EXPORTER_OTLP_ENDPOINT + OTEL_SERVICE_NAME: $SCMS_SCMS_POSTGRES_OTEL_SERVICE_NAME + extra_hosts: + - local.hasura.dev:host-gateway + ports: + - 9598:8080 diff --git a/hasura/industry/sco/scms/connector/scms_postgres/configuration.json b/hasura/industry/sco/scms/connector/scms_postgres/configuration.json new file mode 100644 index 00000000..4b3ede85 --- /dev/null +++ b/hasura/industry/sco/scms/connector/scms_postgres/configuration.json @@ -0,0 +1,496 @@ +{ + "version": "v2", + "connection_uri": { + "variable": "JDBC_URL" + }, + "tables": [ + { + "name": "us.billofmaterials", + "description": null, + "category": "TABLE", + "columns": [ + { + "name": "shoe_id", + "nullable": false, + "auto_increment": false, + "is_primarykey": true, + "data": { + "database_type": "integer" + } + }, + { + "name": "material_id", + "nullable": false, + "auto_increment": false, + "is_primarykey": true, + "data": { + "database_type": "integer" + } + }, + { + "name": "quantity_required", + "nullable": true, + "auto_increment": false, + "is_primarykey": false, + "data": { + "database_type": "numeric", + "metadata": { + "type": "numeric", + "precision": 10, + "scale": 2 + } + } + } + ], + "primary_keys": [ + "shoe_id", + "material_id" + ], + "foreign_keys": {} + }, + { + "name": "us.factories", + "description": null, + "category": "TABLE", + "columns": [ + { + "name": "factory_id", + "nullable": false, + "auto_increment": true, + "is_primarykey": true, + "data": { + "database_type": "integer" + } + }, + { + "name": "name", + "nullable": true, + "auto_increment": false, + "is_primarykey": false, + "data": { + "database_type": "character_varying", + "metadata": { + "type": "length", + "length": 100 + } + } + }, + { + "name": "location", + "nullable": true, + "auto_increment": false, + "is_primarykey": false, + "data": { + "database_type": "character_varying", + "metadata": { + "type": "length", + "length": 100 + } + } + }, + { + "name": "capacity", + "nullable": true, + "auto_increment": false, + "is_primarykey": false, + "data": { + "database_type": "integer" + } + } + ], + "primary_keys": [ + "factory_id" + ], + "foreign_keys": {} + }, + { + "name": "us.productionorders", + "description": null, + "category": "TABLE", + "columns": [ + { + "name": "order_id", + "nullable": false, + "auto_increment": true, + "is_primarykey": true, + "data": { + "database_type": "integer" + } + }, + { + "name": "shoe_id", + "nullable": true, + "auto_increment": false, + "is_primarykey": false, + "data": { + "database_type": "integer" + } + }, + { + "name": "factory_id", + "nullable": true, + "auto_increment": false, + "is_primarykey": false, + "data": { + "database_type": "integer" + } + }, + { + "name": "quantity", + "nullable": true, + "auto_increment": false, + "is_primarykey": false, + "data": { + "database_type": "integer" + } + }, + { + "name": "start_date", + "nullable": true, + "auto_increment": false, + "is_primarykey": false, + "data": { + "database_type": "date" + } + }, + { + "name": "expected_completion", + "nullable": true, + "auto_increment": false, + "is_primarykey": false, + "data": { + "database_type": "date" + } + } + ], + "primary_keys": [ + "order_id" + ], + "foreign_keys": {} + }, + { + "name": "us.rawmaterials", + "description": null, + "category": "TABLE", + "columns": [ + { + "name": "material_id", + "nullable": false, + "auto_increment": true, + "is_primarykey": true, + "data": { + "database_type": "integer" + } + }, + { + "name": "name", + "nullable": false, + "auto_increment": false, + "is_primarykey": false, + "data": { + "database_type": "character_varying", + "metadata": { + "type": "length", + "length": 100 + } + } + }, + { + "name": "unit", + "nullable": true, + "auto_increment": false, + "is_primarykey": false, + "data": { + "database_type": "character_varying", + "metadata": { + "type": "length", + "length": 20 + } + } + }, + { + "name": "cost_per_unit", + "nullable": true, + "auto_increment": false, + "is_primarykey": false, + "data": { + "database_type": "numeric", + "metadata": { + "type": "numeric", + "precision": 10, + "scale": 2 + } + } + } + ], + "primary_keys": [ + "material_id" + ], + "foreign_keys": {} + }, + { + "name": "us.shipments", + "description": null, + "category": "TABLE", + "columns": [ + { + "name": "shipment_id", + "nullable": false, + "auto_increment": true, + "is_primarykey": true, + "data": { + "database_type": "integer" + } + }, + { + "name": "order_id", + "nullable": true, + "auto_increment": false, + "is_primarykey": false, + "data": { + "database_type": "integer" + } + }, + { + "name": "warehouse_id", + "nullable": true, + "auto_increment": false, + "is_primarykey": false, + "data": { + "database_type": "integer" + } + }, + { + "name": "shipped_date", + "nullable": true, + "auto_increment": false, + "is_primarykey": false, + "data": { + "database_type": "date" + } + }, + { + "name": "arrival_date", + "nullable": true, + "auto_increment": false, + "is_primarykey": false, + "data": { + "database_type": "date" + } + }, + { + "name": "quantity", + "nullable": true, + "auto_increment": false, + "is_primarykey": false, + "data": { + "database_type": "integer" + } + } + ], + "primary_keys": [ + "shipment_id" + ], + "foreign_keys": {} + }, + { + "name": "us.shoes", + "description": null, + "category": "TABLE", + "columns": [ + { + "name": "shoe_id", + "nullable": false, + "auto_increment": true, + "is_primarykey": true, + "data": { + "database_type": "integer" + } + }, + { + "name": "model_name", + "nullable": true, + "auto_increment": false, + "is_primarykey": false, + "data": { + "database_type": "character_varying", + "metadata": { + "type": "length", + "length": 100 + } + } + }, + { + "name": "category", + "nullable": true, + "auto_increment": false, + "is_primarykey": false, + "data": { + "database_type": "character_varying", + "metadata": { + "type": "length", + "length": 50 + } + } + }, + { + "name": "release_date", + "nullable": true, + "auto_increment": false, + "is_primarykey": false, + "data": { + "database_type": "date" + } + } + ], + "primary_keys": [ + "shoe_id" + ], + "foreign_keys": {} + }, + { + "name": "us.suppliermaterials", + "description": null, + "category": "TABLE", + "columns": [ + { + "name": "supplier_id", + "nullable": false, + "auto_increment": false, + "is_primarykey": true, + "data": { + "database_type": "integer" + } + }, + { + "name": "material_id", + "nullable": false, + "auto_increment": false, + "is_primarykey": true, + "data": { + "database_type": "integer" + } + }, + { + "name": "lead_time_days", + "nullable": true, + "auto_increment": false, + "is_primarykey": false, + "data": { + "database_type": "integer" + } + } + ], + "primary_keys": [ + "supplier_id", + "material_id" + ], + "foreign_keys": {} + }, + { + "name": "us.suppliers", + "description": null, + "category": "TABLE", + "columns": [ + { + "name": "supplier_id", + "nullable": false, + "auto_increment": true, + "is_primarykey": true, + "data": { + "database_type": "integer" + } + }, + { + "name": "name", + "nullable": false, + "auto_increment": false, + "is_primarykey": false, + "data": { + "database_type": "character_varying", + "metadata": { + "type": "length", + "length": 100 + } + } + }, + { + "name": "contact_email", + "nullable": true, + "auto_increment": false, + "is_primarykey": false, + "data": { + "database_type": "character_varying", + "metadata": { + "type": "length", + "length": 100 + } + } + }, + { + "name": "country", + "nullable": true, + "auto_increment": false, + "is_primarykey": false, + "data": { + "database_type": "character_varying", + "metadata": { + "type": "length", + "length": 50 + } + } + } + ], + "primary_keys": [ + "supplier_id" + ], + "foreign_keys": {} + }, + { + "name": "us.warehouses", + "description": null, + "category": "TABLE", + "columns": [ + { + "name": "warehouse_id", + "nullable": false, + "auto_increment": true, + "is_primarykey": true, + "data": { + "database_type": "integer" + } + }, + { + "name": "name", + "nullable": true, + "auto_increment": false, + "is_primarykey": false, + "data": { + "database_type": "character_varying", + "metadata": { + "type": "length", + "length": 100 + } + } + }, + { + "name": "location", + "nullable": true, + "auto_increment": false, + "is_primarykey": false, + "data": { + "database_type": "character_varying", + "metadata": { + "type": "length", + "length": 100 + } + } + } + ], + "primary_keys": [ + "warehouse_id" + ], + "foreign_keys": {} + } + ] +} \ No newline at end of file diff --git a/hasura/industry/sco/scms/connector/scms_postgres/connector.yaml b/hasura/industry/sco/scms/connector/scms_postgres/connector.yaml new file mode 100644 index 00000000..858b4080 --- /dev/null +++ b/hasura/industry/sco/scms/connector/scms_postgres/connector.yaml @@ -0,0 +1,16 @@ +kind: Connector +version: v2 +definition: + name: scms_postgres + subgraph: scms + source: hasura/postgres-promptql:v1.0.0 + context: . + envMapping: + HASURA_SERVICE_TOKEN_SECRET: + fromEnv: SCMS_SCMS_POSTGRES_HASURA_SERVICE_TOKEN_SECRET + JDBC_URL: + fromEnv: SCMS_SCMS_POSTGRES_JDBC_URL + OTEL_EXPORTER_OTLP_ENDPOINT: + fromEnv: SCMS_SCMS_POSTGRES_OTEL_EXPORTER_OTLP_ENDPOINT + OTEL_SERVICE_NAME: + fromEnv: SCMS_SCMS_POSTGRES_OTEL_SERVICE_NAME diff --git a/hasura/industry/sco/scms/metadata/.keep b/hasura/industry/sco/scms/metadata/.keep new file mode 100644 index 00000000..e69de29b diff --git a/hasura/industry/sco/scms/metadata/scms_postgres-types.hml b/hasura/industry/sco/scms/metadata/scms_postgres-types.hml new file mode 100644 index 00000000..d37c88c5 --- /dev/null +++ b/hasura/industry/sco/scms/metadata/scms_postgres-types.hml @@ -0,0 +1,436 @@ +--- +kind: ScalarType +version: v1 +definition: + name: integer + graphql: + typeName: SCMS_integer + +--- +kind: BooleanExpressionType +version: v1 +definition: + name: integer_bool_exp + operand: + scalar: + type: integer + comparisonOperators: + - name: _eq + argumentType: integer! + - name: _gt + argumentType: integer! + - name: _gte + argumentType: integer! + - name: _in + argumentType: "[integer!]!" + - name: _lt + argumentType: integer! + - name: _lte + argumentType: integer! + - name: _neq + argumentType: integer! + dataConnectorOperatorMapping: + - dataConnectorName: scms_postgres + dataConnectorScalarType: integer + operatorMapping: {} + logicalOperators: + enable: true + isNull: + enable: true + graphql: + typeName: SCMS_integer_bool_exp + +--- +kind: DataConnectorScalarRepresentation +version: v1 +definition: + dataConnectorName: scms_postgres + dataConnectorScalarType: integer + representation: integer + graphql: + comparisonExpressionTypeName: SCMS_integer_comparison_exp + +--- +kind: ScalarType +version: v1 +definition: + name: numeric + graphql: + typeName: SCMS_numeric + +--- +kind: BooleanExpressionType +version: v1 +definition: + name: numeric_bool_exp + operand: + scalar: + type: numeric + comparisonOperators: + - name: _eq + argumentType: numeric! + - name: _gt + argumentType: numeric! + - name: _gte + argumentType: numeric! + - name: _in + argumentType: "[numeric!]!" + - name: _lt + argumentType: numeric! + - name: _lte + argumentType: numeric! + - name: _neq + argumentType: numeric! + dataConnectorOperatorMapping: + - dataConnectorName: scms_postgres + dataConnectorScalarType: numeric + operatorMapping: {} + logicalOperators: + enable: true + isNull: + enable: true + graphql: + typeName: SCMS_numeric_bool_exp + +--- +kind: DataConnectorScalarRepresentation +version: v1 +definition: + dataConnectorName: scms_postgres + dataConnectorScalarType: numeric + representation: numeric + graphql: + comparisonExpressionTypeName: SCMS_numeric_comparison_exp + +--- +kind: AggregateExpression +version: v1 +definition: + name: integer_agg_exp + operand: + scalar: + aggregatedType: integer + aggregationFunctions: + - name: avg + returnType: integer! + - name: max + returnType: integer! + - name: min + returnType: integer! + - name: stddev_pop + returnType: integer! + - name: stddev_samp + returnType: integer! + - name: sum + returnType: integer! + - name: var_pop + returnType: integer! + - name: var_samp + returnType: integer! + dataConnectorAggregationFunctionMapping: + - dataConnectorName: scms_postgres + dataConnectorScalarType: integer + functionMapping: + avg: + name: avg + max: + name: max + min: + name: min + stddev_pop: + name: stddev_pop + stddev_samp: + name: stddev_samp + sum: + name: sum + var_pop: + name: var_pop + var_samp: + name: var_samp + count: + enable: true + countDistinct: + enable: true + graphql: + selectTypeName: SCMS_integer_agg_exp + +--- +kind: AggregateExpression +version: v1 +definition: + name: numeric_agg_exp + operand: + scalar: + aggregatedType: numeric + aggregationFunctions: + - name: avg + returnType: numeric! + - name: max + returnType: numeric! + - name: min + returnType: numeric! + - name: stddev_pop + returnType: numeric! + - name: stddev_samp + returnType: numeric! + - name: sum + returnType: numeric! + - name: var_pop + returnType: numeric! + - name: var_samp + returnType: numeric! + dataConnectorAggregationFunctionMapping: + - dataConnectorName: scms_postgres + dataConnectorScalarType: numeric + functionMapping: + avg: + name: avg + max: + name: max + min: + name: min + stddev_pop: + name: stddev_pop + stddev_samp: + name: stddev_samp + sum: + name: sum + var_pop: + name: var_pop + var_samp: + name: var_samp + count: + enable: true + countDistinct: + enable: true + graphql: + selectTypeName: SCMS_numeric_agg_exp + +--- +kind: OrderByExpression +version: v1 +definition: + name: integer_order_by_exp + operand: + scalar: + orderedType: integer + enableOrderByDirections: + enableAll: true + graphql: + expressionTypeName: SCMS_integer_order_by_exp + +--- +kind: OrderByExpression +version: v1 +definition: + name: numeric_order_by_exp + operand: + scalar: + orderedType: numeric + enableOrderByDirections: + enableAll: true + graphql: + expressionTypeName: SCMS_numeric_order_by_exp + +--- +kind: ScalarType +version: v1 +definition: + name: character_varying + graphql: + typeName: SCMS_character_varying + +--- +kind: BooleanExpressionType +version: v1 +definition: + name: character_varying_bool_exp + operand: + scalar: + type: character_varying + comparisonOperators: + - name: _eq + argumentType: character_varying! + - name: _gt + argumentType: character_varying! + - name: _gte + argumentType: character_varying! + - name: _ilike + argumentType: character_varying! + - name: _in + argumentType: "[character_varying!]!" + - name: _iregex + argumentType: character_varying! + - name: _like + argumentType: character_varying! + - name: _lt + argumentType: character_varying! + - name: _lte + argumentType: character_varying! + - name: _neq + argumentType: character_varying! + - name: _nilike + argumentType: character_varying! + - name: _niregex + argumentType: character_varying! + - name: _nlike + argumentType: character_varying! + - name: _nregex + argumentType: character_varying! + - name: _regex + argumentType: character_varying! + dataConnectorOperatorMapping: + - dataConnectorName: scms_postgres + dataConnectorScalarType: character_varying + operatorMapping: {} + logicalOperators: + enable: true + isNull: + enable: true + graphql: + typeName: SCMS_character_varying_bool_exp + +--- +kind: DataConnectorScalarRepresentation +version: v1 +definition: + dataConnectorName: scms_postgres + dataConnectorScalarType: character_varying + representation: character_varying + graphql: + comparisonExpressionTypeName: SCMS_character_varying_comparison_exp + +--- +kind: AggregateExpression +version: v1 +definition: + name: character_varying_agg_exp + operand: + scalar: + aggregatedType: character_varying + aggregationFunctions: + - name: max + returnType: character_varying! + - name: min + returnType: character_varying! + dataConnectorAggregationFunctionMapping: + - dataConnectorName: scms_postgres + dataConnectorScalarType: character_varying + functionMapping: + max: + name: max + min: + name: min + count: + enable: true + countDistinct: + enable: true + graphql: + selectTypeName: SCMS_character_varying_agg_exp + +--- +kind: OrderByExpression +version: v1 +definition: + name: character_varying_order_by_exp + operand: + scalar: + orderedType: character_varying + enableOrderByDirections: + enableAll: true + graphql: + expressionTypeName: SCMS_character_varying_order_by_exp + +--- +kind: ScalarType +version: v1 +definition: + name: date + graphql: + typeName: SCMS_date + +--- +kind: BooleanExpressionType +version: v1 +definition: + name: date_bool_exp + operand: + scalar: + type: date + comparisonOperators: + - name: _eq + argumentType: date! + - name: _gt + argumentType: date! + - name: _gte + argumentType: date! + - name: _in + argumentType: "[date!]!" + - name: _lt + argumentType: date! + - name: _lte + argumentType: date! + - name: _neq + argumentType: date! + dataConnectorOperatorMapping: + - dataConnectorName: scms_postgres + dataConnectorScalarType: date + operatorMapping: {} + logicalOperators: + enable: true + isNull: + enable: true + graphql: + typeName: SCMS_date_bool_exp + +--- +kind: DataConnectorScalarRepresentation +version: v1 +definition: + dataConnectorName: scms_postgres + dataConnectorScalarType: date + representation: date + graphql: + comparisonExpressionTypeName: SCMS_date_comparison_exp + +--- +kind: AggregateExpression +version: v1 +definition: + name: date_agg_exp + operand: + scalar: + aggregatedType: date + aggregationFunctions: + - name: max + returnType: date! + - name: min + returnType: date! + dataConnectorAggregationFunctionMapping: + - dataConnectorName: scms_postgres + dataConnectorScalarType: date + functionMapping: + max: + name: max + min: + name: min + count: + enable: true + countDistinct: + enable: true + graphql: + selectTypeName: SCMS_date_agg_exp + +--- +kind: OrderByExpression +version: v1 +definition: + name: date_order_by_exp + operand: + scalar: + orderedType: date + enableOrderByDirections: + enableAll: true + graphql: + expressionTypeName: SCMS_date_order_by_exp + diff --git a/hasura/industry/sco/scms/metadata/scms_postgres.hml b/hasura/industry/sco/scms/metadata/scms_postgres.hml new file mode 100644 index 00000000..434a1b30 --- /dev/null +++ b/hasura/industry/sco/scms/metadata/scms_postgres.hml @@ -0,0 +1,613 @@ +kind: DataConnectorLink +version: v1 +definition: + name: scms_postgres + url: + readWriteUrls: + read: + valueFromEnv: SCMS_SCMS_POSTGRES_READ_URL + write: + valueFromEnv: SCMS_SCMS_POSTGRES_WRITE_URL + headers: + Authorization: + valueFromEnv: SCMS_SCMS_POSTGRES_AUTHORIZATION_HEADER + schema: + version: v0.1 + schema: + scalar_types: + character_varying: + representation: + type: string + aggregate_functions: + max: + result_type: + name: character_varying + type: named + min: + result_type: + name: character_varying + type: named + comparison_operators: + _eq: + type: equal + _gt: + type: custom + argument_type: + name: character_varying + type: named + _gte: + type: custom + argument_type: + name: character_varying + type: named + _ilike: + type: custom + argument_type: + name: character_varying + type: named + _in: + type: in + _iregex: + type: custom + argument_type: + name: character_varying + type: named + _like: + type: custom + argument_type: + name: character_varying + type: named + _lt: + type: custom + argument_type: + name: character_varying + type: named + _lte: + type: custom + argument_type: + name: character_varying + type: named + _neq: + type: custom + argument_type: + name: character_varying + type: named + _nilike: + type: custom + argument_type: + name: character_varying + type: named + _niregex: + type: custom + argument_type: + name: character_varying + type: named + _nlike: + type: custom + argument_type: + name: character_varying + type: named + _nregex: + type: custom + argument_type: + name: character_varying + type: named + _regex: + type: custom + argument_type: + name: character_varying + type: named + date: + representation: + type: date + aggregate_functions: + max: + result_type: + name: date + type: named + min: + result_type: + name: date + type: named + comparison_operators: + _eq: + type: equal + _gt: + type: custom + argument_type: + name: date + type: named + _gte: + type: custom + argument_type: + name: date + type: named + _in: + type: in + _lt: + type: custom + argument_type: + name: date + type: named + _lte: + type: custom + argument_type: + name: date + type: named + _neq: + type: custom + argument_type: + name: date + type: named + integer: + representation: + type: int32 + aggregate_functions: + avg: + result_type: + name: integer + type: named + max: + result_type: + name: integer + type: named + min: + result_type: + name: integer + type: named + stddev_pop: + result_type: + name: integer + type: named + stddev_samp: + result_type: + name: integer + type: named + sum: + result_type: + name: integer + type: named + var_pop: + result_type: + name: integer + type: named + var_samp: + result_type: + name: integer + type: named + comparison_operators: + _eq: + type: equal + _gt: + type: custom + argument_type: + name: integer + type: named + _gte: + type: custom + argument_type: + name: integer + type: named + _in: + type: in + _lt: + type: custom + argument_type: + name: integer + type: named + _lte: + type: custom + argument_type: + name: integer + type: named + _neq: + type: custom + argument_type: + name: integer + type: named + numeric: + representation: + type: bigdecimal + aggregate_functions: + avg: + result_type: + name: numeric + type: named + max: + result_type: + name: numeric + type: named + min: + result_type: + name: numeric + type: named + stddev_pop: + result_type: + name: numeric + type: named + stddev_samp: + result_type: + name: numeric + type: named + sum: + result_type: + name: numeric + type: named + var_pop: + result_type: + name: numeric + type: named + var_samp: + result_type: + name: numeric + type: named + comparison_operators: + _eq: + type: equal + _gt: + type: custom + argument_type: + name: numeric + type: named + _gte: + type: custom + argument_type: + name: numeric + type: named + _in: + type: in + _lt: + type: custom + argument_type: + name: numeric + type: named + _lte: + type: custom + argument_type: + name: numeric + type: named + _neq: + type: custom + argument_type: + name: numeric + type: named + object_types: + us.billofmaterials: + fields: + material_id: + type: + name: integer + type: named + arguments: {} + quantity_required: + type: + type: nullable + underlying_type: + name: numeric + type: named + arguments: {} + shoe_id: + type: + name: integer + type: named + arguments: {} + us.factories: + fields: + capacity: + type: + type: nullable + underlying_type: + name: integer + type: named + arguments: {} + factory_id: + type: + name: integer + type: named + arguments: {} + location: + type: + type: nullable + underlying_type: + name: character_varying + type: named + arguments: {} + name: + type: + type: nullable + underlying_type: + name: character_varying + type: named + arguments: {} + us.productionorders: + fields: + expected_completion: + type: + type: nullable + underlying_type: + name: date + type: named + arguments: {} + factory_id: + type: + type: nullable + underlying_type: + name: integer + type: named + arguments: {} + order_id: + type: + name: integer + type: named + arguments: {} + quantity: + type: + type: nullable + underlying_type: + name: integer + type: named + arguments: {} + shoe_id: + type: + type: nullable + underlying_type: + name: integer + type: named + arguments: {} + start_date: + type: + type: nullable + underlying_type: + name: date + type: named + arguments: {} + us.rawmaterials: + fields: + cost_per_unit: + type: + type: nullable + underlying_type: + name: numeric + type: named + arguments: {} + material_id: + type: + name: integer + type: named + arguments: {} + name: + type: + name: character_varying + type: named + arguments: {} + unit: + type: + type: nullable + underlying_type: + name: character_varying + type: named + arguments: {} + us.shipments: + fields: + arrival_date: + type: + type: nullable + underlying_type: + name: date + type: named + arguments: {} + order_id: + type: + type: nullable + underlying_type: + name: integer + type: named + arguments: {} + quantity: + type: + type: nullable + underlying_type: + name: integer + type: named + arguments: {} + shipment_id: + type: + name: integer + type: named + arguments: {} + shipped_date: + type: + type: nullable + underlying_type: + name: date + type: named + arguments: {} + warehouse_id: + type: + type: nullable + underlying_type: + name: integer + type: named + arguments: {} + us.shoes: + fields: + category: + type: + type: nullable + underlying_type: + name: character_varying + type: named + arguments: {} + model_name: + type: + type: nullable + underlying_type: + name: character_varying + type: named + arguments: {} + release_date: + type: + type: nullable + underlying_type: + name: date + type: named + arguments: {} + shoe_id: + type: + name: integer + type: named + arguments: {} + us.suppliermaterials: + fields: + lead_time_days: + type: + type: nullable + underlying_type: + name: integer + type: named + arguments: {} + material_id: + type: + name: integer + type: named + arguments: {} + supplier_id: + type: + name: integer + type: named + arguments: {} + us.suppliers: + fields: + contact_email: + type: + type: nullable + underlying_type: + name: character_varying + type: named + arguments: {} + country: + type: + type: nullable + underlying_type: + name: character_varying + type: named + arguments: {} + name: + type: + name: character_varying + type: named + arguments: {} + supplier_id: + type: + name: integer + type: named + arguments: {} + us.warehouses: + fields: + location: + type: + type: nullable + underlying_type: + name: character_varying + type: named + arguments: {} + name: + type: + type: nullable + underlying_type: + name: character_varying + type: named + arguments: {} + warehouse_id: + type: + name: integer + type: named + arguments: {} + collections: + - name: us.billofmaterials + arguments: {} + type: us.billofmaterials + uniqueness_constraints: + material_id: + unique_columns: + - material_id + shoe_id: + unique_columns: + - shoe_id + foreign_keys: {} + - name: us.factories + arguments: {} + type: us.factories + uniqueness_constraints: + factory_id: + unique_columns: + - factory_id + foreign_keys: {} + - name: us.productionorders + arguments: {} + type: us.productionorders + uniqueness_constraints: + order_id: + unique_columns: + - order_id + foreign_keys: {} + - name: us.rawmaterials + arguments: {} + type: us.rawmaterials + uniqueness_constraints: + material_id: + unique_columns: + - material_id + foreign_keys: {} + - name: us.shipments + arguments: {} + type: us.shipments + uniqueness_constraints: + shipment_id: + unique_columns: + - shipment_id + foreign_keys: {} + - name: us.shoes + arguments: {} + type: us.shoes + uniqueness_constraints: + shoe_id: + unique_columns: + - shoe_id + foreign_keys: {} + - name: us.suppliermaterials + arguments: {} + type: us.suppliermaterials + uniqueness_constraints: + material_id: + unique_columns: + - material_id + supplier_id: + unique_columns: + - supplier_id + foreign_keys: {} + - name: us.suppliers + arguments: {} + type: us.suppliers + uniqueness_constraints: + supplier_id: + unique_columns: + - supplier_id + foreign_keys: {} + - name: us.warehouses + arguments: {} + type: us.warehouses + uniqueness_constraints: + warehouse_id: + unique_columns: + - warehouse_id + foreign_keys: {} + functions: [] + procedures: [] + capabilities: + version: 0.1.6 + capabilities: + query: + aggregates: {} + variables: {} + mutation: {} diff --git a/hasura/industry/sco/scms/metadata/us_billofmaterials.hml b/hasura/industry/sco/scms/metadata/us_billofmaterials.hml new file mode 100644 index 00000000..466ad9c7 --- /dev/null +++ b/hasura/industry/sco/scms/metadata/us_billofmaterials.hml @@ -0,0 +1,144 @@ +--- +kind: ObjectType +version: v1 +definition: + name: us_billofmaterials + fields: + - name: material_id + description: Identifies the specific raw material needed + type: integer! + - name: quantity_required + description: The amount of the material needed for one shoe + type: numeric + - name: shoe_id + description: References the shoe model this bill of materials is for + type: integer! + graphql: + typeName: SCMS_us_billofmaterials + inputTypeName: SCMS_us_billofmaterials_input + dataConnectorTypeMapping: + - dataConnectorName: scms_postgres + dataConnectorObjectType: us.billofmaterials + +--- +kind: TypePermissions +version: v1 +definition: + typeName: us_billofmaterials + permissions: + - role: admin + output: + allowedFields: + - material_id + - quantity_required + - shoe_id + +--- +kind: BooleanExpressionType +version: v1 +definition: + name: us_billofmaterials_bool_exp + operand: + object: + type: us_billofmaterials + comparableFields: + - fieldName: material_id + booleanExpressionType: integer_bool_exp + - fieldName: quantity_required + booleanExpressionType: numeric_bool_exp + - fieldName: shoe_id + booleanExpressionType: integer_bool_exp + comparableRelationships: [] + logicalOperators: + enable: true + isNull: + enable: true + graphql: + typeName: SCMS_us_billofmaterials_bool_exp + +--- +kind: AggregateExpression +version: v1 +definition: + name: us_billofmaterials_agg_exp + operand: + object: + aggregatedType: us_billofmaterials + aggregatableFields: + - fieldName: material_id + aggregateExpression: integer_agg_exp + - fieldName: quantity_required + aggregateExpression: numeric_agg_exp + - fieldName: shoe_id + aggregateExpression: integer_agg_exp + count: + enable: true + graphql: + selectTypeName: SCMS_us_billofmaterials_agg_exp + +--- +kind: OrderByExpression +version: v1 +definition: + name: us_billofmaterials_order_by_exp + operand: + object: + orderedType: us_billofmaterials + orderableFields: + - fieldName: material_id + orderByExpression: integer_order_by_exp + - fieldName: quantity_required + orderByExpression: numeric_order_by_exp + - fieldName: shoe_id + orderByExpression: integer_order_by_exp + orderableRelationships: [] + graphql: + expressionTypeName: SCMS_us_billofmaterials_order_by_exp + +--- +kind: Model +version: v2 +definition: + name: us_billofmaterials + description: > + A detailed breakdown of materials required to manufacture each shoe model. This table establishes the relationship between shoes and their required raw materials. + objectType: us_billofmaterials + source: + dataConnectorName: scms_postgres + collection: us.billofmaterials + filterExpressionType: us_billofmaterials_bool_exp + aggregateExpression: us_billofmaterials_agg_exp + orderByExpression: us_billofmaterials_order_by_exp + graphql: + selectMany: + queryRootField: scmsus_billofmaterials + subscription: + rootField: scmsus_billofmaterials + selectUniques: + - queryRootField: scmsus_billofmaterials_by_material_id + uniqueIdentifier: + - material_id + subscription: + rootField: scmsus_billofmaterials_by_material_id + - queryRootField: scmsus_billofmaterials_by_shoe_id + uniqueIdentifier: + - shoe_id + subscription: + rootField: scmsus_billofmaterials_by_shoe_id + filterInputTypeName: SCMS_us_billofmaterials_filter_input + aggregate: + queryRootField: scmsus_billofmaterials_aggregate + subscription: + rootField: scmsus_billofmaterials_aggregate + +--- +kind: ModelPermissions +version: v1 +definition: + modelName: us_billofmaterials + permissions: + - role: admin + select: + filter: null + allowSubscriptions: true + diff --git a/hasura/industry/sco/scms/metadata/us_factories.hml b/hasura/industry/sco/scms/metadata/us_factories.hml new file mode 100644 index 00000000..1e3b56dc --- /dev/null +++ b/hasura/industry/sco/scms/metadata/us_factories.hml @@ -0,0 +1,149 @@ +--- +kind: ObjectType +version: v1 +definition: + name: us_factories + fields: + - name: capacity + description: Production capacity of the factory (likely in units per month) + type: integer + - name: factory_id + description: Unique identifier for each factory + type: integer! + - name: location + description: Geographic location of the factory + type: character_varying + - name: name + description: The name of the factory + type: character_varying + graphql: + typeName: SCMS_us_factories + inputTypeName: SCMS_us_factories_input + dataConnectorTypeMapping: + - dataConnectorName: scms_postgres + dataConnectorObjectType: us.factories + +--- +kind: TypePermissions +version: v1 +definition: + typeName: us_factories + permissions: + - role: admin + output: + allowedFields: + - capacity + - factory_id + - location + - name + +--- +kind: BooleanExpressionType +version: v1 +definition: + name: us_factories_bool_exp + operand: + object: + type: us_factories + comparableFields: + - fieldName: capacity + booleanExpressionType: integer_bool_exp + - fieldName: factory_id + booleanExpressionType: integer_bool_exp + - fieldName: location + booleanExpressionType: character_varying_bool_exp + - fieldName: name + booleanExpressionType: character_varying_bool_exp + comparableRelationships: [] + logicalOperators: + enable: true + isNull: + enable: true + graphql: + typeName: SCMS_us_factories_bool_exp + +--- +kind: AggregateExpression +version: v1 +definition: + name: us_factories_agg_exp + operand: + object: + aggregatedType: us_factories + aggregatableFields: + - fieldName: capacity + aggregateExpression: integer_agg_exp + - fieldName: factory_id + aggregateExpression: integer_agg_exp + - fieldName: location + aggregateExpression: character_varying_agg_exp + - fieldName: name + aggregateExpression: character_varying_agg_exp + count: + enable: true + graphql: + selectTypeName: SCMS_us_factories_agg_exp + +--- +kind: OrderByExpression +version: v1 +definition: + name: us_factories_order_by_exp + operand: + object: + orderedType: us_factories + orderableFields: + - fieldName: capacity + orderByExpression: integer_order_by_exp + - fieldName: factory_id + orderByExpression: integer_order_by_exp + - fieldName: location + orderByExpression: character_varying_order_by_exp + - fieldName: name + orderByExpression: character_varying_order_by_exp + orderableRelationships: [] + graphql: + expressionTypeName: SCMS_us_factories_order_by_exp + +--- +kind: Model +version: v2 +definition: + name: us_factories + description: > + Manufacturing facilities information where shoes are produced. + objectType: us_factories + source: + dataConnectorName: scms_postgres + collection: us.factories + filterExpressionType: us_factories_bool_exp + aggregateExpression: us_factories_agg_exp + orderByExpression: us_factories_order_by_exp + graphql: + selectMany: + queryRootField: scmsus_factories + subscription: + rootField: scmsus_factories + selectUniques: + - queryRootField: scmsus_factories_by_factory_id + uniqueIdentifier: + - factory_id + subscription: + rootField: scmsus_factories_by_factory_id + filterInputTypeName: SCMS_us_factories_filter_input + aggregate: + queryRootField: scmsus_factories_aggregate + subscription: + rootField: scmsus_factories_aggregate + +--- +kind: ModelPermissions +version: v1 +definition: + modelName: us_factories + permissions: + - role: admin + select: + filter: null + allowSubscriptions: true + diff --git a/hasura/industry/sco/scms/metadata/us_productionorders.hml b/hasura/industry/sco/scms/metadata/us_productionorders.hml new file mode 100644 index 00000000..6eec623b --- /dev/null +++ b/hasura/industry/sco/scms/metadata/us_productionorders.hml @@ -0,0 +1,169 @@ +--- +kind: ObjectType +version: v1 +definition: + name: us_productionorders + fields: + - name: expected_completion + type: date + description: Planned completion date + - name: factory_id + description: The factory responsible for this production run + type: integer + - name: order_id + description: Unique identifier for each production order + type: integer! + - name: quantity + description: Number of shoes to be manufactured + type: integer + - name: shoe_id + description: The shoe model being produced + type: integer + - name: start_date + description: When production begins + type: date + graphql: + typeName: SCMS_us_productionorders + inputTypeName: SCMS_us_productionorders_input + dataConnectorTypeMapping: + - dataConnectorName: scms_postgres + dataConnectorObjectType: us.productionorders + +--- +kind: TypePermissions +version: v1 +definition: + typeName: us_productionorders + permissions: + - role: admin + output: + allowedFields: + - expected_completion + - factory_id + - order_id + - quantity + - shoe_id + - start_date + +--- +kind: BooleanExpressionType +version: v1 +definition: + name: us_productionorders_bool_exp + operand: + object: + type: us_productionorders + comparableFields: + - fieldName: expected_completion + booleanExpressionType: date_bool_exp + - fieldName: factory_id + booleanExpressionType: integer_bool_exp + - fieldName: order_id + booleanExpressionType: integer_bool_exp + - fieldName: quantity + booleanExpressionType: integer_bool_exp + - fieldName: shoe_id + booleanExpressionType: integer_bool_exp + - fieldName: start_date + booleanExpressionType: date_bool_exp + comparableRelationships: [] + logicalOperators: + enable: true + isNull: + enable: true + graphql: + typeName: SCMS_us_productionorders_bool_exp + +--- +kind: AggregateExpression +version: v1 +definition: + name: us_productionorders_agg_exp + operand: + object: + aggregatedType: us_productionorders + aggregatableFields: + - fieldName: expected_completion + aggregateExpression: date_agg_exp + - fieldName: factory_id + aggregateExpression: integer_agg_exp + - fieldName: order_id + aggregateExpression: integer_agg_exp + - fieldName: quantity + aggregateExpression: integer_agg_exp + - fieldName: shoe_id + aggregateExpression: integer_agg_exp + - fieldName: start_date + aggregateExpression: date_agg_exp + count: + enable: true + graphql: + selectTypeName: SCMS_us_productionorders_agg_exp + +--- +kind: OrderByExpression +version: v1 +definition: + name: us_productionorders_order_by_exp + operand: + object: + orderedType: us_productionorders + orderableFields: + - fieldName: expected_completion + orderByExpression: date_order_by_exp + - fieldName: factory_id + orderByExpression: integer_order_by_exp + - fieldName: order_id + orderByExpression: integer_order_by_exp + - fieldName: quantity + orderByExpression: integer_order_by_exp + - fieldName: shoe_id + orderByExpression: integer_order_by_exp + - fieldName: start_date + orderByExpression: date_order_by_exp + orderableRelationships: [] + graphql: + expressionTypeName: SCMS_us_productionorders_order_by_exp + +--- +kind: Model +version: v2 +definition: + name: us_productionorders + description: > + Tracks manufacturing orders for shoes at specific factories. + objectType: us_productionorders + source: + dataConnectorName: scms_postgres + collection: us.productionorders + filterExpressionType: us_productionorders_bool_exp + aggregateExpression: us_productionorders_agg_exp + orderByExpression: us_productionorders_order_by_exp + graphql: + selectMany: + queryRootField: scmsus_productionorders + subscription: + rootField: scmsus_productionorders + selectUniques: + - queryRootField: scmsus_productionorders_by_order_id + uniqueIdentifier: + - order_id + subscription: + rootField: scmsus_productionorders_by_order_id + filterInputTypeName: SCMS_us_productionorders_filter_input + aggregate: + queryRootField: scmsus_productionorders_aggregate + subscription: + rootField: scmsus_productionorders_aggregate + +--- +kind: ModelPermissions +version: v1 +definition: + modelName: us_productionorders + permissions: + - role: admin + select: + filter: null + allowSubscriptions: true + diff --git a/hasura/industry/sco/scms/metadata/us_rawmaterials.hml b/hasura/industry/sco/scms/metadata/us_rawmaterials.hml new file mode 100644 index 00000000..f20349e4 --- /dev/null +++ b/hasura/industry/sco/scms/metadata/us_rawmaterials.hml @@ -0,0 +1,149 @@ +--- +kind: ObjectType +version: v1 +definition: + name: us_rawmaterials + fields: + - name: cost_per_unit + description: Price per unit of the material in USD + type: numeric + - name: material_id + description: Unique identifier for each material + type: integer! + - name: name + description: Name/description of the material + type: character_varying! + - name: unit + description: Unit of measurement (e.g., meters, kilograms) + type: character_varying + graphql: + typeName: SCMS_us_rawmaterials + inputTypeName: SCMS_us_rawmaterials_input + dataConnectorTypeMapping: + - dataConnectorName: scms_postgres + dataConnectorObjectType: us.rawmaterials + +--- +kind: TypePermissions +version: v1 +definition: + typeName: us_rawmaterials + permissions: + - role: admin + output: + allowedFields: + - cost_per_unit + - material_id + - name + - unit + +--- +kind: BooleanExpressionType +version: v1 +definition: + name: us_rawmaterials_bool_exp + operand: + object: + type: us_rawmaterials + comparableFields: + - fieldName: cost_per_unit + booleanExpressionType: numeric_bool_exp + - fieldName: material_id + booleanExpressionType: integer_bool_exp + - fieldName: name + booleanExpressionType: character_varying_bool_exp + - fieldName: unit + booleanExpressionType: character_varying_bool_exp + comparableRelationships: [] + logicalOperators: + enable: true + isNull: + enable: true + graphql: + typeName: SCMS_us_rawmaterials_bool_exp + +--- +kind: AggregateExpression +version: v1 +definition: + name: us_rawmaterials_agg_exp + operand: + object: + aggregatedType: us_rawmaterials + aggregatableFields: + - fieldName: cost_per_unit + aggregateExpression: numeric_agg_exp + - fieldName: material_id + aggregateExpression: integer_agg_exp + - fieldName: name + aggregateExpression: character_varying_agg_exp + - fieldName: unit + aggregateExpression: character_varying_agg_exp + count: + enable: true + graphql: + selectTypeName: SCMS_us_rawmaterials_agg_exp + +--- +kind: OrderByExpression +version: v1 +definition: + name: us_rawmaterials_order_by_exp + operand: + object: + orderedType: us_rawmaterials + orderableFields: + - fieldName: cost_per_unit + orderByExpression: numeric_order_by_exp + - fieldName: material_id + orderByExpression: integer_order_by_exp + - fieldName: name + orderByExpression: character_varying_order_by_exp + - fieldName: unit + orderByExpression: character_varying_order_by_exp + orderableRelationships: [] + graphql: + expressionTypeName: SCMS_us_rawmaterials_order_by_exp + +--- +kind: Model +version: v2 +definition: + name: us_rawmaterials + description: > + Catalog of raw materials used in shoe manufacturing. + objectType: us_rawmaterials + source: + dataConnectorName: scms_postgres + collection: us.rawmaterials + filterExpressionType: us_rawmaterials_bool_exp + aggregateExpression: us_rawmaterials_agg_exp + orderByExpression: us_rawmaterials_order_by_exp + graphql: + selectMany: + queryRootField: scmsus_rawmaterials + subscription: + rootField: scmsus_rawmaterials + selectUniques: + - queryRootField: scmsus_rawmaterials_by_material_id + uniqueIdentifier: + - material_id + subscription: + rootField: scmsus_rawmaterials_by_material_id + filterInputTypeName: SCMS_us_rawmaterials_filter_input + aggregate: + queryRootField: scmsus_rawmaterials_aggregate + subscription: + rootField: scmsus_rawmaterials_aggregate + +--- +kind: ModelPermissions +version: v1 +definition: + modelName: us_rawmaterials + permissions: + - role: admin + select: + filter: null + allowSubscriptions: true + diff --git a/hasura/industry/sco/scms/metadata/us_shipments.hml b/hasura/industry/sco/scms/metadata/us_shipments.hml new file mode 100644 index 00000000..59bd032c --- /dev/null +++ b/hasura/industry/sco/scms/metadata/us_shipments.hml @@ -0,0 +1,169 @@ +--- +kind: ObjectType +version: v1 +definition: + name: us_shipments + fields: + - name: arrival_date + description: When the shipment reached/will reach the warehouse + type: date + - name: order_id + description: References the production order being shipped + type: integer + - name: quantity + description: Number of units being shipped + type: integer + - name: shipment_id + description: Unique identifier for each shipment + type: integer! + - name: shipped_date + description: When the shipment left the factory + type: date + - name: warehouse_id + description: Destination warehouse + type: integer + graphql: + typeName: SCMS_us_shipments + inputTypeName: SCMS_us_shipments_input + dataConnectorTypeMapping: + - dataConnectorName: scms_postgres + dataConnectorObjectType: us.shipments + +--- +kind: TypePermissions +version: v1 +definition: + typeName: us_shipments + permissions: + - role: admin + output: + allowedFields: + - arrival_date + - order_id + - quantity + - shipment_id + - shipped_date + - warehouse_id + +--- +kind: BooleanExpressionType +version: v1 +definition: + name: us_shipments_bool_exp + operand: + object: + type: us_shipments + comparableFields: + - fieldName: arrival_date + booleanExpressionType: date_bool_exp + - fieldName: order_id + booleanExpressionType: integer_bool_exp + - fieldName: quantity + booleanExpressionType: integer_bool_exp + - fieldName: shipment_id + booleanExpressionType: integer_bool_exp + - fieldName: shipped_date + booleanExpressionType: date_bool_exp + - fieldName: warehouse_id + booleanExpressionType: integer_bool_exp + comparableRelationships: [] + logicalOperators: + enable: true + isNull: + enable: true + graphql: + typeName: SCMS_us_shipments_bool_exp + +--- +kind: AggregateExpression +version: v1 +definition: + name: us_shipments_agg_exp + operand: + object: + aggregatedType: us_shipments + aggregatableFields: + - fieldName: arrival_date + aggregateExpression: date_agg_exp + - fieldName: order_id + aggregateExpression: integer_agg_exp + - fieldName: quantity + aggregateExpression: integer_agg_exp + - fieldName: shipment_id + aggregateExpression: integer_agg_exp + - fieldName: shipped_date + aggregateExpression: date_agg_exp + - fieldName: warehouse_id + aggregateExpression: integer_agg_exp + count: + enable: true + graphql: + selectTypeName: SCMS_us_shipments_agg_exp + +--- +kind: OrderByExpression +version: v1 +definition: + name: us_shipments_order_by_exp + operand: + object: + orderedType: us_shipments + orderableFields: + - fieldName: arrival_date + orderByExpression: date_order_by_exp + - fieldName: order_id + orderByExpression: integer_order_by_exp + - fieldName: quantity + orderByExpression: integer_order_by_exp + - fieldName: shipment_id + orderByExpression: integer_order_by_exp + - fieldName: shipped_date + orderByExpression: date_order_by_exp + - fieldName: warehouse_id + orderByExpression: integer_order_by_exp + orderableRelationships: [] + graphql: + expressionTypeName: SCMS_us_shipments_order_by_exp + +--- +kind: Model +version: v2 +definition: + name: us_shipments + description: > + Tracks movement of finished products from factories to warehouses. + objectType: us_shipments + source: + dataConnectorName: scms_postgres + collection: us.shipments + filterExpressionType: us_shipments_bool_exp + aggregateExpression: us_shipments_agg_exp + orderByExpression: us_shipments_order_by_exp + graphql: + selectMany: + queryRootField: scmsus_shipments + subscription: + rootField: scmsus_shipments + selectUniques: + - queryRootField: scmsus_shipments_by_shipment_id + uniqueIdentifier: + - shipment_id + subscription: + rootField: scmsus_shipments_by_shipment_id + filterInputTypeName: SCMS_us_shipments_filter_input + aggregate: + queryRootField: scmsus_shipments_aggregate + subscription: + rootField: scmsus_shipments_aggregate + +--- +kind: ModelPermissions +version: v1 +definition: + modelName: us_shipments + permissions: + - role: admin + select: + filter: null + allowSubscriptions: true + diff --git a/hasura/industry/sco/scms/metadata/us_shoes.hml b/hasura/industry/sco/scms/metadata/us_shoes.hml new file mode 100644 index 00000000..e93fddec --- /dev/null +++ b/hasura/industry/sco/scms/metadata/us_shoes.hml @@ -0,0 +1,149 @@ +--- +kind: ObjectType +version: v1 +definition: + name: us_shoes + fields: + - name: category + description: Type/category of the shoe (e.g., Hiking, Running) + type: character_varying + - name: model_name + description: Name of the shoe model + type: character_varying + - name: release_date + description: When the shoe model was/will be released + type: date + - name: shoe_id + description: Unique identifier for each shoe model + type: integer! + graphql: + typeName: SCMS_us_shoes + inputTypeName: SCMS_us_shoes_input + dataConnectorTypeMapping: + - dataConnectorName: scms_postgres + dataConnectorObjectType: us.shoes + +--- +kind: TypePermissions +version: v1 +definition: + typeName: us_shoes + permissions: + - role: admin + output: + allowedFields: + - category + - model_name + - release_date + - shoe_id + +--- +kind: BooleanExpressionType +version: v1 +definition: + name: us_shoes_bool_exp + operand: + object: + type: us_shoes + comparableFields: + - fieldName: category + booleanExpressionType: character_varying_bool_exp + - fieldName: model_name + booleanExpressionType: character_varying_bool_exp + - fieldName: release_date + booleanExpressionType: date_bool_exp + - fieldName: shoe_id + booleanExpressionType: integer_bool_exp + comparableRelationships: [] + logicalOperators: + enable: true + isNull: + enable: true + graphql: + typeName: SCMS_us_shoes_bool_exp + +--- +kind: AggregateExpression +version: v1 +definition: + name: us_shoes_agg_exp + operand: + object: + aggregatedType: us_shoes + aggregatableFields: + - fieldName: category + aggregateExpression: character_varying_agg_exp + - fieldName: model_name + aggregateExpression: character_varying_agg_exp + - fieldName: release_date + aggregateExpression: date_agg_exp + - fieldName: shoe_id + aggregateExpression: integer_agg_exp + count: + enable: true + graphql: + selectTypeName: SCMS_us_shoes_agg_exp + +--- +kind: OrderByExpression +version: v1 +definition: + name: us_shoes_order_by_exp + operand: + object: + orderedType: us_shoes + orderableFields: + - fieldName: category + orderByExpression: character_varying_order_by_exp + - fieldName: model_name + orderByExpression: character_varying_order_by_exp + - fieldName: release_date + orderByExpression: date_order_by_exp + - fieldName: shoe_id + orderByExpression: integer_order_by_exp + orderableRelationships: [] + graphql: + expressionTypeName: SCMS_us_shoes_order_by_exp + +--- +kind: Model +version: v2 +definition: + name: us_shoes + description: > + Master catalog of shoe models. + objectType: us_shoes + source: + dataConnectorName: scms_postgres + collection: us.shoes + filterExpressionType: us_shoes_bool_exp + aggregateExpression: us_shoes_agg_exp + orderByExpression: us_shoes_order_by_exp + graphql: + selectMany: + queryRootField: scmsus_shoes + subscription: + rootField: scmsus_shoes + selectUniques: + - queryRootField: scmsus_shoes_by_shoe_id + uniqueIdentifier: + - shoe_id + subscription: + rootField: scmsus_shoes_by_shoe_id + filterInputTypeName: SCMS_us_shoes_filter_input + aggregate: + queryRootField: scmsus_shoes_aggregate + subscription: + rootField: scmsus_shoes_aggregate + +--- +kind: ModelPermissions +version: v1 +definition: + modelName: us_shoes + permissions: + - role: admin + select: + filter: null + allowSubscriptions: true + diff --git a/hasura/industry/sco/scms/metadata/us_suppliermaterials.hml b/hasura/industry/sco/scms/metadata/us_suppliermaterials.hml new file mode 100644 index 00000000..457a51da --- /dev/null +++ b/hasura/industry/sco/scms/metadata/us_suppliermaterials.hml @@ -0,0 +1,144 @@ +--- +kind: ObjectType +version: v1 +definition: + name: us_suppliermaterials + fields: + - name: lead_time_days + description: Expected time between ordering and delivery + type: integer + - name: material_id + description: References the raw material + type: integer! + - name: supplier_id + description: References the supplier + type: integer! + graphql: + typeName: SCMS_us_suppliermaterials + inputTypeName: SCMS_us_suppliermaterials_input + dataConnectorTypeMapping: + - dataConnectorName: scms_postgres + dataConnectorObjectType: us.suppliermaterials + +--- +kind: TypePermissions +version: v1 +definition: + typeName: us_suppliermaterials + permissions: + - role: admin + output: + allowedFields: + - lead_time_days + - material_id + - supplier_id + +--- +kind: BooleanExpressionType +version: v1 +definition: + name: us_suppliermaterials_bool_exp + operand: + object: + type: us_suppliermaterials + comparableFields: + - fieldName: lead_time_days + booleanExpressionType: integer_bool_exp + - fieldName: material_id + booleanExpressionType: integer_bool_exp + - fieldName: supplier_id + booleanExpressionType: integer_bool_exp + comparableRelationships: [] + logicalOperators: + enable: true + isNull: + enable: true + graphql: + typeName: SCMS_us_suppliermaterials_bool_exp + +--- +kind: AggregateExpression +version: v1 +definition: + name: us_suppliermaterials_agg_exp + operand: + object: + aggregatedType: us_suppliermaterials + aggregatableFields: + - fieldName: lead_time_days + aggregateExpression: integer_agg_exp + - fieldName: material_id + aggregateExpression: integer_agg_exp + - fieldName: supplier_id + aggregateExpression: integer_agg_exp + count: + enable: true + graphql: + selectTypeName: SCMS_us_suppliermaterials_agg_exp + +--- +kind: OrderByExpression +version: v1 +definition: + name: us_suppliermaterials_order_by_exp + operand: + object: + orderedType: us_suppliermaterials + orderableFields: + - fieldName: lead_time_days + orderByExpression: integer_order_by_exp + - fieldName: material_id + orderByExpression: integer_order_by_exp + - fieldName: supplier_id + orderByExpression: integer_order_by_exp + orderableRelationships: [] + graphql: + expressionTypeName: SCMS_us_suppliermaterials_order_by_exp + +--- +kind: Model +version: v2 +definition: + name: us_suppliermaterials + description: > + Links suppliers to the raw materials they can provide. + objectType: us_suppliermaterials + source: + dataConnectorName: scms_postgres + collection: us.suppliermaterials + filterExpressionType: us_suppliermaterials_bool_exp + aggregateExpression: us_suppliermaterials_agg_exp + orderByExpression: us_suppliermaterials_order_by_exp + graphql: + selectMany: + queryRootField: scmsus_suppliermaterials + subscription: + rootField: scmsus_suppliermaterials + selectUniques: + - queryRootField: scmsus_suppliermaterials_by_material_id + uniqueIdentifier: + - material_id + subscription: + rootField: scmsus_suppliermaterials_by_material_id + - queryRootField: scmsus_suppliermaterials_by_supplier_id + uniqueIdentifier: + - supplier_id + subscription: + rootField: scmsus_suppliermaterials_by_supplier_id + filterInputTypeName: SCMS_us_suppliermaterials_filter_input + aggregate: + queryRootField: scmsus_suppliermaterials_aggregate + subscription: + rootField: scmsus_suppliermaterials_aggregate + +--- +kind: ModelPermissions +version: v1 +definition: + modelName: us_suppliermaterials + permissions: + - role: admin + select: + filter: null + allowSubscriptions: true + diff --git a/hasura/industry/sco/scms/metadata/us_suppliers.hml b/hasura/industry/sco/scms/metadata/us_suppliers.hml new file mode 100644 index 00000000..4ab817e3 --- /dev/null +++ b/hasura/industry/sco/scms/metadata/us_suppliers.hml @@ -0,0 +1,150 @@ +--- +kind: ObjectType +version: v1 +definition: + name: us_suppliers + fields: + - name: contact_email + description: Primary contact email address + type: character_varying + - name: country + description: Country where supplier is based + + type: character_varying + - name: name + description: Company name of the supplier + type: character_varying! + - name: supplier_id + description: Unique identifier for each supplier + type: integer! + graphql: + typeName: SCMS_us_suppliers + inputTypeName: SCMS_us_suppliers_input + dataConnectorTypeMapping: + - dataConnectorName: scms_postgres + dataConnectorObjectType: us.suppliers + +--- +kind: TypePermissions +version: v1 +definition: + typeName: us_suppliers + permissions: + - role: admin + output: + allowedFields: + - contact_email + - country + - name + - supplier_id + +--- +kind: BooleanExpressionType +version: v1 +definition: + name: us_suppliers_bool_exp + operand: + object: + type: us_suppliers + comparableFields: + - fieldName: contact_email + booleanExpressionType: character_varying_bool_exp + - fieldName: country + booleanExpressionType: character_varying_bool_exp + - fieldName: name + booleanExpressionType: character_varying_bool_exp + - fieldName: supplier_id + booleanExpressionType: integer_bool_exp + comparableRelationships: [] + logicalOperators: + enable: true + isNull: + enable: true + graphql: + typeName: SCMS_us_suppliers_bool_exp + +--- +kind: AggregateExpression +version: v1 +definition: + name: us_suppliers_agg_exp + operand: + object: + aggregatedType: us_suppliers + aggregatableFields: + - fieldName: contact_email + aggregateExpression: character_varying_agg_exp + - fieldName: country + aggregateExpression: character_varying_agg_exp + - fieldName: name + aggregateExpression: character_varying_agg_exp + - fieldName: supplier_id + aggregateExpression: integer_agg_exp + count: + enable: true + graphql: + selectTypeName: SCMS_us_suppliers_agg_exp + +--- +kind: OrderByExpression +version: v1 +definition: + name: us_suppliers_order_by_exp + operand: + object: + orderedType: us_suppliers + orderableFields: + - fieldName: contact_email + orderByExpression: character_varying_order_by_exp + - fieldName: country + orderByExpression: character_varying_order_by_exp + - fieldName: name + orderByExpression: character_varying_order_by_exp + - fieldName: supplier_id + orderByExpression: integer_order_by_exp + orderableRelationships: [] + graphql: + expressionTypeName: SCMS_us_suppliers_order_by_exp + +--- +kind: Model +version: v2 +definition: + name: us_suppliers + description: > + Information about raw material suppliers. + objectType: us_suppliers + source: + dataConnectorName: scms_postgres + collection: us.suppliers + filterExpressionType: us_suppliers_bool_exp + aggregateExpression: us_suppliers_agg_exp + orderByExpression: us_suppliers_order_by_exp + graphql: + selectMany: + queryRootField: scmsus_suppliers + subscription: + rootField: scmsus_suppliers + selectUniques: + - queryRootField: scmsus_suppliers_by_supplier_id + uniqueIdentifier: + - supplier_id + subscription: + rootField: scmsus_suppliers_by_supplier_id + filterInputTypeName: SCMS_us_suppliers_filter_input + aggregate: + queryRootField: scmsus_suppliers_aggregate + subscription: + rootField: scmsus_suppliers_aggregate + +--- +kind: ModelPermissions +version: v1 +definition: + modelName: us_suppliers + permissions: + - role: admin + select: + filter: null + allowSubscriptions: true + diff --git a/hasura/industry/sco/scms/metadata/us_warehouses.hml b/hasura/industry/sco/scms/metadata/us_warehouses.hml new file mode 100644 index 00000000..8fdff040 --- /dev/null +++ b/hasura/industry/sco/scms/metadata/us_warehouses.hml @@ -0,0 +1,139 @@ +--- +kind: ObjectType +version: v1 +definition: + name: us_warehouses + fields: + - name: location + description: Geographic location of the warehouse + type: character_varying + - name: name + description: Name of the warehouse + type: character_varying + - name: warehouse_id + description: Unique identifier for each warehouse + type: integer! + graphql: + typeName: SCMS_us_warehouses + inputTypeName: SCMS_us_warehouses_input + dataConnectorTypeMapping: + - dataConnectorName: scms_postgres + dataConnectorObjectType: us.warehouses + +--- +kind: TypePermissions +version: v1 +definition: + typeName: us_warehouses + permissions: + - role: admin + output: + allowedFields: + - location + - name + - warehouse_id + +--- +kind: BooleanExpressionType +version: v1 +definition: + name: us_warehouses_bool_exp + operand: + object: + type: us_warehouses + comparableFields: + - fieldName: location + booleanExpressionType: character_varying_bool_exp + - fieldName: name + booleanExpressionType: character_varying_bool_exp + - fieldName: warehouse_id + booleanExpressionType: integer_bool_exp + comparableRelationships: [] + logicalOperators: + enable: true + isNull: + enable: true + graphql: + typeName: SCMS_us_warehouses_bool_exp + +--- +kind: AggregateExpression +version: v1 +definition: + name: us_warehouses_agg_exp + operand: + object: + aggregatedType: us_warehouses + aggregatableFields: + - fieldName: location + aggregateExpression: character_varying_agg_exp + - fieldName: name + aggregateExpression: character_varying_agg_exp + - fieldName: warehouse_id + aggregateExpression: integer_agg_exp + count: + enable: true + graphql: + selectTypeName: SCMS_us_warehouses_agg_exp + +--- +kind: OrderByExpression +version: v1 +definition: + name: us_warehouses_order_by_exp + operand: + object: + orderedType: us_warehouses + orderableFields: + - fieldName: location + orderByExpression: character_varying_order_by_exp + - fieldName: name + orderByExpression: character_varying_order_by_exp + - fieldName: warehouse_id + orderByExpression: integer_order_by_exp + orderableRelationships: [] + graphql: + expressionTypeName: SCMS_us_warehouses_order_by_exp + +--- +kind: Model +version: v2 +definition: + name: us_warehouses + description: > + Storage facilities for finished products. + objectType: us_warehouses + source: + dataConnectorName: scms_postgres + collection: us.warehouses + filterExpressionType: us_warehouses_bool_exp + aggregateExpression: us_warehouses_agg_exp + orderByExpression: us_warehouses_order_by_exp + graphql: + selectMany: + queryRootField: scmsus_warehouses + subscription: + rootField: scmsus_warehouses + selectUniques: + - queryRootField: scmsus_warehouses_by_warehouse_id + uniqueIdentifier: + - warehouse_id + subscription: + rootField: scmsus_warehouses_by_warehouse_id + filterInputTypeName: SCMS_us_warehouses_filter_input + aggregate: + queryRootField: scmsus_warehouses_aggregate + subscription: + rootField: scmsus_warehouses_aggregate + +--- +kind: ModelPermissions +version: v1 +definition: + modelName: us_warehouses + permissions: + - role: admin + select: + filter: null + allowSubscriptions: true + diff --git a/hasura/industry/sco/scms/subgraph.yaml b/hasura/industry/sco/scms/subgraph.yaml new file mode 100644 index 00000000..2081c6e2 --- /dev/null +++ b/hasura/industry/sco/scms/subgraph.yaml @@ -0,0 +1,21 @@ +kind: Subgraph +version: v2 +definition: + name: scms + generator: + rootPath: . + graphqlRootFieldPrefix: scms + graphqlTypeNamePrefix: SCMS_ + namingConvention: snake_case + includePaths: + - metadata + envMapping: + SCMS_SCMS_POSTGRES_AUTHORIZATION_HEADER: + fromEnv: SCMS_SCMS_POSTGRES_AUTHORIZATION_HEADER + SCMS_SCMS_POSTGRES_READ_URL: + fromEnv: SCMS_SCMS_POSTGRES_READ_URL + SCMS_SCMS_POSTGRES_WRITE_URL: + fromEnv: SCMS_SCMS_POSTGRES_WRITE_URL + connectors: + - path: connector/scms_postgres/connector.yaml + connectorLinkName: scms_postgres diff --git a/hasura/supergraph-config/sco/1-supergraph.yaml b/hasura/supergraph-config/sco/1-supergraph.yaml new file mode 100644 index 00000000..30df3aad --- /dev/null +++ b/hasura/supergraph-config/sco/1-supergraph.yaml @@ -0,0 +1,8 @@ +kind: Supergraph +version: v2 +definition: + subgraphs: + - ../../globals/subgraph-jwt.yaml + - ../../industry/sco/ecommerce/subgraph.yaml + - ../../industry/sco/operations/subgraph.yaml + - ../../industry/sco/scms/subgraph.yaml diff --git a/hasura/supergraph-config/sco/2-supergraph.yaml b/hasura/supergraph-config/sco/2-supergraph.yaml new file mode 100644 index 00000000..9c7ba677 --- /dev/null +++ b/hasura/supergraph-config/sco/2-supergraph.yaml @@ -0,0 +1,8 @@ +kind: Supergraph +version: v2 +definition: + subgraphs: + - ../../globals/subgraph-noauth.yaml + - ../../industry/sco/ecommerce/subgraph.yaml + - ../../industry/sco/operations/subgraph.yaml + - ../../industry/sco/scms/subgraph.yaml diff --git a/infra/ansible/master.yml b/infra/ansible/master.yml index 344ed570..355292e4 100644 --- a/infra/ansible/master.yml +++ b/infra/ansible/master.yml @@ -7,9 +7,3 @@ - name: Deploy Axiom with Dependencies import_playbook: playbooks/axiom.yml - -- name: Set up cron tasks - import_playbook: playbooks/cron.yml - -- name: Set up jsonapi - import_playbook: playbooks/jsonapi.yml diff --git a/infra/ansible/playbooks/jsonapi.yml b/infra/ansible/playbooks/jsonapi.yml deleted file mode 100644 index db240dfb..00000000 --- a/infra/ansible/playbooks/jsonapi.yml +++ /dev/null @@ -1,50 +0,0 @@ ---- -- name: Deploy Swagger UI with NGINX - tags: - - jsonapi - hosts: jsonapi - become: true - roles: - - role: geerlingguy.nginx - - vars: - nginx_remove_default_vhost: true - nginx_vhosts: - - listen: "80" - server_name: "{{ jsonapi_domain | default('jsonapi.local') }}" - root: "/var/www/jsonapi" - index: "index.html" - state: "present" - filename: "jsonapi.hasura-demo.com-http.conf" - - tasks: - - name: Ensure /var/www exists - ansible.builtin.file: - path: /var/www - owner: www-data - group: www-data - mode: "0755" - state: directory - - - name: Create directory for Swagger UI - ansible.builtin.file: - path: /var/www/jsonapi/ - owner: www-data - group: www-data - mode: "0755" - state: directory - - - name: Deploy Swagger UI template - ansible.builtin.template: - src: "{{ playbook_dir }}/templates/swagger.html.j2" - dest: /var/www/jsonapi/index.html - owner: www-data - group: www-data - mode: "0644" - notify: Restart NGINX - - handlers: - - name: Restart NGINX - ansible.builtin.service: - name: nginx - state: restarted diff --git a/infra/ansible/playbooks/templates/env_vars.j2 b/infra/ansible/playbooks/templates/env_vars.j2 index a9ce2eef..3ed1d45c 100644 --- a/infra/ansible/playbooks/templates/env_vars.j2 +++ b/infra/ansible/playbooks/templates/env_vars.j2 @@ -1,4 +1,3 @@ -CONTAINER_PREFIX={{ env_vars.CONTAINER_PREFIX }} MONGO_PASSWORD={{ env_vars.MONGO_PASSWORD }} POSTGRES_PASSWORD={{ env_vars.POSTGRES_PASSWORD }} CLICKHOUSE_PASSWORD={{ env_vars.CLICKHOUSE_PASSWORD }}