diff --git a/flow/connectors/postgres/cdc.go b/flow/connectors/postgres/cdc.go index 9d666d97da..9f43cd6599 100644 --- a/flow/connectors/postgres/cdc.go +++ b/flow/connectors/postgres/cdc.go @@ -758,7 +758,6 @@ func processUpdateMessage[Items model.Items]( and only the old tuple does. So we can backfill the new tuple with the unchanged columns from the old tuple. Otherwise, _peerdb_unchanged_toast_columns is set correctly and we fallback to normal unchanged TOAST handling in normalize, but this doesn't work in connectors where we don't do unchanged TOAST handling in normalize. - TODO: investigate the cases where this happens in more detail. */ backfilledCols := newItems.UpdateIfNotExists(oldItems) for _, col := range backfilledCols { diff --git a/flow/e2e/clickhouse/peer_flow_ch_test.go b/flow/e2e/clickhouse/peer_flow_ch_test.go index d2b6619513..f65aaa69bc 100644 --- a/flow/e2e/clickhouse/peer_flow_ch_test.go +++ b/flow/e2e/clickhouse/peer_flow_ch_test.go @@ -2,6 +2,7 @@ package e2e_clickhouse import ( "context" + "embed" "fmt" "testing" "time" @@ -16,6 +17,9 @@ import ( peerflow "github.com/PeerDB-io/peer-flow/workflows" ) +//go:embed test_data/* +var testData embed.FS + func TestPeerFlowE2ETestSuiteCH(t *testing.T) { e2eshared.RunSuite(t, SetupSuite) } @@ -355,3 +359,46 @@ func (s ClickHouseSuite) Test_Update_PKey_Env_Enabled() { env.Cancel() e2e.RequireEnvCanceled(s.t, env) } + +func (s ClickHouseSuite) Test_Replident_Full_Unchanged_TOAST_Updates() { + srcTableName := "test_replident_full_toast" + srcFullName := s.attachSchemaSuffix("test_replident_full_toast") + dstTableName := "test_replident_full_toast_dst" + + _, err := s.Conn().Exec(context.Background(), fmt.Sprintf(` + CREATE TABLE IF NOT EXISTS %s( + id INT PRIMARY KEY GENERATED BY DEFAULT AS IDENTITY, + c1 INT, + c2 INT, + t TEXT); + ALTER TABLE %s REPLICA IDENTITY FULL`, srcFullName, srcFullName)) + require.NoError(s.t, err) + + connectionGen := e2e.FlowConnectionGenerationConfig{ + FlowJobName: s.attachSuffix("clickhouse_test_replident_full_toast"), + TableNameMapping: map[string]string{srcFullName: dstTableName}, + Destination: s.Peer().Name, + } + flowConnConfig := connectionGen.GenerateFlowConnectionConfigs(s.t) + + tc := e2e.NewTemporalClient(s.t) + env := e2e.ExecutePeerflow(tc, peerflow.CDCFlowWorkflow, flowConnConfig, nil) + e2e.SetupCDCFlowStatusQuery(s.t, env, flowConnConfig) + + content, err := testData.ReadFile("test_data/big_data.json") + require.NoError(s.t, err) + contentStr := string(content) + + _, err = s.Conn().Exec(context.Background(), fmt.Sprintf(` + INSERT INTO %s (c1,c2,t) VALUES ($1,$2,$3)`, srcFullName), 1, 2, contentStr) + require.NoError(s.t, err) + e2e.EnvWaitForEqualTablesWithNames(env, s, "waiting on initial insert", srcTableName, dstTableName, "id,c1,c2,t") + + _, err = s.Conn().Exec(context.Background(), fmt.Sprintf(` + UPDATE %s SET c1=$1 WHERE id=$2`, srcFullName), 3, 1) + require.NoError(s.t, err) + e2e.EnvWaitForEqualTablesWithNames(env, s, "waiting on update", srcTableName, dstTableName, "id,c1,c2,t") + + env.Cancel() + e2e.RequireEnvCanceled(s.t, env) +} diff --git a/flow/e2e/clickhouse/test_data/big_data.json b/flow/e2e/clickhouse/test_data/big_data.json new file mode 100644 index 0000000000..328b9e5883 --- /dev/null +++ b/flow/e2e/clickhouse/test_data/big_data.json @@ -0,0 +1 @@ +[{"store":{"name":"SuperMart","location":{"address":"123 Market Street","city":"Metropolis","state":"NY","zip":"10001"},"departments":[{"id":1,"name":"Groceries","categories":[{"id":101,"name":"Fruits & Vegetables","products":[{"id":1001,"name":"Apple","price":0.99,"stock":120,"details":{"weight":"1lb","origin":"USA","organic":true}},{"id":1002,"name":"Banana","price":0.39,"stock":200,"details":{"weight":"1lb","origin":"Ecuador","organic":false}}]},{"id":102,"name":"Dairy","products":[{"id":2001,"name":"Milk","price":3.49,"stock":50,"details":{"volume":"1 gallon","fatContent":"2%","brand":"DairyPure"}},{"id":2002,"name":"Cheddar Cheese","price":5.99,"stock":75,"details":{"weight":"8oz","origin":"Wisconsin","aged":"2 years"}}]}]},{"id":2,"name":"Electronics","categories":[{"id":201,"name":"Smartphones","products":[{"id":3001,"name":"iPhone 14","price":999.99,"stock":30,"details":{"color":"Black","storage":"128GB","carrier":"Unlocked"}},{"id":3002,"name":"Samsung Galaxy S21","price":849.99,"stock":25,"details":{"color":"White","storage":"256GB","carrier":"Unlocked"}}]},{"id":202,"name":"Laptops","products":[{"id":4001,"name":"MacBook Pro","price":2399.99,"stock":10,"details":{"screenSize":"16 inch","processor":"M1","ram":"16GB","storage":"512GB SSD"}},{"id":4002,"name":"Dell XPS 13","price":1299.99,"stock":15,"details":{"screenSize":"13 inch","processor":"Intel i7","ram":"16GB","storage":"256GB SSD"}}]}]}],"employees":[{"id":5001,"name":"John Doe","position":"Manager","schedule":[{"day":"Monday","shift":"9am-5pm"},{"day":"Wednesday","shift":"9am-5pm"},{"day":"Friday","shift":"9am-5pm"}]},{"id":5002,"name":"Jane Smith","position":"Cashier","schedule":[{"day":"Tuesday","shift":"10am-6pm"},{"day":"Thursday","shift":"10am-6pm"},{"day":"Saturday","shift":"12pm-8pm"}]}]},"customers":[{"id":6001,"name":"Alice Johnson","email":"alice.johnson@example.com","orders":[{"orderId":7001,"date":"2024-09-01","status":"Shipped","items":[{"productId":1001,"quantity":10},{"productId":2001,"quantity":2}],"total":12.48},{"orderId":7002,"date":"2024-09-15","status":"Delivered","items":[{"productId":3001,"quantity":1}],"total":999.99}]},{"id":6002,"name":"Bob Williams","email":"bob.williams@example.com","orders":[{"orderId":7003,"date":"2024-09-07","status":"Pending","items":[{"productId":1002,"quantity":5},{"productId":4001,"quantity":1}],"total":2403.94}]}]},{"store":{"name":"SuperMart","location":{"address":"123 Market Street","city":"Metropolis","state":"NY","zip":"10001"},"departments":[{"id":1,"name":"Groceries","categories":[{"id":101,"name":"Fruits & Vegetables","products":[{"id":1001,"name":"Apple","price":0.99,"stock":120,"details":{"weight":"1lb","origin":"USA","organic":true}},{"id":1002,"name":"Banana","price":0.39,"stock":200,"details":{"weight":"1lb","origin":"Ecuador","organic":false}}]},{"id":102,"name":"Dairy","products":[{"id":2001,"name":"Milk","price":3.49,"stock":50,"details":{"volume":"1 gallon","fatContent":"2%","brand":"DairyPure"}},{"id":2002,"name":"Cheddar Cheese","price":5.99,"stock":75,"details":{"weight":"8oz","origin":"Wisconsin","aged":"2 years"}}]}]},{"id":2,"name":"Electronics","categories":[{"id":201,"name":"Smartphones","products":[{"id":3001,"name":"iPhone 14","price":999.99,"stock":30,"details":{"color":"Black","storage":"128GB","carrier":"Unlocked"}},{"id":3002,"name":"Samsung Galaxy S21","price":849.99,"stock":25,"details":{"color":"White","storage":"256GB","carrier":"Unlocked"}}]},{"id":202,"name":"Laptops","products":[{"id":4001,"name":"MacBook Pro","price":2399.99,"stock":10,"details":{"screenSize":"16 inch","processor":"M1","ram":"16GB","storage":"512GB SSD"}},{"id":4002,"name":"Dell XPS 13","price":1299.99,"stock":15,"details":{"screenSize":"13 inch","processor":"Intel i7","ram":"16GB","storage":"256GB SSD"}}]}]}],"employees":[{"id":5001,"name":"John Doe","position":"Manager","schedule":[{"day":"Monday","shift":"9am-5pm"},{"day":"Wednesday","shift":"9am-5pm"},{"day":"Friday","shift":"9am-5pm"}]},{"id":5002,"name":"Jane Smith","position":"Cashier","schedule":[{"day":"Tuesday","shift":"10am-6pm"},{"day":"Thursday","shift":"10am-6pm"},{"day":"Saturday","shift":"12pm-8pm"}]}]},"customers":[{"id":6001,"name":"Alice Johnson","email":"alice.johnson@example.com","orders":[{"orderId":7001,"date":"2024-09-01","status":"Shipped","items":[{"productId":1001,"quantity":10},{"productId":2001,"quantity":2}],"total":12.48},{"orderId":7002,"date":"2024-09-15","status":"Delivered","items":[{"productId":3001,"quantity":1}],"total":999.99}]},{"id":6002,"name":"Bob Williams","email":"bob.williams@example.com","orders":[{"orderId":7003,"date":"2024-09-07","status":"Pending","items":[{"productId":1002,"quantity":5},{"productId":4001,"quantity":1}],"total":2403.94}]}]},{"store":{"name":"SuperMart","location":{"address":"123 Market Street","city":"Metropolis","state":"NY","zip":"10001"},"departments":[{"id":1,"name":"Groceries","categories":[{"id":101,"name":"Fruits & Vegetables","products":[{"id":1001,"name":"Apple","price":0.99,"stock":120,"details":{"weight":"1lb","origin":"USA","organic":true}},{"id":1002,"name":"Banana","price":0.39,"stock":200,"details":{"weight":"1lb","origin":"Ecuador","organic":false}}]},{"id":102,"name":"Dairy","products":[{"id":2001,"name":"Milk","price":3.49,"stock":50,"details":{"volume":"1 gallon","fatContent":"2%","brand":"DairyPure"}},{"id":2002,"name":"Cheddar Cheese","price":5.99,"stock":75,"details":{"weight":"8oz","origin":"Wisconsin","aged":"2 years"}}]}]},{"id":2,"name":"Electronics","categories":[{"id":201,"name":"Smartphones","products":[{"id":3001,"name":"iPhone 14","price":999.99,"stock":30,"details":{"color":"Black","storage":"128GB","carrier":"Unlocked"}},{"id":3002,"name":"Samsung Galaxy S21","price":849.99,"stock":25,"details":{"color":"White","storage":"256GB","carrier":"Unlocked"}}]},{"id":202,"name":"Laptops","products":[{"id":4001,"name":"MacBook Pro","price":2399.99,"stock":10,"details":{"screenSize":"16 inch","processor":"M1","ram":"16GB","storage":"512GB SSD"}},{"id":4002,"name":"Dell XPS 13","price":1299.99,"stock":15,"details":{"screenSize":"13 inch","processor":"Intel i7","ram":"16GB","storage":"256GB SSD"}}]}]}],"employees":[{"id":5001,"name":"John Doe","position":"Manager","schedule":[{"day":"Monday","shift":"9am-5pm"},{"day":"Wednesday","shift":"9am-5pm"},{"day":"Friday","shift":"9am-5pm"}]},{"id":5002,"name":"Jane Smith","position":"Cashier","schedule":[{"day":"Tuesday","shift":"10am-6pm"},{"day":"Thursday","shift":"10am-6pm"},{"day":"Saturday","shift":"12pm-8pm"}]}]},"customers":[{"id":6001,"name":"Alice Johnson","email":"alice.johnson@example.com","orders":[{"orderId":7001,"date":"2024-09-01","status":"Shipped","items":[{"productId":1001,"quantity":10},{"productId":2001,"quantity":2}],"total":12.48},{"orderId":7002,"date":"2024-09-15","status":"Delivered","items":[{"productId":3001,"quantity":1}],"total":999.99}]},{"id":6002,"name":"Bob Williams","email":"bob.williams@example.com","orders":[{"orderId":7003,"date":"2024-09-07","status":"Pending","items":[{"productId":1002,"quantity":5},{"productId":4001,"quantity":1}],"total":2403.94}]}]},{"store":{"name":"SuperMart","location":{"address":"123 Market Street","city":"Metropolis","state":"NY","zip":"10001"},"departments":[{"id":1,"name":"Groceries","categories":[{"id":101,"name":"Fruits & Vegetables","products":[{"id":1001,"name":"Apple","price":0.99,"stock":120,"details":{"weight":"1lb","origin":"USA","organic":true}},{"id":1002,"name":"Banana","price":0.39,"stock":200,"details":{"weight":"1lb","origin":"Ecuador","organic":false}}]},{"id":102,"name":"Dairy","products":[{"id":2001,"name":"Milk","price":3.49,"stock":50,"details":{"volume":"1 gallon","fatContent":"2%","brand":"DairyPure"}},{"id":2002,"name":"Cheddar Cheese","price":5.99,"stock":75,"details":{"weight":"8oz","origin":"Wisconsin","aged":"2 years"}}]}]},{"id":2,"name":"Electronics","categories":[{"id":201,"name":"Smartphones","products":[{"id":3001,"name":"iPhone 14","price":999.99,"stock":30,"details":{"color":"Black","storage":"128GB","carrier":"Unlocked"}},{"id":3002,"name":"Samsung Galaxy S21","price":849.99,"stock":25,"details":{"color":"White","storage":"256GB","carrier":"Unlocked"}}]},{"id":202,"name":"Laptops","products":[{"id":4001,"name":"MacBook Pro","price":2399.99,"stock":10,"details":{"screenSize":"16 inch","processor":"M1","ram":"16GB","storage":"512GB SSD"}},{"id":4002,"name":"Dell XPS 13","price":1299.99,"stock":15,"details":{"screenSize":"13 inch","processor":"Intel i7","ram":"16GB","storage":"256GB SSD"}}]}]}],"employees":[{"id":5001,"name":"John Doe","position":"Manager","schedule":[{"day":"Monday","shift":"9am-5pm"},{"day":"Wednesday","shift":"9am-5pm"},{"day":"Friday","shift":"9am-5pm"}]},{"id":5002,"name":"Jane Smith","position":"Cashier","schedule":[{"day":"Tuesday","shift":"10am-6pm"},{"day":"Thursday","shift":"10am-6pm"},{"day":"Saturday","shift":"12pm-8pm"}]}]},"customers":[{"id":6001,"name":"Alice Johnson","email":"alice.johnson@example.com","orders":[{"orderId":7001,"date":"2024-09-01","status":"Shipped","items":[{"productId":1001,"quantity":10},{"productId":2001,"quantity":2}],"total":12.48},{"orderId":7002,"date":"2024-09-15","status":"Delivered","items":[{"productId":3001,"quantity":1}],"total":999.99}]},{"id":6002,"name":"Bob Williams","email":"bob.williams@example.com","orders":[{"orderId":7003,"date":"2024-09-07","status":"Pending","items":[{"productId":1002,"quantity":5},{"productId":4001,"quantity":1}],"total":2403.94}]}]},{"store":{"name":"SuperMart","location":{"address":"123 Market Street","city":"Metropolis","state":"NY","zip":"10001"},"departments":[{"id":1,"name":"Groceries","categories":[{"id":101,"name":"Fruits & Vegetables","products":[{"id":1001,"name":"Apple","price":0.99,"stock":120,"details":{"weight":"1lb","origin":"USA","organic":true}},{"id":1002,"name":"Banana","price":0.39,"stock":200,"details":{"weight":"1lb","origin":"Ecuador","organic":false}}]},{"id":102,"name":"Dairy","products":[{"id":2001,"name":"Milk","price":3.49,"stock":50,"details":{"volume":"1 gallon","fatContent":"2%","brand":"DairyPure"}},{"id":2002,"name":"Cheddar Cheese","price":5.99,"stock":75,"details":{"weight":"8oz","origin":"Wisconsin","aged":"2 years"}}]}]},{"id":2,"name":"Electronics","categories":[{"id":201,"name":"Smartphones","products":[{"id":3001,"name":"iPhone 14","price":999.99,"stock":30,"details":{"color":"Black","storage":"128GB","carrier":"Unlocked"}},{"id":3002,"name":"Samsung Galaxy S21","price":849.99,"stock":25,"details":{"color":"White","storage":"256GB","carrier":"Unlocked"}}]},{"id":202,"name":"Laptops","products":[{"id":4001,"name":"MacBook Pro","price":2399.99,"stock":10,"details":{"screenSize":"16 inch","processor":"M1","ram":"16GB","storage":"512GB SSD"}},{"id":4002,"name":"Dell XPS 13","price":1299.99,"stock":15,"details":{"screenSize":"13 inch","processor":"Intel i7","ram":"16GB","storage":"256GB SSD"}}]}]}],"employees":[{"id":5001,"name":"John Doe","position":"Manager","schedule":[{"day":"Monday","shift":"9am-5pm"},{"day":"Wednesday","shift":"9am-5pm"},{"day":"Friday","shift":"9am-5pm"}]},{"id":5002,"name":"Jane Smith","position":"Cashier","schedule":[{"day":"Tuesday","shift":"10am-6pm"},{"day":"Thursday","shift":"10am-6pm"},{"day":"Saturday","shift":"12pm-8pm"}]}]},"customers":[{"id":6001,"name":"Alice Johnson","email":"alice.johnson@example.com","orders":[{"orderId":7001,"date":"2024-09-01","status":"Shipped","items":[{"productId":1001,"quantity":10},{"productId":2001,"quantity":2}],"total":12.48},{"orderId":7002,"date":"2024-09-15","status":"Delivered","items":[{"productId":3001,"quantity":1}],"total":999.99}]},{"id":6002,"name":"Bob Williams","email":"bob.williams@example.com","orders":[{"orderId":7003,"date":"2024-09-07","status":"Pending","items":[{"productId":1002,"quantity":5},{"productId":4001,"quantity":1}],"total":2403.94}]}]},{"store":{"name":"SuperMart","location":{"address":"123 Market Street","city":"Metropolis","state":"NY","zip":"10001"},"departments":[{"id":1,"name":"Groceries","categories":[{"id":101,"name":"Fruits & Vegetables","products":[{"id":1001,"name":"Apple","price":0.99,"stock":120,"details":{"weight":"1lb","origin":"USA","organic":true}},{"id":1002,"name":"Banana","price":0.39,"stock":200,"details":{"weight":"1lb","origin":"Ecuador","organic":false}}]},{"id":102,"name":"Dairy","products":[{"id":2001,"name":"Milk","price":3.49,"stock":50,"details":{"volume":"1 gallon","fatContent":"2%","brand":"DairyPure"}},{"id":2002,"name":"Cheddar Cheese","price":5.99,"stock":75,"details":{"weight":"8oz","origin":"Wisconsin","aged":"2 years"}}]}]},{"id":2,"name":"Electronics","categories":[{"id":201,"name":"Smartphones","products":[{"id":3001,"name":"iPhone 14","price":999.99,"stock":30,"details":{"color":"Black","storage":"128GB","carrier":"Unlocked"}},{"id":3002,"name":"Samsung Galaxy S21","price":849.99,"stock":25,"details":{"color":"White","storage":"256GB","carrier":"Unlocked"}}]},{"id":202,"name":"Laptops","products":[{"id":4001,"name":"MacBook Pro","price":2399.99,"stock":10,"details":{"screenSize":"16 inch","processor":"M1","ram":"16GB","storage":"512GB SSD"}},{"id":4002,"name":"Dell XPS 13","price":1299.99,"stock":15,"details":{"screenSize":"13 inch","processor":"Intel i7","ram":"16GB","storage":"256GB SSD"}}]}]}],"employees":[{"id":5001,"name":"John Doe","position":"Manager","schedule":[{"day":"Monday","shift":"9am-5pm"},{"day":"Wednesday","shift":"9am-5pm"},{"day":"Friday","shift":"9am-5pm"}]},{"id":5002,"name":"Jane Smith","position":"Cashier","schedule":[{"day":"Tuesday","shift":"10am-6pm"},{"day":"Thursday","shift":"10am-6pm"},{"day":"Saturday","shift":"12pm-8pm"}]}]},"customers":[{"id":6001,"name":"Alice Johnson","email":"alice.johnson@example.com","orders":[{"orderId":7001,"date":"2024-09-01","status":"Shipped","items":[{"productId":1001,"quantity":10},{"productId":2001,"quantity":2}],"total":12.48},{"orderId":7002,"date":"2024-09-15","status":"Delivered","items":[{"productId":3001,"quantity":1}],"total":999.99}]},{"id":6002,"name":"Bob Williams","email":"bob.williams@example.com","orders":[{"orderId":7003,"date":"2024-09-07","status":"Pending","items":[{"productId":1002,"quantity":5},{"productId":4001,"quantity":1}],"total":2403.94}]}]},{"store":{"name":"SuperMart","location":{"address":"123 Market Street","city":"Metropolis","state":"NY","zip":"10001"},"departments":[{"id":1,"name":"Groceries","categories":[{"id":101,"name":"Fruits & Vegetables","products":[{"id":1001,"name":"Apple","price":0.99,"stock":120,"details":{"weight":"1lb","origin":"USA","organic":true}},{"id":1002,"name":"Banana","price":0.39,"stock":200,"details":{"weight":"1lb","origin":"Ecuador","organic":false}}]},{"id":102,"name":"Dairy","products":[{"id":2001,"name":"Milk","price":3.49,"stock":50,"details":{"volume":"1 gallon","fatContent":"2%","brand":"DairyPure"}},{"id":2002,"name":"Cheddar Cheese","price":5.99,"stock":75,"details":{"weight":"8oz","origin":"Wisconsin","aged":"2 years"}}]}]},{"id":2,"name":"Electronics","categories":[{"id":201,"name":"Smartphones","products":[{"id":3001,"name":"iPhone 14","price":999.99,"stock":30,"details":{"color":"Black","storage":"128GB","carrier":"Unlocked"}},{"id":3002,"name":"Samsung Galaxy S21","price":849.99,"stock":25,"details":{"color":"White","storage":"256GB","carrier":"Unlocked"}}]},{"id":202,"name":"Laptops","products":[{"id":4001,"name":"MacBook Pro","price":2399.99,"stock":10,"details":{"screenSize":"16 inch","processor":"M1","ram":"16GB","storage":"512GB SSD"}},{"id":4002,"name":"Dell XPS 13","price":1299.99,"stock":15,"details":{"screenSize":"13 inch","processor":"Intel i7","ram":"16GB","storage":"256GB SSD"}}]}]}],"employees":[{"id":5001,"name":"John Doe","position":"Manager","schedule":[{"day":"Monday","shift":"9am-5pm"},{"day":"Wednesday","shift":"9am-5pm"},{"day":"Friday","shift":"9am-5pm"}]},{"id":5002,"name":"Jane Smith","position":"Cashier","schedule":[{"day":"Tuesday","shift":"10am-6pm"},{"day":"Thursday","shift":"10am-6pm"},{"day":"Saturday","shift":"12pm-8pm"}]}]},"customers":[{"id":6001,"name":"Alice Johnson","email":"alice.johnson@example.com","orders":[{"orderId":7001,"date":"2024-09-01","status":"Shipped","items":[{"productId":1001,"quantity":10},{"productId":2001,"quantity":2}],"total":12.48},{"orderId":7002,"date":"2024-09-15","status":"Delivered","items":[{"productId":3001,"quantity":1}],"total":999.99}]},{"id":6002,"name":"Bob Williams","email":"bob.williams@example.com","orders":[{"orderId":7003,"date":"2024-09-07","status":"Pending","items":[{"productId":1002,"quantity":5},{"productId":4001,"quantity":1}],"total":2403.94}]}]},{"store":{"name":"SuperMart","location":{"address":"123 Market Street","city":"Metropolis","state":"NY","zip":"10001"},"departments":[{"id":1,"name":"Groceries","categories":[{"id":101,"name":"Fruits & Vegetables","products":[{"id":1001,"name":"Apple","price":0.99,"stock":120,"details":{"weight":"1lb","origin":"USA","organic":true}},{"id":1002,"name":"Banana","price":0.39,"stock":200,"details":{"weight":"1lb","origin":"Ecuador","organic":false}}]},{"id":102,"name":"Dairy","products":[{"id":2001,"name":"Milk","price":3.49,"stock":50,"details":{"volume":"1 gallon","fatContent":"2%","brand":"DairyPure"}},{"id":2002,"name":"Cheddar Cheese","price":5.99,"stock":75,"details":{"weight":"8oz","origin":"Wisconsin","aged":"2 years"}}]}]},{"id":2,"name":"Electronics","categories":[{"id":201,"name":"Smartphones","products":[{"id":3001,"name":"iPhone 14","price":999.99,"stock":30,"details":{"color":"Black","storage":"128GB","carrier":"Unlocked"}},{"id":3002,"name":"Samsung Galaxy S21","price":849.99,"stock":25,"details":{"color":"White","storage":"256GB","carrier":"Unlocked"}}]},{"id":202,"name":"Laptops","products":[{"id":4001,"name":"MacBook Pro","price":2399.99,"stock":10,"details":{"screenSize":"16 inch","processor":"M1","ram":"16GB","storage":"512GB SSD"}},{"id":4002,"name":"Dell XPS 13","price":1299.99,"stock":15,"details":{"screenSize":"13 inch","processor":"Intel i7","ram":"16GB","storage":"256GB SSD"}}]}]}],"employees":[{"id":5001,"name":"John Doe","position":"Manager","schedule":[{"day":"Monday","shift":"9am-5pm"},{"day":"Wednesday","shift":"9am-5pm"},{"day":"Friday","shift":"9am-5pm"}]},{"id":5002,"name":"Jane Smith","position":"Cashier","schedule":[{"day":"Tuesday","shift":"10am-6pm"},{"day":"Thursday","shift":"10am-6pm"},{"day":"Saturday","shift":"12pm-8pm"}]}]},"customers":[{"id":6001,"name":"Alice Johnson","email":"alice.johnson@example.com","orders":[{"orderId":7001,"date":"2024-09-01","status":"Shipped","items":[{"productId":1001,"quantity":10},{"productId":2001,"quantity":2}],"total":12.48},{"orderId":7002,"date":"2024-09-15","status":"Delivered","items":[{"productId":3001,"quantity":1}],"total":999.99}]},{"id":6002,"name":"Bob Williams","email":"bob.williams@example.com","orders":[{"orderId":7003,"date":"2024-09-07","status":"Pending","items":[{"productId":1002,"quantity":5},{"productId":4001,"quantity":1}],"total":2403.94}]}]},{"store":{"name":"SuperMart","location":{"address":"123 Market Street","city":"Metropolis","state":"NY","zip":"10001"},"departments":[{"id":1,"name":"Groceries","categories":[{"id":101,"name":"Fruits & Vegetables","products":[{"id":1001,"name":"Apple","price":0.99,"stock":120,"details":{"weight":"1lb","origin":"USA","organic":true}},{"id":1002,"name":"Banana","price":0.39,"stock":200,"details":{"weight":"1lb","origin":"Ecuador","organic":false}}]},{"id":102,"name":"Dairy","products":[{"id":2001,"name":"Milk","price":3.49,"stock":50,"details":{"volume":"1 gallon","fatContent":"2%","brand":"DairyPure"}},{"id":2002,"name":"Cheddar Cheese","price":5.99,"stock":75,"details":{"weight":"8oz","origin":"Wisconsin","aged":"2 years"}}]}]},{"id":2,"name":"Electronics","categories":[{"id":201,"name":"Smartphones","products":[{"id":3001,"name":"iPhone 14","price":999.99,"stock":30,"details":{"color":"Black","storage":"128GB","carrier":"Unlocked"}},{"id":3002,"name":"Samsung Galaxy S21","price":849.99,"stock":25,"details":{"color":"White","storage":"256GB","carrier":"Unlocked"}}]},{"id":202,"name":"Laptops","products":[{"id":4001,"name":"MacBook Pro","price":2399.99,"stock":10,"details":{"screenSize":"16 inch","processor":"M1","ram":"16GB","storage":"512GB SSD"}},{"id":4002,"name":"Dell XPS 13","price":1299.99,"stock":15,"details":{"screenSize":"13 inch","processor":"Intel i7","ram":"16GB","storage":"256GB SSD"}}]}]}],"employees":[{"id":5001,"name":"John Doe","position":"Manager","schedule":[{"day":"Monday","shift":"9am-5pm"},{"day":"Wednesday","shift":"9am-5pm"},{"day":"Friday","shift":"9am-5pm"}]},{"id":5002,"name":"Jane Smith","position":"Cashier","schedule":[{"day":"Tuesday","shift":"10am-6pm"},{"day":"Thursday","shift":"10am-6pm"},{"day":"Saturday","shift":"12pm-8pm"}]}]},"customers":[{"id":6001,"name":"Alice Johnson","email":"alice.johnson@example.com","orders":[{"orderId":7001,"date":"2024-09-01","status":"Shipped","items":[{"productId":1001,"quantity":10},{"productId":2001,"quantity":2}],"total":12.48},{"orderId":7002,"date":"2024-09-15","status":"Delivered","items":[{"productId":3001,"quantity":1}],"total":999.99}]},{"id":6002,"name":"Bob Williams","email":"bob.williams@example.com","orders":[{"orderId":7003,"date":"2024-09-07","status":"Pending","items":[{"productId":1002,"quantity":5},{"productId":4001,"quantity":1}],"total":2403.94}]}]},{"store":{"name":"SuperMart","location":{"address":"123 Market Street","city":"Metropolis","state":"NY","zip":"10001"},"departments":[{"id":1,"name":"Groceries","categories":[{"id":101,"name":"Fruits & Vegetables","products":[{"id":1001,"name":"Apple","price":0.99,"stock":120,"details":{"weight":"1lb","origin":"USA","organic":true}},{"id":1002,"name":"Banana","price":0.39,"stock":200,"details":{"weight":"1lb","origin":"Ecuador","organic":false}}]},{"id":102,"name":"Dairy","products":[{"id":2001,"name":"Milk","price":3.49,"stock":50,"details":{"volume":"1 gallon","fatContent":"2%","brand":"DairyPure"}},{"id":2002,"name":"Cheddar Cheese","price":5.99,"stock":75,"details":{"weight":"8oz","origin":"Wisconsin","aged":"2 years"}}]}]},{"id":2,"name":"Electronics","categories":[{"id":201,"name":"Smartphones","products":[{"id":3001,"name":"iPhone 14","price":999.99,"stock":30,"details":{"color":"Black","storage":"128GB","carrier":"Unlocked"}},{"id":3002,"name":"Samsung Galaxy S21","price":849.99,"stock":25,"details":{"color":"White","storage":"256GB","carrier":"Unlocked"}}]},{"id":202,"name":"Laptops","products":[{"id":4001,"name":"MacBook Pro","price":2399.99,"stock":10,"details":{"screenSize":"16 inch","processor":"M1","ram":"16GB","storage":"512GB SSD"}},{"id":4002,"name":"Dell XPS 13","price":1299.99,"stock":15,"details":{"screenSize":"13 inch","processor":"Intel i7","ram":"16GB","storage":"256GB SSD"}}]}]}],"employees":[{"id":5001,"name":"John Doe","position":"Manager","schedule":[{"day":"Monday","shift":"9am-5pm"},{"day":"Wednesday","shift":"9am-5pm"},{"day":"Friday","shift":"9am-5pm"}]},{"id":5002,"name":"Jane Smith","position":"Cashier","schedule":[{"day":"Tuesday","shift":"10am-6pm"},{"day":"Thursday","shift":"10am-6pm"},{"day":"Saturday","shift":"12pm-8pm"}]}]},"customers":[{"id":6001,"name":"Alice Johnson","email":"alice.johnson@example.com","orders":[{"orderId":7001,"date":"2024-09-01","status":"Shipped","items":[{"productId":1001,"quantity":10},{"productId":2001,"quantity":2}],"total":12.48},{"orderId":7002,"date":"2024-09-15","status":"Delivered","items":[{"productId":3001,"quantity":1}],"total":999.99}]},{"id":6002,"name":"Bob Williams","email":"bob.williams@example.com","orders":[{"orderId":7003,"date":"2024-09-07","status":"Pending","items":[{"productId":1002,"quantity":5},{"productId":4001,"quantity":1}],"total":2403.94}]}]},{"store":{"name":"SuperMart","location":{"address":"123 Market Street","city":"Metropolis","state":"NY","zip":"10001"},"departments":[{"id":1,"name":"Groceries","categories":[{"id":101,"name":"Fruits & Vegetables","products":[{"id":1001,"name":"Apple","price":0.99,"stock":120,"details":{"weight":"1lb","origin":"USA","organic":true}},{"id":1002,"name":"Banana","price":0.39,"stock":200,"details":{"weight":"1lb","origin":"Ecuador","organic":false}}]},{"id":102,"name":"Dairy","products":[{"id":2001,"name":"Milk","price":3.49,"stock":50,"details":{"volume":"1 gallon","fatContent":"2%","brand":"DairyPure"}},{"id":2002,"name":"Cheddar Cheese","price":5.99,"stock":75,"details":{"weight":"8oz","origin":"Wisconsin","aged":"2 years"}}]}]},{"id":2,"name":"Electronics","categories":[{"id":201,"name":"Smartphones","products":[{"id":3001,"name":"iPhone 14","price":999.99,"stock":30,"details":{"color":"Black","storage":"128GB","carrier":"Unlocked"}},{"id":3002,"name":"Samsung Galaxy S21","price":849.99,"stock":25,"details":{"color":"White","storage":"256GB","carrier":"Unlocked"}}]},{"id":202,"name":"Laptops","products":[{"id":4001,"name":"MacBook Pro","price":2399.99,"stock":10,"details":{"screenSize":"16 inch","processor":"M1","ram":"16GB","storage":"512GB SSD"}},{"id":4002,"name":"Dell XPS 13","price":1299.99,"stock":15,"details":{"screenSize":"13 inch","processor":"Intel i7","ram":"16GB","storage":"256GB SSD"}}]}]}],"employees":[{"id":5001,"name":"John Doe","position":"Manager","schedule":[{"day":"Monday","shift":"9am-5pm"},{"day":"Wednesday","shift":"9am-5pm"},{"day":"Friday","shift":"9am-5pm"}]},{"id":5002,"name":"Jane Smith","position":"Cashier","schedule":[{"day":"Tuesday","shift":"10am-6pm"},{"day":"Thursday","shift":"10am-6pm"},{"day":"Saturday","shift":"12pm-8pm"}]}]},"customers":[{"id":6001,"name":"Alice Johnson","email":"alice.johnson@example.com","orders":[{"orderId":7001,"date":"2024-09-01","status":"Shipped","items":[{"productId":1001,"quantity":10},{"productId":2001,"quantity":2}],"total":12.48},{"orderId":7002,"date":"2024-09-15","status":"Delivered","items":[{"productId":3001,"quantity":1}],"total":999.99}]},{"id":6002,"name":"Bob Williams","email":"bob.williams@example.com","orders":[{"orderId":7003,"date":"2024-09-07","status":"Pending","items":[{"productId":1002,"quantity":5},{"productId":4001,"quantity":1}],"total":2403.94}]}]},{"store":{"name":"SuperMart","location":{"address":"123 Market Street","city":"Metropolis","state":"NY","zip":"10001"},"departments":[{"id":1,"name":"Groceries","categories":[{"id":101,"name":"Fruits & Vegetables","products":[{"id":1001,"name":"Apple","price":0.99,"stock":120,"details":{"weight":"1lb","origin":"USA","organic":true}},{"id":1002,"name":"Banana","price":0.39,"stock":200,"details":{"weight":"1lb","origin":"Ecuador","organic":false}}]},{"id":102,"name":"Dairy","products":[{"id":2001,"name":"Milk","price":3.49,"stock":50,"details":{"volume":"1 gallon","fatContent":"2%","brand":"DairyPure"}},{"id":2002,"name":"Cheddar Cheese","price":5.99,"stock":75,"details":{"weight":"8oz","origin":"Wisconsin","aged":"2 years"}}]}]},{"id":2,"name":"Electronics","categories":[{"id":201,"name":"Smartphones","products":[{"id":3001,"name":"iPhone 14","price":999.99,"stock":30,"details":{"color":"Black","storage":"128GB","carrier":"Unlocked"}},{"id":3002,"name":"Samsung Galaxy S21","price":849.99,"stock":25,"details":{"color":"White","storage":"256GB","carrier":"Unlocked"}}]},{"id":202,"name":"Laptops","products":[{"id":4001,"name":"MacBook Pro","price":2399.99,"stock":10,"details":{"screenSize":"16 inch","processor":"M1","ram":"16GB","storage":"512GB SSD"}},{"id":4002,"name":"Dell XPS 13","price":1299.99,"stock":15,"details":{"screenSize":"13 inch","processor":"Intel i7","ram":"16GB","storage":"256GB SSD"}}]}]}],"employees":[{"id":5001,"name":"John Doe","position":"Manager","schedule":[{"day":"Monday","shift":"9am-5pm"},{"day":"Wednesday","shift":"9am-5pm"},{"day":"Friday","shift":"9am-5pm"}]},{"id":5002,"name":"Jane Smith","position":"Cashier","schedule":[{"day":"Tuesday","shift":"10am-6pm"},{"day":"Thursday","shift":"10am-6pm"},{"day":"Saturday","shift":"12pm-8pm"}]}]},"customers":[{"id":6001,"name":"Alice Johnson","email":"alice.johnson@example.com","orders":[{"orderId":7001,"date":"2024-09-01","status":"Shipped","items":[{"productId":1001,"quantity":10},{"productId":2001,"quantity":2}],"total":12.48},{"orderId":7002,"date":"2024-09-15","status":"Delivered","items":[{"productId":3001,"quantity":1}],"total":999.99}]},{"id":6002,"name":"Bob Williams","email":"bob.williams@example.com","orders":[{"orderId":7003,"date":"2024-09-07","status":"Pending","items":[{"productId":1002,"quantity":5},{"productId":4001,"quantity":1}],"total":2403.94}]}]},{"store":{"name":"SuperMart","location":{"address":"123 Market Street","city":"Metropolis","state":"NY","zip":"10001"},"departments":[{"id":1,"name":"Groceries","categories":[{"id":101,"name":"Fruits & Vegetables","products":[{"id":1001,"name":"Apple","price":0.99,"stock":120,"details":{"weight":"1lb","origin":"USA","organic":true}},{"id":1002,"name":"Banana","price":0.39,"stock":200,"details":{"weight":"1lb","origin":"Ecuador","organic":false}}]},{"id":102,"name":"Dairy","products":[{"id":2001,"name":"Milk","price":3.49,"stock":50,"details":{"volume":"1 gallon","fatContent":"2%","brand":"DairyPure"}},{"id":2002,"name":"Cheddar Cheese","price":5.99,"stock":75,"details":{"weight":"8oz","origin":"Wisconsin","aged":"2 years"}}]}]},{"id":2,"name":"Electronics","categories":[{"id":201,"name":"Smartphones","products":[{"id":3001,"name":"iPhone 14","price":999.99,"stock":30,"details":{"color":"Black","storage":"128GB","carrier":"Unlocked"}},{"id":3002,"name":"Samsung Galaxy S21","price":849.99,"stock":25,"details":{"color":"White","storage":"256GB","carrier":"Unlocked"}}]},{"id":202,"name":"Laptops","products":[{"id":4001,"name":"MacBook Pro","price":2399.99,"stock":10,"details":{"screenSize":"16 inch","processor":"M1","ram":"16GB","storage":"512GB SSD"}},{"id":4002,"name":"Dell XPS 13","price":1299.99,"stock":15,"details":{"screenSize":"13 inch","processor":"Intel i7","ram":"16GB","storage":"256GB SSD"}}]}]}],"employees":[{"id":5001,"name":"John Doe","position":"Manager","schedule":[{"day":"Monday","shift":"9am-5pm"},{"day":"Wednesday","shift":"9am-5pm"},{"day":"Friday","shift":"9am-5pm"}]},{"id":5002,"name":"Jane Smith","position":"Cashier","schedule":[{"day":"Tuesday","shift":"10am-6pm"},{"day":"Thursday","shift":"10am-6pm"},{"day":"Saturday","shift":"12pm-8pm"}]}]},"customers":[{"id":6001,"name":"Alice Johnson","email":"alice.johnson@example.com","orders":[{"orderId":7001,"date":"2024-09-01","status":"Shipped","items":[{"productId":1001,"quantity":10},{"productId":2001,"quantity":2}],"total":12.48},{"orderId":7002,"date":"2024-09-15","status":"Delivered","items":[{"productId":3001,"quantity":1}],"total":999.99}]},{"id":6002,"name":"Bob Williams","email":"bob.williams@example.com","orders":[{"orderId":7003,"date":"2024-09-07","status":"Pending","items":[{"productId":1002,"quantity":5},{"productId":4001,"quantity":1}],"total":2403.94}]}]},{"store":{"name":"SuperMart","location":{"address":"123 Market Street","city":"Metropolis","state":"NY","zip":"10001"},"departments":[{"id":1,"name":"Groceries","categories":[{"id":101,"name":"Fruits & Vegetables","products":[{"id":1001,"name":"Apple","price":0.99,"stock":120,"details":{"weight":"1lb","origin":"USA","organic":true}},{"id":1002,"name":"Banana","price":0.39,"stock":200,"details":{"weight":"1lb","origin":"Ecuador","organic":false}}]},{"id":102,"name":"Dairy","products":[{"id":2001,"name":"Milk","price":3.49,"stock":50,"details":{"volume":"1 gallon","fatContent":"2%","brand":"DairyPure"}},{"id":2002,"name":"Cheddar Cheese","price":5.99,"stock":75,"details":{"weight":"8oz","origin":"Wisconsin","aged":"2 years"}}]}]},{"id":2,"name":"Electronics","categories":[{"id":201,"name":"Smartphones","products":[{"id":3001,"name":"iPhone 14","price":999.99,"stock":30,"details":{"color":"Black","storage":"128GB","carrier":"Unlocked"}},{"id":3002,"name":"Samsung Galaxy S21","price":849.99,"stock":25,"details":{"color":"White","storage":"256GB","carrier":"Unlocked"}}]},{"id":202,"name":"Laptops","products":[{"id":4001,"name":"MacBook Pro","price":2399.99,"stock":10,"details":{"screenSize":"16 inch","processor":"M1","ram":"16GB","storage":"512GB SSD"}},{"id":4002,"name":"Dell XPS 13","price":1299.99,"stock":15,"details":{"screenSize":"13 inch","processor":"Intel i7","ram":"16GB","storage":"256GB SSD"}}]}]}],"employees":[{"id":5001,"name":"John Doe","position":"Manager","schedule":[{"day":"Monday","shift":"9am-5pm"},{"day":"Wednesday","shift":"9am-5pm"},{"day":"Friday","shift":"9am-5pm"}]},{"id":5002,"name":"Jane Smith","position":"Cashier","schedule":[{"day":"Tuesday","shift":"10am-6pm"},{"day":"Thursday","shift":"10am-6pm"},{"day":"Saturday","shift":"12pm-8pm"}]}]},"customers":[{"id":6001,"name":"Alice Johnson","email":"alice.johnson@example.com","orders":[{"orderId":7001,"date":"2024-09-01","status":"Shipped","items":[{"productId":1001,"quantity":10},{"productId":2001,"quantity":2}],"total":12.48},{"orderId":7002,"date":"2024-09-15","status":"Delivered","items":[{"productId":3001,"quantity":1}],"total":999.99}]},{"id":6002,"name":"Bob Williams","email":"bob.williams@example.com","orders":[{"orderId":7003,"date":"2024-09-07","status":"Pending","items":[{"productId":1002,"quantity":5},{"productId":4001,"quantity":1}],"total":2403.94}]}]},{"store":{"name":"SuperMart","location":{"address":"123 Market Street","city":"Metropolis","state":"NY","zip":"10001"},"departments":[{"id":1,"name":"Groceries","categories":[{"id":101,"name":"Fruits & Vegetables","products":[{"id":1001,"name":"Apple","price":0.99,"stock":120,"details":{"weight":"1lb","origin":"USA","organic":true}},{"id":1002,"name":"Banana","price":0.39,"stock":200,"details":{"weight":"1lb","origin":"Ecuador","organic":false}}]},{"id":102,"name":"Dairy","products":[{"id":2001,"name":"Milk","price":3.49,"stock":50,"details":{"volume":"1 gallon","fatContent":"2%","brand":"DairyPure"}},{"id":2002,"name":"Cheddar Cheese","price":5.99,"stock":75,"details":{"weight":"8oz","origin":"Wisconsin","aged":"2 years"}}]}]},{"id":2,"name":"Electronics","categories":[{"id":201,"name":"Smartphones","products":[{"id":3001,"name":"iPhone 14","price":999.99,"stock":30,"details":{"color":"Black","storage":"128GB","carrier":"Unlocked"}},{"id":3002,"name":"Samsung Galaxy S21","price":849.99,"stock":25,"details":{"color":"White","storage":"256GB","carrier":"Unlocked"}}]},{"id":202,"name":"Laptops","products":[{"id":4001,"name":"MacBook Pro","price":2399.99,"stock":10,"details":{"screenSize":"16 inch","processor":"M1","ram":"16GB","storage":"512GB SSD"}},{"id":4002,"name":"Dell XPS 13","price":1299.99,"stock":15,"details":{"screenSize":"13 inch","processor":"Intel i7","ram":"16GB","storage":"256GB SSD"}}]}]}],"employees":[{"id":5001,"name":"John Doe","position":"Manager","schedule":[{"day":"Monday","shift":"9am-5pm"},{"day":"Wednesday","shift":"9am-5pm"},{"day":"Friday","shift":"9am-5pm"}]},{"id":5002,"name":"Jane Smith","position":"Cashier","schedule":[{"day":"Tuesday","shift":"10am-6pm"},{"day":"Thursday","shift":"10am-6pm"},{"day":"Saturday","shift":"12pm-8pm"}]}]},"customers":[{"id":6001,"name":"Alice Johnson","email":"alice.johnson@example.com","orders":[{"orderId":7001,"date":"2024-09-01","status":"Shipped","items":[{"productId":1001,"quantity":10},{"productId":2001,"quantity":2}],"total":12.48},{"orderId":7002,"date":"2024-09-15","status":"Delivered","items":[{"productId":3001,"quantity":1}],"total":999.99}]},{"id":6002,"name":"Bob Williams","email":"bob.williams@example.com","orders":[{"orderId":7003,"date":"2024-09-07","status":"Pending","items":[{"productId":1002,"quantity":5},{"productId":4001,"quantity":1}],"total":2403.94}]}]},{"store":{"name":"SuperMart","location":{"address":"123 Market Street","city":"Metropolis","state":"NY","zip":"10001"},"departments":[{"id":1,"name":"Groceries","categories":[{"id":101,"name":"Fruits & Vegetables","products":[{"id":1001,"name":"Apple","price":0.99,"stock":120,"details":{"weight":"1lb","origin":"USA","organic":true}},{"id":1002,"name":"Banana","price":0.39,"stock":200,"details":{"weight":"1lb","origin":"Ecuador","organic":false}}]},{"id":102,"name":"Dairy","products":[{"id":2001,"name":"Milk","price":3.49,"stock":50,"details":{"volume":"1 gallon","fatContent":"2%","brand":"DairyPure"}},{"id":2002,"name":"Cheddar Cheese","price":5.99,"stock":75,"details":{"weight":"8oz","origin":"Wisconsin","aged":"2 years"}}]}]},{"id":2,"name":"Electronics","categories":[{"id":201,"name":"Smartphones","products":[{"id":3001,"name":"iPhone 14","price":999.99,"stock":30,"details":{"color":"Black","storage":"128GB","carrier":"Unlocked"}},{"id":3002,"name":"Samsung Galaxy S21","price":849.99,"stock":25,"details":{"color":"White","storage":"256GB","carrier":"Unlocked"}}]},{"id":202,"name":"Laptops","products":[{"id":4001,"name":"MacBook Pro","price":2399.99,"stock":10,"details":{"screenSize":"16 inch","processor":"M1","ram":"16GB","storage":"512GB SSD"}},{"id":4002,"name":"Dell XPS 13","price":1299.99,"stock":15,"details":{"screenSize":"13 inch","processor":"Intel i7","ram":"16GB","storage":"256GB SSD"}}]}]}],"employees":[{"id":5001,"name":"John Doe","position":"Manager","schedule":[{"day":"Monday","shift":"9am-5pm"},{"day":"Wednesday","shift":"9am-5pm"},{"day":"Friday","shift":"9am-5pm"}]},{"id":5002,"name":"Jane Smith","position":"Cashier","schedule":[{"day":"Tuesday","shift":"10am-6pm"},{"day":"Thursday","shift":"10am-6pm"},{"day":"Saturday","shift":"12pm-8pm"}]}]},"customers":[{"id":6001,"name":"Alice Johnson","email":"alice.johnson@example.com","orders":[{"orderId":7001,"date":"2024-09-01","status":"Shipped","items":[{"productId":1001,"quantity":10},{"productId":2001,"quantity":2}],"total":12.48},{"orderId":7002,"date":"2024-09-15","status":"Delivered","items":[{"productId":3001,"quantity":1}],"total":999.99}]},{"id":6002,"name":"Bob Williams","email":"bob.williams@example.com","orders":[{"orderId":7003,"date":"2024-09-07","status":"Pending","items":[{"productId":1002,"quantity":5},{"productId":4001,"quantity":1}],"total":2403.94}]}]},{"store":{"name":"SuperMart","location":{"address":"123 Market Street","city":"Metropolis","state":"NY","zip":"10001"},"departments":[{"id":1,"name":"Groceries","categories":[{"id":101,"name":"Fruits & Vegetables","products":[{"id":1001,"name":"Apple","price":0.99,"stock":120,"details":{"weight":"1lb","origin":"USA","organic":true}},{"id":1002,"name":"Banana","price":0.39,"stock":200,"details":{"weight":"1lb","origin":"Ecuador","organic":false}}]},{"id":102,"name":"Dairy","products":[{"id":2001,"name":"Milk","price":3.49,"stock":50,"details":{"volume":"1 gallon","fatContent":"2%","brand":"DairyPure"}},{"id":2002,"name":"Cheddar Cheese","price":5.99,"stock":75,"details":{"weight":"8oz","origin":"Wisconsin","aged":"2 years"}}]}]},{"id":2,"name":"Electronics","categories":[{"id":201,"name":"Smartphones","products":[{"id":3001,"name":"iPhone 14","price":999.99,"stock":30,"details":{"color":"Black","storage":"128GB","carrier":"Unlocked"}},{"id":3002,"name":"Samsung Galaxy S21","price":849.99,"stock":25,"details":{"color":"White","storage":"256GB","carrier":"Unlocked"}}]},{"id":202,"name":"Laptops","products":[{"id":4001,"name":"MacBook Pro","price":2399.99,"stock":10,"details":{"screenSize":"16 inch","processor":"M1","ram":"16GB","storage":"512GB SSD"}},{"id":4002,"name":"Dell XPS 13","price":1299.99,"stock":15,"details":{"screenSize":"13 inch","processor":"Intel i7","ram":"16GB","storage":"256GB SSD"}}]}]}],"employees":[{"id":5001,"name":"John Doe","position":"Manager","schedule":[{"day":"Monday","shift":"9am-5pm"},{"day":"Wednesday","shift":"9am-5pm"},{"day":"Friday","shift":"9am-5pm"}]},{"id":5002,"name":"Jane Smith","position":"Cashier","schedule":[{"day":"Tuesday","shift":"10am-6pm"},{"day":"Thursday","shift":"10am-6pm"},{"day":"Saturday","shift":"12pm-8pm"}]}]},"customers":[{"id":6001,"name":"Alice Johnson","email":"alice.johnson@example.com","orders":[{"orderId":7001,"date":"2024-09-01","status":"Shipped","items":[{"productId":1001,"quantity":10},{"productId":2001,"quantity":2}],"total":12.48},{"orderId":7002,"date":"2024-09-15","status":"Delivered","items":[{"productId":3001,"quantity":1}],"total":999.99}]},{"id":6002,"name":"Bob Williams","email":"bob.williams@example.com","orders":[{"orderId":7003,"date":"2024-09-07","status":"Pending","items":[{"productId":1002,"quantity":5},{"productId":4001,"quantity":1}],"total":2403.94}]}]},{"store":{"name":"SuperMart","location":{"address":"123 Market Street","city":"Metropolis","state":"NY","zip":"10001"},"departments":[{"id":1,"name":"Groceries","categories":[{"id":101,"name":"Fruits & Vegetables","products":[{"id":1001,"name":"Apple","price":0.99,"stock":120,"details":{"weight":"1lb","origin":"USA","organic":true}},{"id":1002,"name":"Banana","price":0.39,"stock":200,"details":{"weight":"1lb","origin":"Ecuador","organic":false}}]},{"id":102,"name":"Dairy","products":[{"id":2001,"name":"Milk","price":3.49,"stock":50,"details":{"volume":"1 gallon","fatContent":"2%","brand":"DairyPure"}},{"id":2002,"name":"Cheddar Cheese","price":5.99,"stock":75,"details":{"weight":"8oz","origin":"Wisconsin","aged":"2 years"}}]}]},{"id":2,"name":"Electronics","categories":[{"id":201,"name":"Smartphones","products":[{"id":3001,"name":"iPhone 14","price":999.99,"stock":30,"details":{"color":"Black","storage":"128GB","carrier":"Unlocked"}},{"id":3002,"name":"Samsung Galaxy S21","price":849.99,"stock":25,"details":{"color":"White","storage":"256GB","carrier":"Unlocked"}}]},{"id":202,"name":"Laptops","products":[{"id":4001,"name":"MacBook Pro","price":2399.99,"stock":10,"details":{"screenSize":"16 inch","processor":"M1","ram":"16GB","storage":"512GB SSD"}},{"id":4002,"name":"Dell XPS 13","price":1299.99,"stock":15,"details":{"screenSize":"13 inch","processor":"Intel i7","ram":"16GB","storage":"256GB SSD"}}]}]}],"employees":[{"id":5001,"name":"John Doe","position":"Manager","schedule":[{"day":"Monday","shift":"9am-5pm"},{"day":"Wednesday","shift":"9am-5pm"},{"day":"Friday","shift":"9am-5pm"}]},{"id":5002,"name":"Jane Smith","position":"Cashier","schedule":[{"day":"Tuesday","shift":"10am-6pm"},{"day":"Thursday","shift":"10am-6pm"},{"day":"Saturday","shift":"12pm-8pm"}]}]},"customers":[{"id":6001,"name":"Alice Johnson","email":"alice.johnson@example.com","orders":[{"orderId":7001,"date":"2024-09-01","status":"Shipped","items":[{"productId":1001,"quantity":10},{"productId":2001,"quantity":2}],"total":12.48},{"orderId":7002,"date":"2024-09-15","status":"Delivered","items":[{"productId":3001,"quantity":1}],"total":999.99}]},{"id":6002,"name":"Bob Williams","email":"bob.williams@example.com","orders":[{"orderId":7003,"date":"2024-09-07","status":"Pending","items":[{"productId":1002,"quantity":5},{"productId":4001,"quantity":1}],"total":2403.94}]}]},{"store":{"name":"SuperMart","location":{"address":"123 Market Street","city":"Metropolis","state":"NY","zip":"10001"},"departments":[{"id":1,"name":"Groceries","categories":[{"id":101,"name":"Fruits & Vegetables","products":[{"id":1001,"name":"Apple","price":0.99,"stock":120,"details":{"weight":"1lb","origin":"USA","organic":true}},{"id":1002,"name":"Banana","price":0.39,"stock":200,"details":{"weight":"1lb","origin":"Ecuador","organic":false}}]},{"id":102,"name":"Dairy","products":[{"id":2001,"name":"Milk","price":3.49,"stock":50,"details":{"volume":"1 gallon","fatContent":"2%","brand":"DairyPure"}},{"id":2002,"name":"Cheddar Cheese","price":5.99,"stock":75,"details":{"weight":"8oz","origin":"Wisconsin","aged":"2 years"}}]}]},{"id":2,"name":"Electronics","categories":[{"id":201,"name":"Smartphones","products":[{"id":3001,"name":"iPhone 14","price":999.99,"stock":30,"details":{"color":"Black","storage":"128GB","carrier":"Unlocked"}},{"id":3002,"name":"Samsung Galaxy S21","price":849.99,"stock":25,"details":{"color":"White","storage":"256GB","carrier":"Unlocked"}}]},{"id":202,"name":"Laptops","products":[{"id":4001,"name":"MacBook Pro","price":2399.99,"stock":10,"details":{"screenSize":"16 inch","processor":"M1","ram":"16GB","storage":"512GB SSD"}},{"id":4002,"name":"Dell XPS 13","price":1299.99,"stock":15,"details":{"screenSize":"13 inch","processor":"Intel i7","ram":"16GB","storage":"256GB SSD"}}]}]}],"employees":[{"id":5001,"name":"John Doe","position":"Manager","schedule":[{"day":"Monday","shift":"9am-5pm"},{"day":"Wednesday","shift":"9am-5pm"},{"day":"Friday","shift":"9am-5pm"}]},{"id":5002,"name":"Jane Smith","position":"Cashier","schedule":[{"day":"Tuesday","shift":"10am-6pm"},{"day":"Thursday","shift":"10am-6pm"},{"day":"Saturday","shift":"12pm-8pm"}]}]},"customers":[{"id":6001,"name":"Alice Johnson","email":"alice.johnson@example.com","orders":[{"orderId":7001,"date":"2024-09-01","status":"Shipped","items":[{"productId":1001,"quantity":10},{"productId":2001,"quantity":2}],"total":12.48},{"orderId":7002,"date":"2024-09-15","status":"Delivered","items":[{"productId":3001,"quantity":1}],"total":999.99}]},{"id":6002,"name":"Bob Williams","email":"bob.williams@example.com","orders":[{"orderId":7003,"date":"2024-09-07","status":"Pending","items":[{"productId":1002,"quantity":5},{"productId":4001,"quantity":1}],"total":2403.94}]}]},{"store":{"name":"SuperMart","location":{"address":"123 Market Street","city":"Metropolis","state":"NY","zip":"10001"},"departments":[{"id":1,"name":"Groceries","categories":[{"id":101,"name":"Fruits & Vegetables","products":[{"id":1001,"name":"Apple","price":0.99,"stock":120,"details":{"weight":"1lb","origin":"USA","organic":true}},{"id":1002,"name":"Banana","price":0.39,"stock":200,"details":{"weight":"1lb","origin":"Ecuador","organic":false}}]},{"id":102,"name":"Dairy","products":[{"id":2001,"name":"Milk","price":3.49,"stock":50,"details":{"volume":"1 gallon","fatContent":"2%","brand":"DairyPure"}},{"id":2002,"name":"Cheddar Cheese","price":5.99,"stock":75,"details":{"weight":"8oz","origin":"Wisconsin","aged":"2 years"}}]}]},{"id":2,"name":"Electronics","categories":[{"id":201,"name":"Smartphones","products":[{"id":3001,"name":"iPhone 14","price":999.99,"stock":30,"details":{"color":"Black","storage":"128GB","carrier":"Unlocked"}},{"id":3002,"name":"Samsung Galaxy S21","price":849.99,"stock":25,"details":{"color":"White","storage":"256GB","carrier":"Unlocked"}}]},{"id":202,"name":"Laptops","products":[{"id":4001,"name":"MacBook Pro","price":2399.99,"stock":10,"details":{"screenSize":"16 inch","processor":"M1","ram":"16GB","storage":"512GB SSD"}},{"id":4002,"name":"Dell XPS 13","price":1299.99,"stock":15,"details":{"screenSize":"13 inch","processor":"Intel i7","ram":"16GB","storage":"256GB SSD"}}]}]}],"employees":[{"id":5001,"name":"John Doe","position":"Manager","schedule":[{"day":"Monday","shift":"9am-5pm"},{"day":"Wednesday","shift":"9am-5pm"},{"day":"Friday","shift":"9am-5pm"}]},{"id":5002,"name":"Jane Smith","position":"Cashier","schedule":[{"day":"Tuesday","shift":"10am-6pm"},{"day":"Thursday","shift":"10am-6pm"},{"day":"Saturday","shift":"12pm-8pm"}]}]},"customers":[{"id":6001,"name":"Alice Johnson","email":"alice.johnson@example.com","orders":[{"orderId":7001,"date":"2024-09-01","status":"Shipped","items":[{"productId":1001,"quantity":10},{"productId":2001,"quantity":2}],"total":12.48},{"orderId":7002,"date":"2024-09-15","status":"Delivered","items":[{"productId":3001,"quantity":1}],"total":999.99}]},{"id":6002,"name":"Bob Williams","email":"bob.williams@example.com","orders":[{"orderId":7003,"date":"2024-09-07","status":"Pending","items":[{"productId":1002,"quantity":5},{"productId":4001,"quantity":1}],"total":2403.94}]}]},{"store":{"name":"SuperMart","location":{"address":"123 Market Street","city":"Metropolis","state":"NY","zip":"10001"},"departments":[{"id":1,"name":"Groceries","categories":[{"id":101,"name":"Fruits & Vegetables","products":[{"id":1001,"name":"Apple","price":0.99,"stock":120,"details":{"weight":"1lb","origin":"USA","organic":true}},{"id":1002,"name":"Banana","price":0.39,"stock":200,"details":{"weight":"1lb","origin":"Ecuador","organic":false}}]},{"id":102,"name":"Dairy","products":[{"id":2001,"name":"Milk","price":3.49,"stock":50,"details":{"volume":"1 gallon","fatContent":"2%","brand":"DairyPure"}},{"id":2002,"name":"Cheddar Cheese","price":5.99,"stock":75,"details":{"weight":"8oz","origin":"Wisconsin","aged":"2 years"}}]}]},{"id":2,"name":"Electronics","categories":[{"id":201,"name":"Smartphones","products":[{"id":3001,"name":"iPhone 14","price":999.99,"stock":30,"details":{"color":"Black","storage":"128GB","carrier":"Unlocked"}},{"id":3002,"name":"Samsung Galaxy S21","price":849.99,"stock":25,"details":{"color":"White","storage":"256GB","carrier":"Unlocked"}}]},{"id":202,"name":"Laptops","products":[{"id":4001,"name":"MacBook Pro","price":2399.99,"stock":10,"details":{"screenSize":"16 inch","processor":"M1","ram":"16GB","storage":"512GB SSD"}},{"id":4002,"name":"Dell XPS 13","price":1299.99,"stock":15,"details":{"screenSize":"13 inch","processor":"Intel i7","ram":"16GB","storage":"256GB SSD"}}]}]}],"employees":[{"id":5001,"name":"John Doe","position":"Manager","schedule":[{"day":"Monday","shift":"9am-5pm"},{"day":"Wednesday","shift":"9am-5pm"},{"day":"Friday","shift":"9am-5pm"}]},{"id":5002,"name":"Jane Smith","position":"Cashier","schedule":[{"day":"Tuesday","shift":"10am-6pm"},{"day":"Thursday","shift":"10am-6pm"},{"day":"Saturday","shift":"12pm-8pm"}]}]},"customers":[{"id":6001,"name":"Alice Johnson","email":"alice.johnson@example.com","orders":[{"orderId":7001,"date":"2024-09-01","status":"Shipped","items":[{"productId":1001,"quantity":10},{"productId":2001,"quantity":2}],"total":12.48},{"orderId":7002,"date":"2024-09-15","status":"Delivered","items":[{"productId":3001,"quantity":1}],"total":999.99}]},{"id":6002,"name":"Bob Williams","email":"bob.williams@example.com","orders":[{"orderId":7003,"date":"2024-09-07","status":"Pending","items":[{"productId":1002,"quantity":5},{"productId":4001,"quantity":1}],"total":2403.94}]}]},{"store":{"name":"SuperMart","location":{"address":"123 Market Street","city":"Metropolis","state":"NY","zip":"10001"},"departments":[{"id":1,"name":"Groceries","categories":[{"id":101,"name":"Fruits & Vegetables","products":[{"id":1001,"name":"Apple","price":0.99,"stock":120,"details":{"weight":"1lb","origin":"USA","organic":true}},{"id":1002,"name":"Banana","price":0.39,"stock":200,"details":{"weight":"1lb","origin":"Ecuador","organic":false}}]},{"id":102,"name":"Dairy","products":[{"id":2001,"name":"Milk","price":3.49,"stock":50,"details":{"volume":"1 gallon","fatContent":"2%","brand":"DairyPure"}},{"id":2002,"name":"Cheddar Cheese","price":5.99,"stock":75,"details":{"weight":"8oz","origin":"Wisconsin","aged":"2 years"}}]}]},{"id":2,"name":"Electronics","categories":[{"id":201,"name":"Smartphones","products":[{"id":3001,"name":"iPhone 14","price":999.99,"stock":30,"details":{"color":"Black","storage":"128GB","carrier":"Unlocked"}},{"id":3002,"name":"Samsung Galaxy S21","price":849.99,"stock":25,"details":{"color":"White","storage":"256GB","carrier":"Unlocked"}}]},{"id":202,"name":"Laptops","products":[{"id":4001,"name":"MacBook Pro","price":2399.99,"stock":10,"details":{"screenSize":"16 inch","processor":"M1","ram":"16GB","storage":"512GB SSD"}},{"id":4002,"name":"Dell XPS 13","price":1299.99,"stock":15,"details":{"screenSize":"13 inch","processor":"Intel i7","ram":"16GB","storage":"256GB SSD"}}]}]}],"employees":[{"id":5001,"name":"John Doe","position":"Manager","schedule":[{"day":"Monday","shift":"9am-5pm"},{"day":"Wednesday","shift":"9am-5pm"},{"day":"Friday","shift":"9am-5pm"}]},{"id":5002,"name":"Jane Smith","position":"Cashier","schedule":[{"day":"Tuesday","shift":"10am-6pm"},{"day":"Thursday","shift":"10am-6pm"},{"day":"Saturday","shift":"12pm-8pm"}]}]},"customers":[{"id":6001,"name":"Alice Johnson","email":"alice.johnson@example.com","orders":[{"orderId":7001,"date":"2024-09-01","status":"Shipped","items":[{"productId":1001,"quantity":10},{"productId":2001,"quantity":2}],"total":12.48},{"orderId":7002,"date":"2024-09-15","status":"Delivered","items":[{"productId":3001,"quantity":1}],"total":999.99}]},{"id":6002,"name":"Bob Williams","email":"bob.williams@example.com","orders":[{"orderId":7003,"date":"2024-09-07","status":"Pending","items":[{"productId":1002,"quantity":5},{"productId":4001,"quantity":1}],"total":2403.94}]}]},{"store":{"name":"SuperMart","location":{"address":"123 Market Street","city":"Metropolis","state":"NY","zip":"10001"},"departments":[{"id":1,"name":"Groceries","categories":[{"id":101,"name":"Fruits & Vegetables","products":[{"id":1001,"name":"Apple","price":0.99,"stock":120,"details":{"weight":"1lb","origin":"USA","organic":true}},{"id":1002,"name":"Banana","price":0.39,"stock":200,"details":{"weight":"1lb","origin":"Ecuador","organic":false}}]},{"id":102,"name":"Dairy","products":[{"id":2001,"name":"Milk","price":3.49,"stock":50,"details":{"volume":"1 gallon","fatContent":"2%","brand":"DairyPure"}},{"id":2002,"name":"Cheddar Cheese","price":5.99,"stock":75,"details":{"weight":"8oz","origin":"Wisconsin","aged":"2 years"}}]}]},{"id":2,"name":"Electronics","categories":[{"id":201,"name":"Smartphones","products":[{"id":3001,"name":"iPhone 14","price":999.99,"stock":30,"details":{"color":"Black","storage":"128GB","carrier":"Unlocked"}},{"id":3002,"name":"Samsung Galaxy S21","price":849.99,"stock":25,"details":{"color":"White","storage":"256GB","carrier":"Unlocked"}}]},{"id":202,"name":"Laptops","products":[{"id":4001,"name":"MacBook Pro","price":2399.99,"stock":10,"details":{"screenSize":"16 inch","processor":"M1","ram":"16GB","storage":"512GB SSD"}},{"id":4002,"name":"Dell XPS 13","price":1299.99,"stock":15,"details":{"screenSize":"13 inch","processor":"Intel i7","ram":"16GB","storage":"256GB SSD"}}]}]}],"employees":[{"id":5001,"name":"John Doe","position":"Manager","schedule":[{"day":"Monday","shift":"9am-5pm"},{"day":"Wednesday","shift":"9am-5pm"},{"day":"Friday","shift":"9am-5pm"}]},{"id":5002,"name":"Jane Smith","position":"Cashier","schedule":[{"day":"Tuesday","shift":"10am-6pm"},{"day":"Thursday","shift":"10am-6pm"},{"day":"Saturday","shift":"12pm-8pm"}]}]},"customers":[{"id":6001,"name":"Alice Johnson","email":"alice.johnson@example.com","orders":[{"orderId":7001,"date":"2024-09-01","status":"Shipped","items":[{"productId":1001,"quantity":10},{"productId":2001,"quantity":2}],"total":12.48},{"orderId":7002,"date":"2024-09-15","status":"Delivered","items":[{"productId":3001,"quantity":1}],"total":999.99}]},{"id":6002,"name":"Bob Williams","email":"bob.williams@example.com","orders":[{"orderId":7003,"date":"2024-09-07","status":"Pending","items":[{"productId":1002,"quantity":5},{"productId":4001,"quantity":1}],"total":2403.94}]}]},{"store":{"name":"SuperMart","location":{"address":"123 Market Street","city":"Metropolis","state":"NY","zip":"10001"},"departments":[{"id":1,"name":"Groceries","categories":[{"id":101,"name":"Fruits & Vegetables","products":[{"id":1001,"name":"Apple","price":0.99,"stock":120,"details":{"weight":"1lb","origin":"USA","organic":true}},{"id":1002,"name":"Banana","price":0.39,"stock":200,"details":{"weight":"1lb","origin":"Ecuador","organic":false}}]},{"id":102,"name":"Dairy","products":[{"id":2001,"name":"Milk","price":3.49,"stock":50,"details":{"volume":"1 gallon","fatContent":"2%","brand":"DairyPure"}},{"id":2002,"name":"Cheddar Cheese","price":5.99,"stock":75,"details":{"weight":"8oz","origin":"Wisconsin","aged":"2 years"}}]}]},{"id":2,"name":"Electronics","categories":[{"id":201,"name":"Smartphones","products":[{"id":3001,"name":"iPhone 14","price":999.99,"stock":30,"details":{"color":"Black","storage":"128GB","carrier":"Unlocked"}},{"id":3002,"name":"Samsung Galaxy S21","price":849.99,"stock":25,"details":{"color":"White","storage":"256GB","carrier":"Unlocked"}}]},{"id":202,"name":"Laptops","products":[{"id":4001,"name":"MacBook Pro","price":2399.99,"stock":10,"details":{"screenSize":"16 inch","processor":"M1","ram":"16GB","storage":"512GB SSD"}},{"id":4002,"name":"Dell XPS 13","price":1299.99,"stock":15,"details":{"screenSize":"13 inch","processor":"Intel i7","ram":"16GB","storage":"256GB SSD"}}]}]}],"employees":[{"id":5001,"name":"John Doe","position":"Manager","schedule":[{"day":"Monday","shift":"9am-5pm"},{"day":"Wednesday","shift":"9am-5pm"},{"day":"Friday","shift":"9am-5pm"}]},{"id":5002,"name":"Jane Smith","position":"Cashier","schedule":[{"day":"Tuesday","shift":"10am-6pm"},{"day":"Thursday","shift":"10am-6pm"},{"day":"Saturday","shift":"12pm-8pm"}]}]},"customers":[{"id":6001,"name":"Alice Johnson","email":"alice.johnson@example.com","orders":[{"orderId":7001,"date":"2024-09-01","status":"Shipped","items":[{"productId":1001,"quantity":10},{"productId":2001,"quantity":2}],"total":12.48},{"orderId":7002,"date":"2024-09-15","status":"Delivered","items":[{"productId":3001,"quantity":1}],"total":999.99}]},{"id":6002,"name":"Bob Williams","email":"bob.williams@example.com","orders":[{"orderId":7003,"date":"2024-09-07","status":"Pending","items":[{"productId":1002,"quantity":5},{"productId":4001,"quantity":1}],"total":2403.94}]}]},{"store":{"name":"SuperMart","location":{"address":"123 Market Street","city":"Metropolis","state":"NY","zip":"10001"},"departments":[{"id":1,"name":"Groceries","categories":[{"id":101,"name":"Fruits & Vegetables","products":[{"id":1001,"name":"Apple","price":0.99,"stock":120,"details":{"weight":"1lb","origin":"USA","organic":true}},{"id":1002,"name":"Banana","price":0.39,"stock":200,"details":{"weight":"1lb","origin":"Ecuador","organic":false}}]},{"id":102,"name":"Dairy","products":[{"id":2001,"name":"Milk","price":3.49,"stock":50,"details":{"volume":"1 gallon","fatContent":"2%","brand":"DairyPure"}},{"id":2002,"name":"Cheddar Cheese","price":5.99,"stock":75,"details":{"weight":"8oz","origin":"Wisconsin","aged":"2 years"}}]}]},{"id":2,"name":"Electronics","categories":[{"id":201,"name":"Smartphones","products":[{"id":3001,"name":"iPhone 14","price":999.99,"stock":30,"details":{"color":"Black","storage":"128GB","carrier":"Unlocked"}},{"id":3002,"name":"Samsung Galaxy S21","price":849.99,"stock":25,"details":{"color":"White","storage":"256GB","carrier":"Unlocked"}}]},{"id":202,"name":"Laptops","products":[{"id":4001,"name":"MacBook Pro","price":2399.99,"stock":10,"details":{"screenSize":"16 inch","processor":"M1","ram":"16GB","storage":"512GB SSD"}},{"id":4002,"name":"Dell XPS 13","price":1299.99,"stock":15,"details":{"screenSize":"13 inch","processor":"Intel i7","ram":"16GB","storage":"256GB SSD"}}]}]}],"employees":[{"id":5001,"name":"John Doe","position":"Manager","schedule":[{"day":"Monday","shift":"9am-5pm"},{"day":"Wednesday","shift":"9am-5pm"},{"day":"Friday","shift":"9am-5pm"}]},{"id":5002,"name":"Jane Smith","position":"Cashier","schedule":[{"day":"Tuesday","shift":"10am-6pm"},{"day":"Thursday","shift":"10am-6pm"},{"day":"Saturday","shift":"12pm-8pm"}]}]},"customers":[{"id":6001,"name":"Alice Johnson","email":"alice.johnson@example.com","orders":[{"orderId":7001,"date":"2024-09-01","status":"Shipped","items":[{"productId":1001,"quantity":10},{"productId":2001,"quantity":2}],"total":12.48},{"orderId":7002,"date":"2024-09-15","status":"Delivered","items":[{"productId":3001,"quantity":1}],"total":999.99}]},{"id":6002,"name":"Bob Williams","email":"bob.williams@example.com","orders":[{"orderId":7003,"date":"2024-09-07","status":"Pending","items":[{"productId":1002,"quantity":5},{"productId":4001,"quantity":1}],"total":2403.94}]}]},{"store":{"name":"SuperMart","location":{"address":"123 Market Street","city":"Metropolis","state":"NY","zip":"10001"},"departments":[{"id":1,"name":"Groceries","categories":[{"id":101,"name":"Fruits & Vegetables","products":[{"id":1001,"name":"Apple","price":0.99,"stock":120,"details":{"weight":"1lb","origin":"USA","organic":true}},{"id":1002,"name":"Banana","price":0.39,"stock":200,"details":{"weight":"1lb","origin":"Ecuador","organic":false}}]},{"id":102,"name":"Dairy","products":[{"id":2001,"name":"Milk","price":3.49,"stock":50,"details":{"volume":"1 gallon","fatContent":"2%","brand":"DairyPure"}},{"id":2002,"name":"Cheddar Cheese","price":5.99,"stock":75,"details":{"weight":"8oz","origin":"Wisconsin","aged":"2 years"}}]}]},{"id":2,"name":"Electronics","categories":[{"id":201,"name":"Smartphones","products":[{"id":3001,"name":"iPhone 14","price":999.99,"stock":30,"details":{"color":"Black","storage":"128GB","carrier":"Unlocked"}},{"id":3002,"name":"Samsung Galaxy S21","price":849.99,"stock":25,"details":{"color":"White","storage":"256GB","carrier":"Unlocked"}}]},{"id":202,"name":"Laptops","products":[{"id":4001,"name":"MacBook Pro","price":2399.99,"stock":10,"details":{"screenSize":"16 inch","processor":"M1","ram":"16GB","storage":"512GB SSD"}},{"id":4002,"name":"Dell XPS 13","price":1299.99,"stock":15,"details":{"screenSize":"13 inch","processor":"Intel i7","ram":"16GB","storage":"256GB SSD"}}]}]}],"employees":[{"id":5001,"name":"John Doe","position":"Manager","schedule":[{"day":"Monday","shift":"9am-5pm"},{"day":"Wednesday","shift":"9am-5pm"},{"day":"Friday","shift":"9am-5pm"}]},{"id":5002,"name":"Jane Smith","position":"Cashier","schedule":[{"day":"Tuesday","shift":"10am-6pm"},{"day":"Thursday","shift":"10am-6pm"},{"day":"Saturday","shift":"12pm-8pm"}]}]},"customers":[{"id":6001,"name":"Alice Johnson","email":"alice.johnson@example.com","orders":[{"orderId":7001,"date":"2024-09-01","status":"Shipped","items":[{"productId":1001,"quantity":10},{"productId":2001,"quantity":2}],"total":12.48},{"orderId":7002,"date":"2024-09-15","status":"Delivered","items":[{"productId":3001,"quantity":1}],"total":999.99}]},{"id":6002,"name":"Bob Williams","email":"bob.williams@example.com","orders":[{"orderId":7003,"date":"2024-09-07","status":"Pending","items":[{"productId":1002,"quantity":5},{"productId":4001,"quantity":1}],"total":2403.94}]}]},{"store":{"name":"SuperMart","location":{"address":"123 Market Street","city":"Metropolis","state":"NY","zip":"10001"},"departments":[{"id":1,"name":"Groceries","categories":[{"id":101,"name":"Fruits & Vegetables","products":[{"id":1001,"name":"Apple","price":0.99,"stock":120,"details":{"weight":"1lb","origin":"USA","organic":true}},{"id":1002,"name":"Banana","price":0.39,"stock":200,"details":{"weight":"1lb","origin":"Ecuador","organic":false}}]},{"id":102,"name":"Dairy","products":[{"id":2001,"name":"Milk","price":3.49,"stock":50,"details":{"volume":"1 gallon","fatContent":"2%","brand":"DairyPure"}},{"id":2002,"name":"Cheddar Cheese","price":5.99,"stock":75,"details":{"weight":"8oz","origin":"Wisconsin","aged":"2 years"}}]}]},{"id":2,"name":"Electronics","categories":[{"id":201,"name":"Smartphones","products":[{"id":3001,"name":"iPhone 14","price":999.99,"stock":30,"details":{"color":"Black","storage":"128GB","carrier":"Unlocked"}},{"id":3002,"name":"Samsung Galaxy S21","price":849.99,"stock":25,"details":{"color":"White","storage":"256GB","carrier":"Unlocked"}}]},{"id":202,"name":"Laptops","products":[{"id":4001,"name":"MacBook Pro","price":2399.99,"stock":10,"details":{"screenSize":"16 inch","processor":"M1","ram":"16GB","storage":"512GB SSD"}},{"id":4002,"name":"Dell XPS 13","price":1299.99,"stock":15,"details":{"screenSize":"13 inch","processor":"Intel i7","ram":"16GB","storage":"256GB SSD"}}]}]}],"employees":[{"id":5001,"name":"John Doe","position":"Manager","schedule":[{"day":"Monday","shift":"9am-5pm"},{"day":"Wednesday","shift":"9am-5pm"},{"day":"Friday","shift":"9am-5pm"}]},{"id":5002,"name":"Jane Smith","position":"Cashier","schedule":[{"day":"Tuesday","shift":"10am-6pm"},{"day":"Thursday","shift":"10am-6pm"},{"day":"Saturday","shift":"12pm-8pm"}]}]},"customers":[{"id":6001,"name":"Alice Johnson","email":"alice.johnson@example.com","orders":[{"orderId":7001,"date":"2024-09-01","status":"Shipped","items":[{"productId":1001,"quantity":10},{"productId":2001,"quantity":2}],"total":12.48},{"orderId":7002,"date":"2024-09-15","status":"Delivered","items":[{"productId":3001,"quantity":1}],"total":999.99}]},{"id":6002,"name":"Bob Williams","email":"bob.williams@example.com","orders":[{"orderId":7003,"date":"2024-09-07","status":"Pending","items":[{"productId":1002,"quantity":5},{"productId":4001,"quantity":1}],"total":2403.94}]}]},{"store":{"name":"SuperMart","location":{"address":"123 Market Street","city":"Metropolis","state":"NY","zip":"10001"},"departments":[{"id":1,"name":"Groceries","categories":[{"id":101,"name":"Fruits & Vegetables","products":[{"id":1001,"name":"Apple","price":0.99,"stock":120,"details":{"weight":"1lb","origin":"USA","organic":true}},{"id":1002,"name":"Banana","price":0.39,"stock":200,"details":{"weight":"1lb","origin":"Ecuador","organic":false}}]},{"id":102,"name":"Dairy","products":[{"id":2001,"name":"Milk","price":3.49,"stock":50,"details":{"volume":"1 gallon","fatContent":"2%","brand":"DairyPure"}},{"id":2002,"name":"Cheddar Cheese","price":5.99,"stock":75,"details":{"weight":"8oz","origin":"Wisconsin","aged":"2 years"}}]}]},{"id":2,"name":"Electronics","categories":[{"id":201,"name":"Smartphones","products":[{"id":3001,"name":"iPhone 14","price":999.99,"stock":30,"details":{"color":"Black","storage":"128GB","carrier":"Unlocked"}},{"id":3002,"name":"Samsung Galaxy S21","price":849.99,"stock":25,"details":{"color":"White","storage":"256GB","carrier":"Unlocked"}}]},{"id":202,"name":"Laptops","products":[{"id":4001,"name":"MacBook Pro","price":2399.99,"stock":10,"details":{"screenSize":"16 inch","processor":"M1","ram":"16GB","storage":"512GB SSD"}},{"id":4002,"name":"Dell XPS 13","price":1299.99,"stock":15,"details":{"screenSize":"13 inch","processor":"Intel i7","ram":"16GB","storage":"256GB SSD"}}]}]}],"employees":[{"id":5001,"name":"John Doe","position":"Manager","schedule":[{"day":"Monday","shift":"9am-5pm"},{"day":"Wednesday","shift":"9am-5pm"},{"day":"Friday","shift":"9am-5pm"}]},{"id":5002,"name":"Jane Smith","position":"Cashier","schedule":[{"day":"Tuesday","shift":"10am-6pm"},{"day":"Thursday","shift":"10am-6pm"},{"day":"Saturday","shift":"12pm-8pm"}]}]},"customers":[{"id":6001,"name":"Alice Johnson","email":"alice.johnson@example.com","orders":[{"orderId":7001,"date":"2024-09-01","status":"Shipped","items":[{"productId":1001,"quantity":10},{"productId":2001,"quantity":2}],"total":12.48},{"orderId":7002,"date":"2024-09-15","status":"Delivered","items":[{"productId":3001,"quantity":1}],"total":999.99}]},{"id":6002,"name":"Bob Williams","email":"bob.williams@example.com","orders":[{"orderId":7003,"date":"2024-09-07","status":"Pending","items":[{"productId":1002,"quantity":5},{"productId":4001,"quantity":1}],"total":2403.94}]}]},{"store":{"name":"SuperMart","location":{"address":"123 Market Street","city":"Metropolis","state":"NY","zip":"10001"},"departments":[{"id":1,"name":"Groceries","categories":[{"id":101,"name":"Fruits & Vegetables","products":[{"id":1001,"name":"Apple","price":0.99,"stock":120,"details":{"weight":"1lb","origin":"USA","organic":true}},{"id":1002,"name":"Banana","price":0.39,"stock":200,"details":{"weight":"1lb","origin":"Ecuador","organic":false}}]},{"id":102,"name":"Dairy","products":[{"id":2001,"name":"Milk","price":3.49,"stock":50,"details":{"volume":"1 gallon","fatContent":"2%","brand":"DairyPure"}},{"id":2002,"name":"Cheddar Cheese","price":5.99,"stock":75,"details":{"weight":"8oz","origin":"Wisconsin","aged":"2 years"}}]}]},{"id":2,"name":"Electronics","categories":[{"id":201,"name":"Smartphones","products":[{"id":3001,"name":"iPhone 14","price":999.99,"stock":30,"details":{"color":"Black","storage":"128GB","carrier":"Unlocked"}},{"id":3002,"name":"Samsung Galaxy S21","price":849.99,"stock":25,"details":{"color":"White","storage":"256GB","carrier":"Unlocked"}}]},{"id":202,"name":"Laptops","products":[{"id":4001,"name":"MacBook Pro","price":2399.99,"stock":10,"details":{"screenSize":"16 inch","processor":"M1","ram":"16GB","storage":"512GB SSD"}},{"id":4002,"name":"Dell XPS 13","price":1299.99,"stock":15,"details":{"screenSize":"13 inch","processor":"Intel i7","ram":"16GB","storage":"256GB SSD"}}]}]}],"employees":[{"id":5001,"name":"John Doe","position":"Manager","schedule":[{"day":"Monday","shift":"9am-5pm"},{"day":"Wednesday","shift":"9am-5pm"},{"day":"Friday","shift":"9am-5pm"}]},{"id":5002,"name":"Jane Smith","position":"Cashier","schedule":[{"day":"Tuesday","shift":"10am-6pm"},{"day":"Thursday","shift":"10am-6pm"},{"day":"Saturday","shift":"12pm-8pm"}]}]},"customers":[{"id":6001,"name":"Alice Johnson","email":"alice.johnson@example.com","orders":[{"orderId":7001,"date":"2024-09-01","status":"Shipped","items":[{"productId":1001,"quantity":10},{"productId":2001,"quantity":2}],"total":12.48},{"orderId":7002,"date":"2024-09-15","status":"Delivered","items":[{"productId":3001,"quantity":1}],"total":999.99}]},{"id":6002,"name":"Bob Williams","email":"bob.williams@example.com","orders":[{"orderId":7003,"date":"2024-09-07","status":"Pending","items":[{"productId":1002,"quantity":5},{"productId":4001,"quantity":1}],"total":2403.94}]}]},{"store":{"name":"SuperMart","location":{"address":"123 Market Street","city":"Metropolis","state":"NY","zip":"10001"},"departments":[{"id":1,"name":"Groceries","categories":[{"id":101,"name":"Fruits & Vegetables","products":[{"id":1001,"name":"Apple","price":0.99,"stock":120,"details":{"weight":"1lb","origin":"USA","organic":true}},{"id":1002,"name":"Banana","price":0.39,"stock":200,"details":{"weight":"1lb","origin":"Ecuador","organic":false}}]},{"id":102,"name":"Dairy","products":[{"id":2001,"name":"Milk","price":3.49,"stock":50,"details":{"volume":"1 gallon","fatContent":"2%","brand":"DairyPure"}},{"id":2002,"name":"Cheddar Cheese","price":5.99,"stock":75,"details":{"weight":"8oz","origin":"Wisconsin","aged":"2 years"}}]}]},{"id":2,"name":"Electronics","categories":[{"id":201,"name":"Smartphones","products":[{"id":3001,"name":"iPhone 14","price":999.99,"stock":30,"details":{"color":"Black","storage":"128GB","carrier":"Unlocked"}},{"id":3002,"name":"Samsung Galaxy S21","price":849.99,"stock":25,"details":{"color":"White","storage":"256GB","carrier":"Unlocked"}}]},{"id":202,"name":"Laptops","products":[{"id":4001,"name":"MacBook Pro","price":2399.99,"stock":10,"details":{"screenSize":"16 inch","processor":"M1","ram":"16GB","storage":"512GB SSD"}},{"id":4002,"name":"Dell XPS 13","price":1299.99,"stock":15,"details":{"screenSize":"13 inch","processor":"Intel i7","ram":"16GB","storage":"256GB SSD"}}]}]}],"employees":[{"id":5001,"name":"John Doe","position":"Manager","schedule":[{"day":"Monday","shift":"9am-5pm"},{"day":"Wednesday","shift":"9am-5pm"},{"day":"Friday","shift":"9am-5pm"}]},{"id":5002,"name":"Jane Smith","position":"Cashier","schedule":[{"day":"Tuesday","shift":"10am-6pm"},{"day":"Thursday","shift":"10am-6pm"},{"day":"Saturday","shift":"12pm-8pm"}]}]},"customers":[{"id":6001,"name":"Alice Johnson","email":"alice.johnson@example.com","orders":[{"orderId":7001,"date":"2024-09-01","status":"Shipped","items":[{"productId":1001,"quantity":10},{"productId":2001,"quantity":2}],"total":12.48},{"orderId":7002,"date":"2024-09-15","status":"Delivered","items":[{"productId":3001,"quantity":1}],"total":999.99}]},{"id":6002,"name":"Bob Williams","email":"bob.williams@example.com","orders":[{"orderId":7003,"date":"2024-09-07","status":"Pending","items":[{"productId":1002,"quantity":5},{"productId":4001,"quantity":1}],"total":2403.94}]}]},{"store":{"name":"SuperMart","location":{"address":"123 Market Street","city":"Metropolis","state":"NY","zip":"10001"},"departments":[{"id":1,"name":"Groceries","categories":[{"id":101,"name":"Fruits & Vegetables","products":[{"id":1001,"name":"Apple","price":0.99,"stock":120,"details":{"weight":"1lb","origin":"USA","organic":true}},{"id":1002,"name":"Banana","price":0.39,"stock":200,"details":{"weight":"1lb","origin":"Ecuador","organic":false}}]},{"id":102,"name":"Dairy","products":[{"id":2001,"name":"Milk","price":3.49,"stock":50,"details":{"volume":"1 gallon","fatContent":"2%","brand":"DairyPure"}},{"id":2002,"name":"Cheddar Cheese","price":5.99,"stock":75,"details":{"weight":"8oz","origin":"Wisconsin","aged":"2 years"}}]}]},{"id":2,"name":"Electronics","categories":[{"id":201,"name":"Smartphones","products":[{"id":3001,"name":"iPhone 14","price":999.99,"stock":30,"details":{"color":"Black","storage":"128GB","carrier":"Unlocked"}},{"id":3002,"name":"Samsung Galaxy S21","price":849.99,"stock":25,"details":{"color":"White","storage":"256GB","carrier":"Unlocked"}}]},{"id":202,"name":"Laptops","products":[{"id":4001,"name":"MacBook Pro","price":2399.99,"stock":10,"details":{"screenSize":"16 inch","processor":"M1","ram":"16GB","storage":"512GB SSD"}},{"id":4002,"name":"Dell XPS 13","price":1299.99,"stock":15,"details":{"screenSize":"13 inch","processor":"Intel i7","ram":"16GB","storage":"256GB SSD"}}]}]}],"employees":[{"id":5001,"name":"John Doe","position":"Manager","schedule":[{"day":"Monday","shift":"9am-5pm"},{"day":"Wednesday","shift":"9am-5pm"},{"day":"Friday","shift":"9am-5pm"}]},{"id":5002,"name":"Jane Smith","position":"Cashier","schedule":[{"day":"Tuesday","shift":"10am-6pm"},{"day":"Thursday","shift":"10am-6pm"},{"day":"Saturday","shift":"12pm-8pm"}]}]},"customers":[{"id":6001,"name":"Alice Johnson","email":"alice.johnson@example.com","orders":[{"orderId":7001,"date":"2024-09-01","status":"Shipped","items":[{"productId":1001,"quantity":10},{"productId":2001,"quantity":2}],"total":12.48},{"orderId":7002,"date":"2024-09-15","status":"Delivered","items":[{"productId":3001,"quantity":1}],"total":999.99}]},{"id":6002,"name":"Bob Williams","email":"bob.williams@example.com","orders":[{"orderId":7003,"date":"2024-09-07","status":"Pending","items":[{"productId":1002,"quantity":5},{"productId":4001,"quantity":1}],"total":2403.94}]}]},{"store":{"name":"SuperMart","location":{"address":"123 Market Street","city":"Metropolis","state":"NY","zip":"10001"},"departments":[{"id":1,"name":"Groceries","categories":[{"id":101,"name":"Fruits & Vegetables","products":[{"id":1001,"name":"Apple","price":0.99,"stock":120,"details":{"weight":"1lb","origin":"USA","organic":true}},{"id":1002,"name":"Banana","price":0.39,"stock":200,"details":{"weight":"1lb","origin":"Ecuador","organic":false}}]},{"id":102,"name":"Dairy","products":[{"id":2001,"name":"Milk","price":3.49,"stock":50,"details":{"volume":"1 gallon","fatContent":"2%","brand":"DairyPure"}},{"id":2002,"name":"Cheddar Cheese","price":5.99,"stock":75,"details":{"weight":"8oz","origin":"Wisconsin","aged":"2 years"}}]}]},{"id":2,"name":"Electronics","categories":[{"id":201,"name":"Smartphones","products":[{"id":3001,"name":"iPhone 14","price":999.99,"stock":30,"details":{"color":"Black","storage":"128GB","carrier":"Unlocked"}},{"id":3002,"name":"Samsung Galaxy S21","price":849.99,"stock":25,"details":{"color":"White","storage":"256GB","carrier":"Unlocked"}}]},{"id":202,"name":"Laptops","products":[{"id":4001,"name":"MacBook Pro","price":2399.99,"stock":10,"details":{"screenSize":"16 inch","processor":"M1","ram":"16GB","storage":"512GB SSD"}},{"id":4002,"name":"Dell XPS 13","price":1299.99,"stock":15,"details":{"screenSize":"13 inch","processor":"Intel i7","ram":"16GB","storage":"256GB SSD"}}]}]}],"employees":[{"id":5001,"name":"John Doe","position":"Manager","schedule":[{"day":"Monday","shift":"9am-5pm"},{"day":"Wednesday","shift":"9am-5pm"},{"day":"Friday","shift":"9am-5pm"}]},{"id":5002,"name":"Jane Smith","position":"Cashier","schedule":[{"day":"Tuesday","shift":"10am-6pm"},{"day":"Thursday","shift":"10am-6pm"},{"day":"Saturday","shift":"12pm-8pm"}]}]},"customers":[{"id":6001,"name":"Alice Johnson","email":"alice.johnson@example.com","orders":[{"orderId":7001,"date":"2024-09-01","status":"Shipped","items":[{"productId":1001,"quantity":10},{"productId":2001,"quantity":2}],"total":12.48},{"orderId":7002,"date":"2024-09-15","status":"Delivered","items":[{"productId":3001,"quantity":1}],"total":999.99}]},{"id":6002,"name":"Bob Williams","email":"bob.williams@example.com","orders":[{"orderId":7003,"date":"2024-09-07","status":"Pending","items":[{"productId":1002,"quantity":5},{"productId":4001,"quantity":1}],"total":2403.94}]}]}] \ No newline at end of file