Primary and foreign keys only — full column lists and sample data are in the table browser below. Drag to pan, use the zoom buttons, or pick a table on the left.
erDiagram
audit__application_logs {
int log_id PK
}
audit__procedure_calls {
SERIAL call_id PK
}
audit__record_changes {
int change_id PK
int changed_by FK
}
audit__refund_failures {
SERIAL failure_id PK
}
audit__refund_log {
SERIAL refund_id PK
}
call_center__calls {
int call_id PK
int customer_id FK
int agent_id FK
}
call_center__transcripts {
int transcript_id PK
int call_id FK
}
core__dim_brand {
int brand_id PK
int category_id FK
}
core__dim_category {
int category_id PK
}
core__dim_date {
date date_key PK
}
core__dim_department {
int dept_id PK
}
core__dim_expense_category {
int exp_cat_id PK
}
core__dim_region {
int region_id PK
}
customers__addresses {
int address_id PK
int customer_id FK
}
customers__customers {
int customer_id PK
}
customers__loyalty_points {
int loyalty_id PK
int customer_id FK
}
customers__reviews {
int review_id PK
int customer_id FK
int product_id FK
}
customers__wallets {
SERIAL wallet_id PK
INT cust_id FK
}
finance__accounts {
SERIAL account_id PK
}
finance__expenses {
int expense_id PK
int exp_cat_id FK
}
finance__payment_modes {
SERIAL mode_id PK
}
finance__payments {
INT payment_id PK
INT order_id FK
}
finance__revenue_summary {
int summary_id PK
}
finance__transfer_log {
SERIAL transfer_id PK
INT from_account FK
INT to_account FK
}
hr__attendance {
int attendance_id PK
int employee_id FK
}
hr__salary_history {
int payment_id PK
int employee_id FK
}
loyalty__members {
int customer_id PK
int tier_id FK
}
loyalty__redemptions {
int redemption_id PK
int customer_id FK
}
loyalty__tiers {
int tier_id PK
}
manufacture__production_lines {
int line_id PK
}
manufacture__work_orders {
int work_order_id PK
int product_id FK
int line_id FK
}
marketing__ads_spend {
int spend_id PK
int campaign_id FK
}
marketing__campaigns {
int campaign_id PK
}
marketing__email_clicks {
int email_id PK
int campaign_id FK
}
payroll__pay_slips {
int pay_slip_id PK
int employee_id FK
}
products__inventory {
int store_id FK
int product_id FK
}
products__products {
int product_id PK
int brand_id FK
int supplier_id FK
}
products__promotions {
int promo_id PK
}
products__suppliers {
int supplier_id PK
}
sales__order_items {
int order_item_id PK
int order_id FK
int prod_id FK
}
sales__orders {
int order_id PK
int cust_id FK
int store_id FK
}
sales__payments {
int payment_id PK
int order_id FK
}
sales__returns {
int return_id PK
int order_id FK
int prod_id FK
}
sales__shipments {
int shipment_id PK
int order_id FK
}
stores__employees {
int employee_id PK
int store_id FK
int dept_id FK
}
stores__expenses {
int store_expense_id PK
int store_id FK
}
stores__stores {
int store_id PK
int region_id FK
}
supply_chain__inventory_snapshots {
int warehouse_id FK
int product_id FK
}
supply_chain__shipments {
int shipment_id PK
int supplier_id FK
int warehouse_id FK
int product_id FK
}
supply_chain__warehouses {
int warehouse_id PK
}
support__tickets {
int ticket_id PK
int customer_id FK
int agent_id FK
}
web_events__events {
int event_id PK
int view_id FK
}
web_events__page_views {
int view_id PK
int customer_id FK
}
core__dim_category ||--o{ core__dim_brand : "category_id"
core__dim_region ||--o{ stores__stores : "region_id"
stores__stores ||--o{ stores__employees : "store_id"
core__dim_department ||--o{ stores__employees : "dept_id"
stores__stores ||--o{ stores__expenses : "store_id"
core__dim_brand ||--o{ products__products : "brand_id"
products__suppliers ||--o{ products__products : "supplier_id"
stores__stores ||--o{ products__inventory : "store_id"
products__products ||--o{ products__inventory : "product_id"
customers__customers ||--o{ customers__addresses : "customer_id"
customers__customers ||--o{ customers__reviews : "customer_id"
products__products ||--o{ customers__reviews : "product_id"
customers__customers ||--o{ customers__loyalty_points : "customer_id"
customers__customers ||--o{ sales__orders : "cust_id"
stores__stores ||--o{ sales__orders : "store_id"
sales__orders ||--o{ sales__order_items : "order_id"
products__products ||--o{ sales__order_items : "prod_id"
sales__orders ||--o{ sales__payments : "order_id"
sales__orders ||--o{ sales__shipments : "order_id"
sales__orders ||--o{ sales__returns : "order_id"
products__products ||--o{ sales__returns : "prod_id"
core__dim_expense_category ||--o{ finance__expenses : "exp_cat_id"
stores__employees ||--o{ hr__attendance : "employee_id"
stores__employees ||--o{ hr__salary_history : "employee_id"
marketing__campaigns ||--o{ marketing__ads_spend : "campaign_id"
marketing__campaigns ||--o{ marketing__email_clicks : "campaign_id"
customers__customers ||--o{ support__tickets : "customer_id"
stores__employees ||--o{ support__tickets : "agent_id"
customers__customers ||--o{ web_events__page_views : "customer_id"
web_events__page_views ||--o{ web_events__events : "view_id"
products__suppliers ||--o{ supply_chain__shipments : "supplier_id"
supply_chain__warehouses ||--o{ supply_chain__shipments : "warehouse_id"
products__products ||--o{ supply_chain__shipments : "product_id"
supply_chain__warehouses ||--o{ supply_chain__inventory_snapshots : "warehouse_id"
products__products ||--o{ supply_chain__inventory_snapshots : "product_id"
customers__customers ||--o{ loyalty__members : "customer_id"
loyalty__tiers ||--o{ loyalty__members : "tier_id"
customers__customers ||--o{ loyalty__redemptions : "customer_id"
products__products ||--o{ manufacture__work_orders : "product_id"
manufacture__production_lines ||--o{ manufacture__work_orders : "line_id"
stores__employees ||--o{ payroll__pay_slips : "employee_id"
customers__customers ||--o{ call_center__calls : "customer_id"
stores__employees ||--o{ call_center__calls : "agent_id"
call_center__calls ||--o{ call_center__transcripts : "call_id"
stores__employees ||--o{ audit__record_changes : "changed_by"
finance__accounts ||--o{ finance__transfer_log : "from_account"
finance__accounts ||--o{ finance__transfer_log : "to_account"
sales__orders ||--o{ finance__payments : "order_id"
customers__customers ||--o{ customers__wallets : "cust_id"| request_id | timestamp | endpoint | method | status_code | response_time_ms | user_agent |
|---|---|---|---|---|---|---|
| f9962189-591b-472f-9b28-e554b1d8275c | 2025-09-14 10:04:59 | /api/v1/products | PUT | 200 | 1686 | Mozilla/5.0 (Linux; Android 3.2.1) Apple |
| 4b38a415-2544-48ef-ba45-67a53f93f2d1 | 2024-03-27 15:48:41 | /api/v1/orders | GET | 400 | 882 | Mozilla/5.0 (iPad; CPU iPad OS 10_3_3 li |
| bb555fe5-9888-4335-a4eb-8a3a7a0a5f5e | 2024-02-14 17:08:42 | /api/v1/orders | DELETE | 200 | 1131 | Mozilla/5.0 (iPod; U; CPU iPhone OS 3_0 |
| log_id | timestamp | service_name | level | message | trace_id |
|---|---|---|---|---|---|
| 1 | 2025-08-05 15:11:25 | PaymentGateway | FATAL | System crash - engage plug-and-play info | b178a52d-a8eb-427b-8b5d-645c22cf2557 |
| 2 | 2025-10-20 14:16:02 | AuthService | ERROR | Database deadlock - cultivate value-adde | 5b760acd-9921-4bc5-9afa-46f64b389691 |
| 3 | 2024-02-27 10:32:12 | AuthService | ERROR | Invalid schema - reinvent killer web ser | 48515880-8786-41c9-b385-a45ff4233372 |
| call_id | proc_name | input_params | outcome | error_state | error_message | duration_ms | called_at |
|---|---|---|---|---|---|---|---|
| 1 | compute_customer_tier | {"id": 47398} | success | 2460 | 2025-07-01 20:21:25 | ||
| 2 | close_expired_orders | {"id": 33272} | success | 2064 | 2025-07-10 19:08:35 | ||
| 3 | transfer_money | {"id": 46730} | success | 307 | 2025-12-08 23:32:02 |
| change_id | table_name | record_id | column_name | old_value | new_value | changed_by | changed_at | action |
|---|---|---|---|---|---|---|---|---|
| 1 | products | 2552 | price | 4519.36 | 4660.81 | 235 | 2024-03-30 17:49:50 | UPDATE |
| 2 | employees | 1632 | salary | 30549 | 32880 | 2254 | 2024-11-06 22:14:51 | UPDATE |
| 3 | products | 23 | price | 773.9 | 835.04 | 1001 | 2024-01-11 11:42:20 | UPDATE |
| failure_id | payment_id | error_message | failed_at |
|---|---|---|---|
| 1 | 78685 | Amount exceeds original payment | 2026-01-11 00:11:50 |
| 2 | 93910 | Payment gateway timeout | 2025-09-28 07:31:05 |
| 3 | 100688 | Duplicate refund attempt | 2025-07-04 14:25:55 |
| refund_id | payment_id | order_id | amount | reason | refunded_at | status |
|---|---|---|---|---|---|---|
| 1 | 5 | 7 | 847.56 | Wrong Item | 2025-08-08 00:00:00 | Completed |
| 2 | 7 | 9 | 67490.76 | Wrong Item | 2024-06-19 00:00:00 | Completed |
| 3 | 55 | 60 | 6482.04 | Wrong Item | 2026-02-10 00:00:00 | Completed |
| call_id | customer_id | agent_id | call_start_time | call_duration_seconds | call_reason | status |
|---|---|---|---|---|---|---|
| 1 | 7418 | 242 | 2025-06-06 20:11:53.322867 | 754 | Return/Refund | Pending |
| 2 | 20054 | 1425 | 2025-05-23 06:38:23.602628 | 958 | Return/Refund | Escalated |
| 3 | 31111 | 668 | 2026-01-18 08:36:28.375500 | 1654 | Order Inquiry | Pending |
| transcript_id | call_id | transcript_text | sentiment_score |
|---|---|---|---|
| 1 | 1 | Customer called about return/refund. Men | 0.95 |
| 2 | 2 | Customer called about return/refund. Men | 0.82 |
| 3 | 3 | Customer called about order inquiry. Men | 0.75 |
| brand_id | brand_name | category_id |
|---|---|---|
| 1 | Samsung | 1 |
| 2 | Apple | 1 |
| 3 | Sony | 1 |
| category_id | category_name |
|---|---|
| 1 | Electronics |
| 2 | Fashion |
| 3 | Home & Kitchen |
| date_key | day | month | year | quarter | day_name | month_name |
|---|---|---|---|---|---|---|
| 2024-01-01 | 1 | 1 | 2024 | 1 | Mon | Jan |
| 2024-01-02 | 2 | 1 | 2024 | 1 | Tue | Jan |
| 2024-01-03 | 3 | 1 | 2024 | 1 | Wed | Jan |
| dept_id | dept_name |
|---|---|
| 1 | Sales |
| 2 | Operations |
| 3 | Marketing |
| exp_cat_id | category_name |
|---|---|
| 1 | Rent |
| 2 | Utilities |
| 3 | Maintenance |
| region_id | region_name | country | state |
|---|---|---|---|
| 1 | North East | India | Rajasthan |
| 2 | North | India | Bihar |
| 3 | North | India | Andhra Pradesh |
| address_id | customer_id | address_line | city | state | pincode | is_default |
|---|---|---|---|---|---|---|
| 1 | 1 | H.No. 702 Bhattacharyya | Puri | Odisha | 961295 | True |
| 2 | 2 | 73, Deep Ganj | Noida | Uttar Pradesh | 783840 | True |
| customer_id | first_name | last_name | phone | registration_date | tier | tier_updated_at | |
|---|---|---|---|---|---|---|---|
| 1 | Meera | Naidu | meera.naidu0@bmw.com | 912654235116 | 2023-06-12 | Bronze | 2025-07-27 00:00:00 |
| 2 | Lakshmi | Singh | lakshmi.singh1@expedia.com | 9407816184 | 2025-08-23 | Silver | 2025-06-29 00:00:00 |
| 3 | Zoya | Lal | zoya.lal2@yahoo.com | 5931034131 | 2024-04-17 | Bronze | 2026-01-17 00:00:00 |
| loyalty_id | customer_id | points_earned | source | date_earned |
|---|---|---|---|---|
| 1 | 15691 | 185 | Bonus | 2025-10-15 |
| 2 | 6696 | 63 | Purchase | 2025-08-25 |
| 3 | 30902 | 36 | Bonus | 2025-08-17 |
| review_id | customer_id | product_id | rating | review_text | review_date |
|---|---|---|---|---|---|
| 1 | 3415 | 3295 | 4 | Ipsa aliquid sit esse explicabo. | 2025-10-26 |
| 2 | 47613 | 5783 | 5 | Consectetur dolores distinctio dolorum e | 2024-12-10 |
| 3 | 40918 | 4873 | 5 | Ad corporis sint sapiente incidunt volup | 2025-06-14 |
| wallet_id | cust_id | balance | last_updated |
|---|---|---|---|
| 1 | 1 | 730.36 | 2026-01-02 18:39:32 |
| 2 | 2 | 82.71 | 2025-05-21 00:17:21 |
| 3 | 3 | 1230.31 | 2025-09-02 18:00:51 |
| account_id | account_holder | account_type | balance | created_at |
|---|---|---|---|---|
| 1 | Aryan Maharaj | Savings | 67467.89 | 2023-09-26 03:45:28 |
| 2 | Harsh Chahal | Current | 66360.26 | 2024-10-08 14:08:35 |
| 3 | Ayushman Chander | Savings | 465038.66 | 2023-08-28 09:48:21 |
| expense_id | expense_date | exp_cat_id | amount | description |
|---|---|---|---|---|
| 1 | 2024-11-15 | 5 | 37409.99 | Software expense engineer best-of-breed |
| 2 | 2025-01-30 | 8 | 899229.97 | Payroll expense cultivate customized ban |
| 3 | 2026-02-11 | 6 | 23458.38 | Travel expense mesh sticky e-services |
| mode_id | mode_name |
|---|---|
| 1 | Cash |
| 2 | UPI |
| 3 | Credit Card |
| payment_id | order_id | cust_id | amount | status | refund_reason | refunded_at |
|---|---|---|---|---|---|---|
| 1 | 1 | 10770 | 22033.22 | Completed | ||
| 2 | 3 | 3958 | 4314.36 | Completed | ||
| 3 | 4 | 27898 | 237279.22 | Completed |
| summary_id | summary_date | total_revenue | total_orders | avg_order_value |
|---|---|---|---|---|
| 1 | 2024-01-01 | 145488.61 | 174 | 836.14 |
| 2 | 2024-01-02 | 406425.0 | 351 | 1157.91 |
| 3 | 2024-01-03 | 196978.44 | 123 | 1601.45 |
| transfer_id | from_account | to_account | amount | transferred_at | status |
|---|---|---|---|---|---|
| 1 | 110 | 108 | 48287.04 | 2025-04-13 08:48:27 | Failed |
| 2 | 110 | 88 | 41400.4 | 2025-08-20 12:45:07 | Success |
| 3 | 89 | 46 | 11702.05 | 2025-06-11 02:32:49 | Success |
| attendance_id | employee_id | attendance_date | check_in | check_out |
|---|---|---|---|---|
| 1 | 1549 | 2024-04-21 | 2024-04-21 10:00:00 | 2024-04-21 20:00:00 |
| 2 | 11 | 2024-02-18 | 2024-02-18 10:00:00 | 2024-02-18 18:00:00 |
| 3 | 12 | 2025-09-17 | 2025-09-17 10:00:00 | 2025-09-17 19:00:00 |
| payment_id | employee_id | amount | payment_date | status |
|---|---|---|---|---|
| 1 | 1 | 4058.61 | 2025-03-25 | Processed |
| 2 | 1 | 4152.62 | 2025-04-25 | Processed |
| 3 | 1 | 4116.93 | 2025-05-25 | Processed |
| customer_id | tier_id | points_balance | join_date |
|---|---|---|---|
| 25557 | 4 | 12508 | 2022-12-19 |
| 17637 | 3 | 5091 | 2021-11-04 |
| 2971 | 3 | 5696 | 2021-03-22 |
| redemption_id | customer_id | reward_name | points_redeemed | redemption_date |
|---|---|---|---|---|
| 1 | 22457 | Free Shipping Voucher | 200 | 2025-07-15 |
| 2 | 38909 | Product Discount | 500 | 2024-11-09 |
| 3 | 31452 | Gift Card $10 | 1000 | 2025-12-31 |
| tier_id | tier_name | min_points | max_points | benefits |
|---|---|---|---|---|
| 1 | Bronze | 0 | 999 | Free Shipping > $50 |
| 2 | Silver | 1000 | 4999 | 5% Discount, Free Shipping |
| 3 | Gold | 5000 | 9999 | 10% Discount, Priority Support |
| line_id | line_name | capacity_per_hour | supervisor_name |
|---|---|---|---|
| 1 | Line-1 | 142 | Jacob Parsons |
| 2 | Line-2 | 230 | Ronnie Parker |
| 3 | Line-3 | 278 | Darlene James |
| work_order_id | product_id | line_id | start_timestamp | end_timestamp | quantity_produced | rejected_quantity | status |
|---|---|---|---|---|---|---|---|
| 1 | 237 | 3 | 2025-12-17 02:46:27.778651 | 2025-12-17 13:46:27.778651 | 2551 | 70 | Completed |
| 2 | 5679 | 4 | 2024-05-20 19:46:11.638269 | 2024-05-21 03:46:11.638269 | 1901 | 58 | Completed |
| 3 | 4940 | 6 | 2024-11-04 18:00:40.661809 | 2024-11-04 20:00:40.661809 | 481 | 10 | Completed |
| spend_id | campaign_id | spend_date | amount | platform |
|---|---|---|---|---|
| 1 | 4 | 2025-03-15 | 360.28 | |
| 2 | 76 | 2024-12-02 | 538.49 | |
| 3 | 15 | 2025-11-16 | 1599.49 |
| campaign_id | campaign_name | start_date | end_date | budget |
|---|---|---|---|---|
| 1 | Switchable context-sensitive toolset | 2024-04-05 | 2024-04-13 | 398126.48 |
| 2 | Enterprise-wide holistic capability | 2025-04-16 | 2025-04-22 | 334073.16 |
| 3 | Secured tertiary extranet | 2024-01-01 | 2024-01-10 | 110231.45 |
| email_id | campaign_id | sent_date | emails_sent | emails_opened | emails_clicked |
|---|---|---|---|---|---|
| 1 | 243 | 2024-11-19 | 9661 | 5377 | 1698 |
| 2 | 127 | 2025-09-04 | 31203 | 8395 | 2884 |
| 3 | 116 | 2024-10-13 | 6996 | 1654 | 818 |
| pay_slip_id | employee_id | salary_month | salary_year | basic_salary | hra | other_allowances | pf | professional_tax | income_tax | gross_salary | net_salary | payment_date |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 1 | 1 | August | 2025 | 1631.63 | 815.82 | 1223.72 | 195.8 | 200 | 0.0 | 3671.17 | 3275.37 | 2025-08-31 |
| 2 | 1 | September | 2025 | 1631.63 | 815.82 | 1223.72 | 195.8 | 200 | 0.0 | 3671.17 | 3275.37 | 2025-09-30 |
| 3 | 1 | October | 2025 | 1631.63 | 815.82 | 1223.72 | 195.8 | 200 | 0.0 | 3671.17 | 3275.37 | 2025-10-31 |
| min_salary | max_salary | tax_rate |
|---|---|---|
| 0 | 300000 | 0.0 |
| 300001 | 600000 | 0.05 |
| 600001 | 900000 | 0.1 |
| store_id | product_id | quantity_on_hand | reorder_level |
|---|---|---|---|
| 86 | 3285 | 4 | 13 |
| 2 | 3922 | 37 | 15 |
| 132 | 5326 | 110 | 19 |
| product_id | product_name | brand_id | supplier_id | price | cost_price |
|---|---|---|---|---|---|
| 1 | Samsung Animi Max | 1 | 90 | 125812.07 | 88068.45 |
| 2 | Samsung Recusandae Lite | 1 | 50 | 106495.49 | 74546.84 |
| 3 | Samsung Placeat Plus | 1 | 23 | 149041.53 | 104329.07 |
| promo_id | promo_name | discount_percent | start_date | end_date | active |
|---|---|---|---|---|---|
| 1 | Multi-lateral Sale | 10 | 2026-02-12 | 2026-02-16 | False |
| 2 | Open-architected Sale | 15 | 2024-11-29 | 2024-12-09 | True |
| 3 | Customer-focused Sale | 5 | 2025-08-01 | 2025-08-16 | True |
| supplier_id | supplier_name | contact_name | city | |
|---|---|---|---|---|
| 1 | Tata Consumer Products | Aishani Sengupta | Delhi | utkarsh26@prabhakar.org |
| 2 | ITC Foods | Bachittar Vora | Nashik | aadi24@grewal.org |
| 3 | Hindustan Unilever | Gaurang Shukla | Pune | wsura@singhal.com |
| order_item_id | order_id | prod_id | quantity | unit_price | gross_amount | discount_amount | net_amount |
|---|---|---|---|---|---|---|---|
| 1 | 1 | 5159 | 2 | 11016.61 | 22033.22 | 0.0 | 22033.22 |
| 2 | 2 | 5611 | 2 | 33554.5 | 67109.0 | 0.0 | 67109.0 |
| 3 | 2 | 5480 | 3 | 4379.48 | 13138.44 | 0.0 | 13138.44 |
| order_id | cust_id | store_id | order_date | order_status | gross_total | discount_amount | net_total | payment_mode_id |
|---|---|---|---|---|---|---|---|---|
| 1 | 10770 | 133 | 2024-05-02 | Out for Delivery | 22033.22 | 0.0 | 22033.22 | 7 |
| 2 | 11061 | 169 | 2024-09-22 | Failed | 300772.0 | 0.0 | 300772.0 | 1 |
| 3 | 3958 | 116 | 2025-11-24 | Delivered | 4314.36 | 0.0 | 4314.36 | 8 |
| payment_id | order_id | payment_date | payment_mode | amount |
|---|---|---|---|---|
| 1 | 1 | 2024-05-02 | EMI | 22033.22 |
| 2 | 3 | 2025-11-24 | Gift Card | 4314.36 |
| 3 | 4 | 2026-02-20 | EMI | 237279.22 |
| return_id | order_id | prod_id | return_date | reason | refund_amount |
|---|---|---|---|---|---|
| 1 | 7 | 3343 | 2025-08-09 | Not liked | 282.52 |
| 2 | 9 | 4602 | 2024-06-11 | Defective | 5357.45 |
| 3 | 60 | 1382 | 2026-02-13 | Wrong Item | 5918.21 |
| shipment_id | order_id | courier_name | shipped_date | delivered_date | status |
|---|---|---|---|---|---|
| 1 | 3 | Delhivery | 2025-11-27 | 2025-11-30 | Delivered |
| 2 | 4 | Delhivery | 2026-02-21 | 2026-02-23 | Delivered |
| 3 | 5 | BlueDart | 2024-12-11 | 2024-12-15 | Delivered |
| employee_id | store_id | first_name | last_name | role | dept_id | joining_date | salary | |
|---|---|---|---|---|---|---|---|---|
| 1 | 80 | Abhiram | Ben | abhiram.ben@retailmart.com | Visual Merchandiser | 4 | 2025-08-16 | 48949 |
| 2 | 65 | Ekaraj | Naik | ekaraj.naik@retailmart.com | Logistics Coordinator | 8 | 2024-11-17 | 44465 |
| 3 | 98 | Bhavna | Ray | bhavna.ray@retailmart.com | Store Associate | 3 | 2025-01-27 | 27845 |
| store_expense_id | store_id | expense_type | amount | expense_date |
|---|---|---|---|---|
| 1 | 116 | Security | 3776.67 | 2025-05-30 |
| 2 | 144 | Repair | 9509.61 | 2025-03-28 |
| 3 | 199 | Repair | 7333.34 | 2025-03-14 |
| store_id | store_name | region_id | city | square_ft | opening_date |
|---|---|---|---|---|---|
| 1 | RetailMart Gwalior | 17 | Gwalior | 2205 | 2024-06-25 |
| 2 | RetailMart Indore | 4 | Indore | 2704 | 2025-02-08 |
| 3 | RetailMart Prayagraj | 7 | Prayagraj | 4524 | 2024-09-26 |
| warehouse_id | product_id | snapshot_date | quantity_on_hand |
|---|---|---|---|
| 1 | 4334 | 2025-02-26 | 1019 |
| 1 | 4334 | 2025-02-27 | 1039 |
| 1 | 4334 | 2025-02-28 | 1022 |
| shipment_id | supplier_id | warehouse_id | product_id | quantity | shipped_date | arrival_date | status |
|---|---|---|---|---|---|---|---|
| 1 | 85 | 2 | 3608 | 983 | 2024-10-02 | 2024-10-08 | In Transit |
| 2 | 2 | 4 | 5522 | 311 | 2024-03-03 | 2024-03-15 | Received |
| 3 | 25 | 2 | 2523 | 102 | 2025-07-24 | 2025-07-26 | Received |
| warehouse_id | name | location_city | region | capacity_sqft | manager_name |
|---|---|---|---|---|---|
| 1 | Warehouse Lisashire | North Adamborough | North | 13502 | Judith Smith |
| 2 | Warehouse Feliciaberg | North Matthewburgh | North | 24952 | Hannah Castillo |
| 3 | Warehouse Jacquelinetown | South Kelseyburgh | West | 37914 | Steven Webster |
| ticket_id | customer_id | agent_id | category | priority | status | created_date | resolved_date | subject |
|---|---|---|---|---|---|---|---|---|
| 1 | 2125 | 513 | Login Issue | Low | Resolved | 2025-01-25 | 2025-01-31 08:00:00 | Login Issue - Architecto aliquid in. |
| 2 | 8212 | 995 | Account Update | High | Resolved | 2025-01-04 | 2025-01-08 23:00:00 | Account Update - Corrupti consequatur te |
| 3 | 14761 | 2458 | Account Update | Medium | Closed | 2025-05-09 | 2025-05-10 16:00:00 | Account Update - Eos aliquid dicta harum |
| event_id | view_id | event_type | element_id | event_timestamp |
|---|---|---|---|---|
| 1 | 13068 | click | form_login | 2025-07-12 09:56:01.169530 |
| 2 | 103619 | scroll | form_login | 2025-11-20 04:08:41.126044 |
| 3 | 467268 | hover | input_search | 2025-07-30 09:48:41.956120 |
| view_id | session_id | customer_id | page_url | view_timestamp | device_type | os |
|---|---|---|---|---|---|---|
| 1 | dca7c881-adac-40e9-8d18-86ea32f939c3 | /product/40 | 2026-02-13 13:34:23.116111 | Mobile | iOS | |
| 2 | f9041c62-8363-4e40-a026-7965b9898a27 | 4602 | /home | 2025-07-16 15:38:14.011698 | Mobile | MacOS |
| 3 | d94b034c-c2e2-4450-8e1f-995d9c5c210b | 43290 | /product/1 | 2025-11-12 14:53:45.004664 | Desktop | Linux |