-
Notifications
You must be signed in to change notification settings - Fork 284
/
metadata.json
332 lines (332 loc) · 10.2 KB
/
metadata.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
{
"analytic_scenarios": {
"Customer Sales Analysis": {
"rules": [
"Revenue recognized on ShippedDate"
],
"description": "Analyzing sales data by customer."
},
"Inventory Management": {
"rules": [
"Restock when UnitsInStock less than ReorderLevel"
],
"description": "Managing product stock levels."
},
"Shipping Efficiency": {
"rules": [
"Optimize routes based on ShipRegion and ShipCountry"
],
"description": "Optimizing shipping routes for efficiency."
},
"Employee Performance Tracking": {
"rules": [
"Performance evaluated on number of orders processed"
],
"description": "Tracking employee order processing performance."
},
"Product Profitability": {
"rules": [
"Profit calculated as UnitPrice minus Discount"
],
"description": "Calculating profitability of products."
},
"Customer Retention": {
"rules": [
"Follow-up if no orders in the past 12 months"
],
"description": "Strategies to retain customers."
},
"Supplier Relationship Management": {
"rules": [
"Assess supplier performance based on delivery times and product quality"
],
"description": "Managing supplier relationships."
},
"Market Segmentation": {
"rules": [
"Segment customers based on CustomerDemographics"
],
"description": "Segmenting the market based on customer demographics."
},
"Sales Territory Performance": {
"rules": [
"Sales targets set based on TerritoryDescription",
"Revenue recognized on ShippedDate"
],
"description": "Evaluating sales performance by territory."
},
"Product Category Sales Trends": {
"rules": [
"Analyze sales trends by CategoryName",
"Revenue recognized on ShippedDate"
],
"description": "Analyzing sales trends within product categories."
}
},
"tables": {
"orders": {
"columns": [
"OrderID INT",
"CustomerID VARCHAR",
"EmployeeID INT",
"OrderDate DATE",
"RequiredDate DATE",
"ShippedDate DATE",
"ShipVia INT",
"Freight DECIMAL",
"ShipName VARCHAR",
"ShipAddress VARCHAR",
"ShipCity VARCHAR",
"ShipRegion VARCHAR",
"ShipPostalCode VARCHAR",
"ShipCountry VARCHAR"
],
"description": "Records of all orders placed."
},
"customers": {
"columns": [
"CustomerID VARCHAR",
"CompanyName VARCHAR",
"ContactName VARCHAR",
"ContactTitle VARCHAR",
"Address VARCHAR",
"City VARCHAR",
"Region VARCHAR",
"PostalCode VARCHAR",
"Country VARCHAR",
"Phone VARCHAR",
"Fax VARCHAR"
],
"description": "Information about customers."
},
"[Order Details]": {
"columns": [
"OrderID INT",
"ProductID INT",
"UnitPrice DECIMAL",
"Quantity SMALLINT",
"Discount DOUBLE"
],
"description": "Details of individual products within an order."
},
"products": {
"columns": [
"ProductID INT",
"ProductName VARCHAR",
"SupplierID INT",
"CategoryID INT",
"QuantityPerUnit VARCHAR",
"UnitPrice DECIMAL",
"UnitsInStock SMALLINT",
"UnitsOnOrder SMALLINT",
"ReorderLevel SMALLINT",
"Discontinued BIT"
],
"description": "Information about products."
},
"employees": {
"columns": [
"EmployeeID INT",
"LastName VARCHAR",
"FirstName VARCHAR",
"Title VARCHAR",
"TitleOfCourtesy VARCHAR",
"BirthDate DATE",
"HireDate DATE",
"Address VARCHAR",
"City VARCHAR",
"Region VARCHAR",
"PostalCode VARCHAR",
"Country VARCHAR",
"HomePhone VARCHAR",
"Extension VARCHAR",
"Photo LONGBLOB",
"Notes MEDIUMTEXT",
"ReportsTo INT",
"PhotoPath VARCHAR",
"Salary FLOAT"
],
"description": "Information about company employees."
},
"shippers": {
"columns": [
"ShipperID INT",
"CompanyName VARCHAR",
"Phone VARCHAR"
],
"description": "Information about shipping companies."
},
"suppliers": {
"columns": [
"SupplierID INT",
"CompanyName VARCHAR",
"ContactName VARCHAR",
"ContactTitle VARCHAR",
"Address VARCHAR",
"City VARCHAR",
"Region VARCHAR",
"PostalCode VARCHAR",
"Country VARCHAR",
"Phone VARCHAR",
"Fax VARCHAR",
"HomePage MEDIUMTEXT"
],
"description": "Information about product suppliers."
},
"categories": {
"columns": [
"CategoryID INT",
"CategoryName VARCHAR",
"Description MEDIUMTEXT",
"Picture LONGBLOB"
],
"description": "Categories of products."
},
"territories": {
"columns": [
"TerritoryID VARCHAR",
"TerritoryDescription VARCHAR",
"RegionID INT"
],
"description": "Sales territories."
},
"employeeTerritories": {
"columns": [
"EmployeeID INT",
"TerritoryID VARCHAR"
],
"description": "Mapping of which employees cover which territories."
},
"region": {
"columns": [
"RegionID INT",
"RegionDescription VARCHAR"
],
"description": "Different regions."
},
"customerDemographics": {
"columns": [
"CustomerTypeID VARCHAR",
"CustomerDesc MEDIUMTEXT"
],
"description": "Types of customer demographics."
},
"customerCustomerDemo": {
"columns": [
"CustomerID VARCHAR",
"CustomerTypeID VARCHAR"
],
"description": "Linking table for customers and their demographics."
}
},
"scenario_tables": {
"Customer Sales Analysis": [
"orders",
"customers",
"[Order Details]",
"products"
],
"Inventory Management": [
"products",
"suppliers"
],
"Shipping Efficiency": [
"orders",
"shippers"
],
"Employee Performance Tracking": [
"employees",
"orders",
"[Order Details]"
],
"Product Profitability": [
"products",
"[Order Details]",
"categories"
],
"Customer Retention": [
"customers",
"orders"
],
"Supplier Relationship Management": [
"suppliers",
"products",
"[Order Details]"
],
"Market Segmentation": [
"customers",
"customerDemographics",
"customerCustomerDemo"
],
"Sales Territory Performance": [
"employees",
"employeeTerritories",
"territories",
"orders",
"region",
"[Order Details]"
],
"Product Category Sales Trends": [
"products",
"categories",
"[Order Details]"
]
},
"table_relationships": [
[
"orders",
"customers",
"Orders are placed by customers using CustomerID."
],
[
"orders",
"employees",
"Orders are processed by employees using EmployeeID."
],
[
"orders",
"shippers",
"Orders are shipped by shippers using ShipVia as ShipperID."
],
[
"[Order Details]",
"orders",
"Each order can have multiple [Order Details], linked by OrderID."
],
[
"[Order Details]",
"products",
"Each order detail pertains to a single product, linked by ProductID."
],
[
"products",
"suppliers",
"Products are supplied by suppliers using SupplierID."
],
[
"products",
"categories",
"Products are categorized into categories using CategoryID."
],
[
"employeeTerritories",
"employees",
"Employees are assigned to territories, linked by EmployeeID."
],
[
"employeeTerritories",
"territories",
"Territories can have multiple employees, linked by TerritoryID."
],
[
"customerCustomerDemo",
"customers",
"Customers can belong to multiple demographics, linked by CustomerID."
],
[
"customerCustomerDemo",
"customerDemographics",
"Demographics can include multiple customers, linked by CustomerTypeID."
]
]
}