This repository was archived by the owner on May 7, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 199
Expand file tree
/
Copy pathmdl.schema.json
More file actions
459 lines (459 loc) · 15.2 KB
/
Copy pathmdl.schema.json
File metadata and controls
459 lines (459 loc) · 15.2 KB
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
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/Canner/WrenAI/main/wren-mdl/mdl.schema.json",
"title": "WrenMDL Manifest Schema",
"description": "A schema for WrenMDL manifest file",
"$defs": {
"column": {
"type": "object",
"properties": {
"name": {
"description": "the name of the column",
"type": "string",
"minLength": 1
},
"type": {
"description": "the type of the column",
"type": "string",
"minLength": 1
},
"relationship": {
"description": "the relationship used by the column. If the type is a relationship, this field is required",
"type": "string"
},
"isCalculated": {
"description": "whether the column is calculated or not. If the column expression used relationship, this field is required",
"type": "boolean"
},
"notNull": {
"description": "whether the column is not null or not",
"type": "boolean"
},
"expression": {
"description": "the expression of the column. If the column is calculated, this field is required",
"type": ["string", "null"]
},
"isHidden": {
"description": "whether the column is hidden or not",
"type": "boolean"
},
"columnLevelAccessControl": {
"description": "the access-control rule for the column",
"type": "object",
"properties": {
"name": {
"description": "the name of the access-control rule",
"type": "string"
},
"operator": {
"description": "the operator of the access-control rule",
"type": "string",
"enum": [
"EQUALS",
"NOT_EQUALS",
"GREATER_THAN",
"LESS_THAN",
"GREATER_THAN_OR_EQUALS",
"LESS_THAN_OR_EQUALS"
]
},
"requiredProperties": {
"description": "the required properties for the access-control rule",
"type": "array",
"items": {
"$ref": "#/$defs/sessionProperty"
},
"minItems": 1,
"maxItems": 1
},
"threshold": {
"description": "the threshold value of the access-control rule",
"type": "object",
"properties": {
"value": {
"description": "the value of the threshold",
"type": "string"
},
"dataType": {
"description": "the data type of the threshold",
"type": "string",
"enum": ["NUMERIC", "STRING"]
}
},
"required": ["value", "dataType"],
"additionalProperties": false
}
},
"required": ["name", "operator", "requiredProperties"],
"additionalProperties": false
},
"properties": {
"description": "the customize properties of the column",
"type": "object",
"additionalProperties": {
"type": "string"
}
}
},
"required": ["name", "type"],
"additionalProperties": false
},
"sessionProperty": {
"type": "object",
"properties": {
"name": {
"description": "the name of the session property",
"type": "string",
"minLength": 1
},
"required": {
"description": "whether the session property is required or not",
"type": "boolean"
},
"defaultExpr": {
"description": "the default SQL expression of the session property",
"type": ["string", "null"]
}
},
"required": ["name", "required"],
"additionalProperties": false
}
},
"type": "object",
"properties": {
"$schema": {
"description": "the schema of WrenMDL",
"type": "string",
"const": "https://raw.githubusercontent.com/Canner/WrenAI/main/wren-mdl/mdl.schema.json"
},
"catalog": {
"description": "the catalog name of WrenMDL",
"type": "string",
"minLength": 1
},
"schema": {
"description": "the schema name of WrenMDL",
"type": "string",
"minLength": 1
},
"sampleDataFolder": {
"description": "the folder path for sample data",
"type": "string",
"minLength": 1
},
"dataSource": {
"description": "the data source type (case insensitive). Valid values are: BIGQUERY, CLICKHOUSE, CANNER, TRINO, MSSQL, MYSQL, POSTGRES, SNOWFLAKE, DUCKDB, LOCAL_FILE, S3_FILE, GCS_FILE, MINIO_FILE, ORACLE, ATHENA, REDSHIFT",
"type": "string",
"pattern": "^(?:[Bb][Ii][Gg][Qq][Uu][Ee][Rr][Yy]|[Cc][Ll][Ii][Cc][Kk][Hh][Oo][Uu][Ss][Ee]|[Cc][Aa][Nn][Nn][Ee][Rr]|[Tt][Rr][Ii][Nn][Oo]|[Mm][Ss][Ss][Qq][Ll]|[Mm][Yy][Ss][Qq][Ll]|[Pp][Oo][Ss][Tt][Gg][Rr][Ee][Ss]|[Ss][Nn][Oo][Ww][Ff][Ll][Aa][Kk][Ee]|[Dd][Uu][Cc][Kk][Dd][Bb]|[Ll][Oo][Cc][Aa][Ll]_[Ff][Ii][Ll][Ee]|[Ss]3_[Ff][Ii][Ll][Ee]|[Gg][Cc][Ss]_[Ff][Ii][Ll][Ee]|[Mm][Ii][Nn][Ii][Oo]_[Ff][Ii][Ll][Ee]|[Oo][Rr][Aa][Cc][Ll][Ee]|[Aa][Tt][Hh][Ee][Nn][Aa]|[Rr][Ee][Dd][Ss][Hh][Ii][Ff][Tt])$",
"minLength": 1
},
"models": {
"description": "the list of models",
"type": "array",
"unevaluatedItems": false,
"items": {
"type": "object",
"properties": {
"name": {
"description": "the name of the model",
"type": "string",
"minLength": 1
},
"refSql": {
"description": "(WIP) the sql reference of the model",
"type": "string",
"minLength": 1
},
"baseObject": {
"description": "(WIP) the base object of the model",
"type": "string",
"minLength": 1
},
"tableReference": {
"description": "the table reference of the model",
"type": "object",
"properties": {
"catalog": {
"type": "string"
},
"schema": {
"type": "string"
},
"table": {
"type": "string",
"minLength": 1
}
},
"required": ["table"]
},
"columns": {
"description": "the list of columns",
"type": "array",
"items": {
"$ref": "#/$defs/column"
}
},
"primaryKey": {
"description": "the primary key of the model. It's required if the model is the one side of any ONE_TO_MANY or MANY_TO_ONE relationship",
"type": "string"
},
"cached": {
"description": "(WIP) whether the model is cached or not",
"type": "boolean"
},
"refreshTime": {
"description": "(WIP) the cache refresh time of the model",
"type": "string",
"pattern": "^\\s*(\\d+(?:\\.\\d+)?)\\s*([a-zA-Z]+)\\s*$"
},
"rowLevelAccessControls": {
"type": "array",
"items": {
"description": "the row-level access-control rule for the model",
"type": "object",
"properties": {
"name": {
"description": "the name of the access-control rule",
"type": "string"
},
"requiredProperties": {
"description": "the required properties for the access-control rule",
"type": "array",
"items": {
"$ref": "#/$defs/sessionProperty"
}
},
"condition": {
"description": "The condition of the access-control rule. A condition is a SQL expression that evaluates to true or false.",
"type": "string"
}
},
"required": ["name", "requiredProperties", "condition"],
"additionalProperties": false
}
},
"properties": {
"description": "the customize properties of the model",
"type": "object",
"additionalProperties": {
"type": ["string", "number", "boolean", "object", "array", "null"]
}
}
},
"required": ["name"],
"oneOf": [
{ "required": ["refSql"] },
{ "required": ["baseObject"] },
{ "required": ["tableReference"] }
],
"additionalProperties": false
}
},
"relationships": {
"description": "the list of relationships",
"type": "array",
"unevaluatedItems": false,
"items": {
"type": "object",
"properties": {
"name": {
"description": "the name of the relationship",
"type": "string",
"minLength": 1
},
"models": {
"description": "the list of models",
"type": "array",
"items": {
"type": "string",
"minLength": 1
},
"minItems": 2,
"maxItems": 2
},
"joinType": {
"description": "the join type of the relationship",
"type": "string",
"enum": ["ONE_TO_ONE", "ONE_TO_MANY", "MANY_TO_ONE", "MANY_TO_MANY"]
},
"condition": {
"description": "the condition of the relationship",
"type": "string",
"minLength": 1
},
"properties": {
"description": "the customize properties of the relationship",
"type": "object",
"additionalProperties": {
"type": ["string", "number", "boolean", "object", "array", "null"]
}
}
},
"required": ["name", "models", "joinType", "condition"]
}
},
"metrics": {
"description": "(WIP) the list of metrics",
"type": "array",
"unevaluatedItems": false,
"items": {
"description": "(WIP) the metric",
"type": "object",
"properties": {
"name": {
"description": "the name of the metric",
"type": "string",
"minLength": 1
},
"baseObject": {
"description": "the base object of the metric",
"type": "string",
"minLength": 1
},
"dimension": {
"description": "the list of dimensions",
"type": "array",
"items": {
"$ref": "#/$defs/column"
}
},
"measure": {
"description": "the list of measures",
"type": "array",
"items": {
"$ref": "#/$defs/column"
},
"minItems": 1
},
"timeGrain": {
"description": "the time grain fields of the metric",
"type": "array",
"unevaluatedItems": false,
"items": {
"description": "the time grain field. It should belong to the dimension fields",
"type": "object",
"properties": {
"name": {
"description": "the name of the time grain field",
"type": "string",
"minLength": 1
},
"refColumn": {
"description": "the reference column name of the time grain field",
"type": "string",
"minLength": 1
},
"dateParts": {
"description": "the acceptable time units of the time grain field",
"type": "array",
"items": {
"type": "string",
"enum": ["YEAR", "QUARTER", "MONTH", "WEEK", "DAY", "HOUR", "MINUTE", "SECOND"]
}
}
},
"required": ["name", "refColumn", "dateParts"]
}
},
"cached": {
"type": "boolean"
},
"refreshTime": {
"type": "string",
"description": "the cache refresh time of the metric",
"pattern": "^\\s*(\\d+(?:\\.\\d+)?)\\s*([a-zA-Z]+)\\s*$"
},
"properties": {
"type": "object",
"additionalProperties": {
"type": ["string", "number", "boolean", "object", "array", "null"]
}
}
},
"required": ["name", "baseObject", "dimension", "measure"]
}
},
"views": {
"description": "the list of views",
"type": "array",
"unevaluatedItems": false,
"items": {
"type": "object",
"properties": {
"name": {
"description": "the name of the view",
"type": "string",
"minLength": 1
},
"statement": {
"description": "the sql statement of the view",
"type": "string",
"minLength": 1
},
"properties": {
"description": "the customize properties of the view",
"type": "object",
"additionalProperties": {
"type": ["string", "number", "boolean", "object", "array", "null"]
}
}
},
"required": ["name", "statement"]
}
},
"enumDefinitions": {
"description": "(WIP) the list of enum definitions",
"type": "array",
"unevaluatedItems": false,
"items": {
"description": "(WIP) the enum definition",
"type": "object",
"properties": {
"name": {
"description": "the name of the enum",
"type": "string",
"minLength": 1
},
"values": {
"type": "array",
"unevaluatedItems": false,
"items": {
"description": "the member of enum",
"type": "object",
"properties": {
"name": {
"description": "the name of the member",
"type": "string",
"minLength": 1
},
"value": {
"description": "the value of the member. If not provided, the value is the same as the name",
"type": "string",
"minLength": 1
},
"properties": {
"description": "the customize properties of the member",
"type": "object",
"additionalProperties": {
"type": ["string", "number", "boolean", "object", "array", "null"]
}
}
},
"required": ["name"]
}
},
"properties": {
"description": "the customize properties of the enum",
"type": "object",
"additionalProperties": {
"type": ["string", "number", "boolean", "object", "array", "null"]
}
}
},
"required": ["name", "values"]
}
}
},
"required": ["catalog", "schema"],
"additionalProperties": false
}