retold-facto 0.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (92) hide show
  1. package/.claude/launch.json +11 -0
  2. package/.dockerignore +8 -0
  3. package/.quackage.json +19 -0
  4. package/Dockerfile +26 -0
  5. package/bin/retold-facto.js +909 -0
  6. package/examples/facto-government-data.sqlite +0 -0
  7. package/examples/government-data-catalog.json +137 -0
  8. package/examples/government-data-loader.js +1432 -0
  9. package/package.json +91 -0
  10. package/scripts/facto-download.js +425 -0
  11. package/source/Retold-Facto.js +1042 -0
  12. package/source/services/Retold-Facto-BeaconProvider.js +511 -0
  13. package/source/services/Retold-Facto-CatalogManager.js +1252 -0
  14. package/source/services/Retold-Facto-DataLakeService.js +1642 -0
  15. package/source/services/Retold-Facto-DatasetManager.js +417 -0
  16. package/source/services/Retold-Facto-IngestEngine.js +1315 -0
  17. package/source/services/Retold-Facto-ProjectionEngine.js +3960 -0
  18. package/source/services/Retold-Facto-RecordManager.js +360 -0
  19. package/source/services/Retold-Facto-SchemaManager.js +1110 -0
  20. package/source/services/Retold-Facto-SourceFolderScanner.js +2243 -0
  21. package/source/services/Retold-Facto-SourceManager.js +730 -0
  22. package/source/services/Retold-Facto-StoreConnectionManager.js +441 -0
  23. package/source/services/Retold-Facto-ThroughputMonitor.js +478 -0
  24. package/source/services/web-app/codemirror-entry.js +7 -0
  25. package/source/services/web-app/pict-app/Pict-Application-Facto-Configuration.json +9 -0
  26. package/source/services/web-app/pict-app/Pict-Application-Facto.js +70 -0
  27. package/source/services/web-app/pict-app/Pict-Facto-Bundle.js +11 -0
  28. package/source/services/web-app/pict-app/providers/Pict-Provider-Facto-UI.js +66 -0
  29. package/source/services/web-app/pict-app/providers/Pict-Provider-Facto.js +69 -0
  30. package/source/services/web-app/pict-app/providers/facto-api/Facto-API-Catalog.js +93 -0
  31. package/source/services/web-app/pict-app/providers/facto-api/Facto-API-Connections.js +42 -0
  32. package/source/services/web-app/pict-app/providers/facto-api/Facto-API-Datasets.js +605 -0
  33. package/source/services/web-app/pict-app/providers/facto-api/Facto-API-Projections.js +188 -0
  34. package/source/services/web-app/pict-app/providers/facto-api/Facto-API-Scanner.js +80 -0
  35. package/source/services/web-app/pict-app/providers/facto-api/Facto-API-Schema.js +116 -0
  36. package/source/services/web-app/pict-app/providers/facto-api/Facto-API-Sources.js +104 -0
  37. package/source/services/web-app/pict-app/views/PictView-Facto-Catalog.js +526 -0
  38. package/source/services/web-app/pict-app/views/PictView-Facto-Datasets.js +173 -0
  39. package/source/services/web-app/pict-app/views/PictView-Facto-Ingest.js +259 -0
  40. package/source/services/web-app/pict-app/views/PictView-Facto-Layout.js +191 -0
  41. package/source/services/web-app/pict-app/views/PictView-Facto-Projections.js +231 -0
  42. package/source/services/web-app/pict-app/views/PictView-Facto-Records.js +326 -0
  43. package/source/services/web-app/pict-app/views/PictView-Facto-Scanner.js +624 -0
  44. package/source/services/web-app/pict-app/views/PictView-Facto-Sources.js +201 -0
  45. package/source/services/web-app/pict-app/views/PictView-Facto-Throughput.js +456 -0
  46. package/source/services/web-app/pict-app-full/Pict-Application-Facto-Full-Configuration.json +14 -0
  47. package/source/services/web-app/pict-app-full/Pict-Application-Facto-Full.js +391 -0
  48. package/source/services/web-app/pict-app-full/providers/PictRouter-Facto-Configuration.json +56 -0
  49. package/source/services/web-app/pict-app-full/views/PictView-Facto-Full-BottomBar.js +68 -0
  50. package/source/services/web-app/pict-app-full/views/PictView-Facto-Full-Connections.js +340 -0
  51. package/source/services/web-app/pict-app-full/views/PictView-Facto-Full-Dashboard.js +149 -0
  52. package/source/services/web-app/pict-app-full/views/PictView-Facto-Full-Dashboards.js +819 -0
  53. package/source/services/web-app/pict-app-full/views/PictView-Facto-Full-Datasets.js +178 -0
  54. package/source/services/web-app/pict-app-full/views/PictView-Facto-Full-IngestJobs.js +99 -0
  55. package/source/services/web-app/pict-app-full/views/PictView-Facto-Full-Layout.js +62 -0
  56. package/source/services/web-app/pict-app-full/views/PictView-Facto-Full-MappingEditor.js +158 -0
  57. package/source/services/web-app/pict-app-full/views/PictView-Facto-Full-ProjectionDetail.js +1120 -0
  58. package/source/services/web-app/pict-app-full/views/PictView-Facto-Full-Projections.js +172 -0
  59. package/source/services/web-app/pict-app-full/views/PictView-Facto-Full-QueryPanel.js +119 -0
  60. package/source/services/web-app/pict-app-full/views/PictView-Facto-Full-RecordViewer.js +663 -0
  61. package/source/services/web-app/pict-app-full/views/PictView-Facto-Full-Records.js +648 -0
  62. package/source/services/web-app/pict-app-full/views/PictView-Facto-Full-Scanner.js +1017 -0
  63. package/source/services/web-app/pict-app-full/views/PictView-Facto-Full-SchemaDetail.js +1404 -0
  64. package/source/services/web-app/pict-app-full/views/PictView-Facto-Full-SchemaDocEditor.js +1036 -0
  65. package/source/services/web-app/pict-app-full/views/PictView-Facto-Full-SchemaEditor.js +636 -0
  66. package/source/services/web-app/pict-app-full/views/PictView-Facto-Full-SchemaResearch.js +357 -0
  67. package/source/services/web-app/pict-app-full/views/PictView-Facto-Full-SourceDetail.js +822 -0
  68. package/source/services/web-app/pict-app-full/views/PictView-Facto-Full-SourceEditor.js +1036 -0
  69. package/source/services/web-app/pict-app-full/views/PictView-Facto-Full-SourceResearch.js +487 -0
  70. package/source/services/web-app/pict-app-full/views/PictView-Facto-Full-Sources.js +165 -0
  71. package/source/services/web-app/pict-app-full/views/PictView-Facto-Full-Throughput.js +439 -0
  72. package/source/services/web-app/pict-app-full/views/PictView-Facto-Full-TopBar.js +335 -0
  73. package/source/services/web-app/pict-app-full/views/projections/Facto-Projections-Constants.js +71 -0
  74. package/source/services/web-app/web/chart.min.js +20 -0
  75. package/source/services/web-app/web/codemirror-bundle.js +30099 -0
  76. package/source/services/web-app/web/css/facto-themes.css +467 -0
  77. package/source/services/web-app/web/css/facto.css +502 -0
  78. package/source/services/web-app/web/index.html +28 -0
  79. package/source/services/web-app/web/retold-facto.js +12138 -0
  80. package/source/services/web-app/web/retold-facto.js.map +1 -0
  81. package/source/services/web-app/web/retold-facto.min.js +2 -0
  82. package/source/services/web-app/web/retold-facto.min.js.map +1 -0
  83. package/source/services/web-app/web/simple/index.html +17 -0
  84. package/test/Facto_Browser_Integration_tests.js +798 -0
  85. package/test/RetoldFacto_tests.js +4117 -0
  86. package/test/fixtures/weather-readings.csv +17 -0
  87. package/test/fixtures/weather-stations.csv +9 -0
  88. package/test/model/MeadowModel-Extended.json +8497 -0
  89. package/test/model/MeadowModel-PICT.json +1 -0
  90. package/test/model/MeadowModel.json +1355 -0
  91. package/test/model/ddl/Facto.ddl +225 -0
  92. package/test/model/fable-configuration.json +14 -0
@@ -0,0 +1,1355 @@
1
+ {
2
+ "Tables": {
3
+ "Source": {
4
+ "TableName": "Source",
5
+ "Domain": "Default",
6
+ "Columns": [
7
+ {
8
+ "Column": "IDSource",
9
+ "DataType": "ID"
10
+ },
11
+ {
12
+ "Column": "GUIDSource",
13
+ "DataType": "GUID",
14
+ "Size": "36"
15
+ },
16
+ {
17
+ "Column": "CreateDate",
18
+ "DataType": "DateTime"
19
+ },
20
+ {
21
+ "Column": "CreatingIDUser",
22
+ "DataType": "Numeric",
23
+ "Size": "int"
24
+ },
25
+ {
26
+ "Column": "UpdateDate",
27
+ "DataType": "DateTime"
28
+ },
29
+ {
30
+ "Column": "UpdatingIDUser",
31
+ "DataType": "Numeric",
32
+ "Size": "int"
33
+ },
34
+ {
35
+ "Column": "Deleted",
36
+ "DataType": "Boolean"
37
+ },
38
+ {
39
+ "Column": "DeleteDate",
40
+ "DataType": "DateTime"
41
+ },
42
+ {
43
+ "Column": "DeletingIDUser",
44
+ "DataType": "Numeric",
45
+ "Size": "int"
46
+ },
47
+ {
48
+ "Column": "Name",
49
+ "DataType": "String",
50
+ "Size": "200"
51
+ },
52
+ {
53
+ "Column": "Hash",
54
+ "DataType": "String",
55
+ "Size": "128"
56
+ },
57
+ {
58
+ "Column": "Type",
59
+ "DataType": "String",
60
+ "Size": "64"
61
+ },
62
+ {
63
+ "Column": "URL",
64
+ "DataType": "String",
65
+ "Size": "512"
66
+ },
67
+ {
68
+ "Column": "Protocol",
69
+ "DataType": "String",
70
+ "Size": "32"
71
+ },
72
+ {
73
+ "Column": "Description",
74
+ "DataType": "Text"
75
+ },
76
+ {
77
+ "Column": "Configuration",
78
+ "DataType": "Text"
79
+ },
80
+ {
81
+ "Column": "Active",
82
+ "DataType": "Boolean"
83
+ }
84
+ ],
85
+ "Description": ""
86
+ },
87
+ "SourceDocumentation": {
88
+ "TableName": "SourceDocumentation",
89
+ "Domain": "Default",
90
+ "Columns": [
91
+ {
92
+ "Column": "IDSourceDocumentation",
93
+ "DataType": "ID"
94
+ },
95
+ {
96
+ "Column": "GUIDSourceDocumentation",
97
+ "DataType": "GUID",
98
+ "Size": "36"
99
+ },
100
+ {
101
+ "Column": "CreateDate",
102
+ "DataType": "DateTime"
103
+ },
104
+ {
105
+ "Column": "CreatingIDUser",
106
+ "DataType": "Numeric",
107
+ "Size": "int"
108
+ },
109
+ {
110
+ "Column": "UpdateDate",
111
+ "DataType": "DateTime"
112
+ },
113
+ {
114
+ "Column": "UpdatingIDUser",
115
+ "DataType": "Numeric",
116
+ "Size": "int"
117
+ },
118
+ {
119
+ "Column": "Deleted",
120
+ "DataType": "Boolean"
121
+ },
122
+ {
123
+ "Column": "DeleteDate",
124
+ "DataType": "DateTime"
125
+ },
126
+ {
127
+ "Column": "DeletingIDUser",
128
+ "DataType": "Numeric",
129
+ "Size": "int"
130
+ },
131
+ {
132
+ "Column": "IDSource",
133
+ "DataType": "Numeric",
134
+ "Size": "int",
135
+ "Join": "IDSource"
136
+ },
137
+ {
138
+ "Column": "Name",
139
+ "DataType": "String",
140
+ "Size": "200"
141
+ },
142
+ {
143
+ "Column": "DocumentType",
144
+ "DataType": "String",
145
+ "Size": "64"
146
+ },
147
+ {
148
+ "Column": "MimeType",
149
+ "DataType": "String",
150
+ "Size": "128"
151
+ },
152
+ {
153
+ "Column": "StorageKey",
154
+ "DataType": "String",
155
+ "Size": "256"
156
+ },
157
+ {
158
+ "Column": "Description",
159
+ "DataType": "Text"
160
+ },
161
+ {
162
+ "Column": "Content",
163
+ "DataType": "Text"
164
+ }
165
+ ],
166
+ "Description": ""
167
+ },
168
+ "Dataset": {
169
+ "TableName": "Dataset",
170
+ "Domain": "Default",
171
+ "Columns": [
172
+ {
173
+ "Column": "IDDataset",
174
+ "DataType": "ID"
175
+ },
176
+ {
177
+ "Column": "GUIDDataset",
178
+ "DataType": "GUID",
179
+ "Size": "36"
180
+ },
181
+ {
182
+ "Column": "CreateDate",
183
+ "DataType": "DateTime"
184
+ },
185
+ {
186
+ "Column": "CreatingIDUser",
187
+ "DataType": "Numeric",
188
+ "Size": "int"
189
+ },
190
+ {
191
+ "Column": "UpdateDate",
192
+ "DataType": "DateTime"
193
+ },
194
+ {
195
+ "Column": "UpdatingIDUser",
196
+ "DataType": "Numeric",
197
+ "Size": "int"
198
+ },
199
+ {
200
+ "Column": "Deleted",
201
+ "DataType": "Boolean"
202
+ },
203
+ {
204
+ "Column": "DeleteDate",
205
+ "DataType": "DateTime"
206
+ },
207
+ {
208
+ "Column": "DeletingIDUser",
209
+ "DataType": "Numeric",
210
+ "Size": "int"
211
+ },
212
+ {
213
+ "Column": "Name",
214
+ "DataType": "String",
215
+ "Size": "200"
216
+ },
217
+ {
218
+ "Column": "Hash",
219
+ "DataType": "String",
220
+ "Size": "128"
221
+ },
222
+ {
223
+ "Column": "Type",
224
+ "DataType": "String",
225
+ "Size": "32"
226
+ },
227
+ {
228
+ "Column": "Description",
229
+ "DataType": "Text"
230
+ },
231
+ {
232
+ "Column": "SchemaHash",
233
+ "DataType": "String",
234
+ "Size": "64"
235
+ },
236
+ {
237
+ "Column": "SchemaVersion",
238
+ "DataType": "Numeric",
239
+ "Size": "int"
240
+ },
241
+ {
242
+ "Column": "SchemaDefinition",
243
+ "DataType": "Text"
244
+ },
245
+ {
246
+ "Column": "VersionPolicy",
247
+ "DataType": "String",
248
+ "Size": "16"
249
+ },
250
+ {
251
+ "Column": "IDSchema",
252
+ "DataType": "Numeric",
253
+ "Size": "int",
254
+ "Join": "IDSchema"
255
+ }
256
+ ],
257
+ "Description": ""
258
+ },
259
+ "DatasetSource": {
260
+ "TableName": "DatasetSource",
261
+ "Domain": "Default",
262
+ "Columns": [
263
+ {
264
+ "Column": "IDDatasetSource",
265
+ "DataType": "ID"
266
+ },
267
+ {
268
+ "Column": "GUIDDatasetSource",
269
+ "DataType": "GUID",
270
+ "Size": "36"
271
+ },
272
+ {
273
+ "Column": "CreateDate",
274
+ "DataType": "DateTime"
275
+ },
276
+ {
277
+ "Column": "CreatingIDUser",
278
+ "DataType": "Numeric",
279
+ "Size": "int"
280
+ },
281
+ {
282
+ "Column": "UpdateDate",
283
+ "DataType": "DateTime"
284
+ },
285
+ {
286
+ "Column": "UpdatingIDUser",
287
+ "DataType": "Numeric",
288
+ "Size": "int"
289
+ },
290
+ {
291
+ "Column": "Deleted",
292
+ "DataType": "Boolean"
293
+ },
294
+ {
295
+ "Column": "DeleteDate",
296
+ "DataType": "DateTime"
297
+ },
298
+ {
299
+ "Column": "DeletingIDUser",
300
+ "DataType": "Numeric",
301
+ "Size": "int"
302
+ },
303
+ {
304
+ "Column": "IDDataset",
305
+ "DataType": "Numeric",
306
+ "Size": "int",
307
+ "Join": "IDDataset"
308
+ },
309
+ {
310
+ "Column": "IDSource",
311
+ "DataType": "Numeric",
312
+ "Size": "int",
313
+ "Join": "IDSource"
314
+ },
315
+ {
316
+ "Column": "ReliabilityWeight",
317
+ "DataType": "Decimal",
318
+ "Size": "5,4"
319
+ }
320
+ ],
321
+ "Description": ""
322
+ },
323
+ "Record": {
324
+ "TableName": "Record",
325
+ "Domain": "Default",
326
+ "Columns": [
327
+ {
328
+ "Column": "IDRecord",
329
+ "DataType": "ID"
330
+ },
331
+ {
332
+ "Column": "GUIDRecord",
333
+ "DataType": "GUID",
334
+ "Size": "36"
335
+ },
336
+ {
337
+ "Column": "CreateDate",
338
+ "DataType": "DateTime"
339
+ },
340
+ {
341
+ "Column": "CreatingIDUser",
342
+ "DataType": "Numeric",
343
+ "Size": "int"
344
+ },
345
+ {
346
+ "Column": "UpdateDate",
347
+ "DataType": "DateTime"
348
+ },
349
+ {
350
+ "Column": "UpdatingIDUser",
351
+ "DataType": "Numeric",
352
+ "Size": "int"
353
+ },
354
+ {
355
+ "Column": "Deleted",
356
+ "DataType": "Boolean"
357
+ },
358
+ {
359
+ "Column": "DeleteDate",
360
+ "DataType": "DateTime"
361
+ },
362
+ {
363
+ "Column": "DeletingIDUser",
364
+ "DataType": "Numeric",
365
+ "Size": "int"
366
+ },
367
+ {
368
+ "Column": "IDDataset",
369
+ "DataType": "Numeric",
370
+ "Size": "int",
371
+ "Join": "IDDataset"
372
+ },
373
+ {
374
+ "Column": "IDSource",
375
+ "DataType": "Numeric",
376
+ "Size": "int",
377
+ "Join": "IDSource"
378
+ },
379
+ {
380
+ "Column": "Type",
381
+ "DataType": "String",
382
+ "Size": "64"
383
+ },
384
+ {
385
+ "Column": "SchemaHash",
386
+ "DataType": "String",
387
+ "Size": "64"
388
+ },
389
+ {
390
+ "Column": "SchemaVersion",
391
+ "DataType": "Numeric",
392
+ "Size": "int"
393
+ },
394
+ {
395
+ "Column": "Version",
396
+ "DataType": "Numeric",
397
+ "Size": "int"
398
+ },
399
+ {
400
+ "Column": "IDIngestJob",
401
+ "DataType": "Numeric",
402
+ "Size": "int"
403
+ },
404
+ {
405
+ "Column": "IngestDate",
406
+ "DataType": "DateTime"
407
+ },
408
+ {
409
+ "Column": "OriginCreateDate",
410
+ "DataType": "DateTime"
411
+ },
412
+ {
413
+ "Column": "RepresentedTimeStampStart",
414
+ "DataType": "Numeric",
415
+ "Size": "int"
416
+ },
417
+ {
418
+ "Column": "RepresentedTimeStampStop",
419
+ "DataType": "Numeric",
420
+ "Size": "int"
421
+ },
422
+ {
423
+ "Column": "RepresentedDuration",
424
+ "DataType": "Numeric",
425
+ "Size": "int"
426
+ },
427
+ {
428
+ "Column": "Content",
429
+ "DataType": "Text"
430
+ }
431
+ ],
432
+ "Description": ""
433
+ },
434
+ "RecordBinary": {
435
+ "TableName": "RecordBinary",
436
+ "Domain": "Default",
437
+ "Columns": [
438
+ {
439
+ "Column": "IDRecordBinary",
440
+ "DataType": "ID"
441
+ },
442
+ {
443
+ "Column": "GUIDRecordBinary",
444
+ "DataType": "GUID",
445
+ "Size": "36"
446
+ },
447
+ {
448
+ "Column": "CreateDate",
449
+ "DataType": "DateTime"
450
+ },
451
+ {
452
+ "Column": "CreatingIDUser",
453
+ "DataType": "Numeric",
454
+ "Size": "int"
455
+ },
456
+ {
457
+ "Column": "UpdateDate",
458
+ "DataType": "DateTime"
459
+ },
460
+ {
461
+ "Column": "UpdatingIDUser",
462
+ "DataType": "Numeric",
463
+ "Size": "int"
464
+ },
465
+ {
466
+ "Column": "Deleted",
467
+ "DataType": "Boolean"
468
+ },
469
+ {
470
+ "Column": "DeleteDate",
471
+ "DataType": "DateTime"
472
+ },
473
+ {
474
+ "Column": "DeletingIDUser",
475
+ "DataType": "Numeric",
476
+ "Size": "int"
477
+ },
478
+ {
479
+ "Column": "IDRecord",
480
+ "DataType": "Numeric",
481
+ "Size": "int",
482
+ "Join": "IDRecord"
483
+ },
484
+ {
485
+ "Column": "MimeType",
486
+ "DataType": "String",
487
+ "Size": "128"
488
+ },
489
+ {
490
+ "Column": "StorageKey",
491
+ "DataType": "String",
492
+ "Size": "256"
493
+ },
494
+ {
495
+ "Column": "FileSize",
496
+ "DataType": "Numeric",
497
+ "Size": "int"
498
+ }
499
+ ],
500
+ "Description": ""
501
+ },
502
+ "CertaintyIndex": {
503
+ "TableName": "CertaintyIndex",
504
+ "Domain": "Default",
505
+ "Columns": [
506
+ {
507
+ "Column": "IDCertaintyIndex",
508
+ "DataType": "ID"
509
+ },
510
+ {
511
+ "Column": "GUIDCertaintyIndex",
512
+ "DataType": "GUID",
513
+ "Size": "36"
514
+ },
515
+ {
516
+ "Column": "CreateDate",
517
+ "DataType": "DateTime"
518
+ },
519
+ {
520
+ "Column": "CreatingIDUser",
521
+ "DataType": "Numeric",
522
+ "Size": "int"
523
+ },
524
+ {
525
+ "Column": "UpdateDate",
526
+ "DataType": "DateTime"
527
+ },
528
+ {
529
+ "Column": "UpdatingIDUser",
530
+ "DataType": "Numeric",
531
+ "Size": "int"
532
+ },
533
+ {
534
+ "Column": "Deleted",
535
+ "DataType": "Boolean"
536
+ },
537
+ {
538
+ "Column": "DeleteDate",
539
+ "DataType": "DateTime"
540
+ },
541
+ {
542
+ "Column": "DeletingIDUser",
543
+ "DataType": "Numeric",
544
+ "Size": "int"
545
+ },
546
+ {
547
+ "Column": "IDRecord",
548
+ "DataType": "Numeric",
549
+ "Size": "int",
550
+ "Join": "IDRecord"
551
+ },
552
+ {
553
+ "Column": "CertaintyValue",
554
+ "DataType": "Decimal",
555
+ "Size": "5,4"
556
+ },
557
+ {
558
+ "Column": "Dimension",
559
+ "DataType": "String",
560
+ "Size": "128"
561
+ },
562
+ {
563
+ "Column": "Justification",
564
+ "DataType": "Text"
565
+ }
566
+ ],
567
+ "Description": ""
568
+ },
569
+ "IngestJob": {
570
+ "TableName": "IngestJob",
571
+ "Domain": "Default",
572
+ "Columns": [
573
+ {
574
+ "Column": "IDIngestJob",
575
+ "DataType": "ID"
576
+ },
577
+ {
578
+ "Column": "GUIDIngestJob",
579
+ "DataType": "GUID",
580
+ "Size": "36"
581
+ },
582
+ {
583
+ "Column": "CreateDate",
584
+ "DataType": "DateTime"
585
+ },
586
+ {
587
+ "Column": "CreatingIDUser",
588
+ "DataType": "Numeric",
589
+ "Size": "int"
590
+ },
591
+ {
592
+ "Column": "UpdateDate",
593
+ "DataType": "DateTime"
594
+ },
595
+ {
596
+ "Column": "UpdatingIDUser",
597
+ "DataType": "Numeric",
598
+ "Size": "int"
599
+ },
600
+ {
601
+ "Column": "Deleted",
602
+ "DataType": "Boolean"
603
+ },
604
+ {
605
+ "Column": "DeleteDate",
606
+ "DataType": "DateTime"
607
+ },
608
+ {
609
+ "Column": "DeletingIDUser",
610
+ "DataType": "Numeric",
611
+ "Size": "int"
612
+ },
613
+ {
614
+ "Column": "IDSource",
615
+ "DataType": "Numeric",
616
+ "Size": "int",
617
+ "Join": "IDSource"
618
+ },
619
+ {
620
+ "Column": "IDDataset",
621
+ "DataType": "Numeric",
622
+ "Size": "int",
623
+ "Join": "IDDataset"
624
+ },
625
+ {
626
+ "Column": "Status",
627
+ "DataType": "String",
628
+ "Size": "32"
629
+ },
630
+ {
631
+ "Column": "StartDate",
632
+ "DataType": "DateTime"
633
+ },
634
+ {
635
+ "Column": "EndDate",
636
+ "DataType": "DateTime"
637
+ },
638
+ {
639
+ "Column": "RecordsProcessed",
640
+ "DataType": "Numeric",
641
+ "Size": "int"
642
+ },
643
+ {
644
+ "Column": "RecordsCreated",
645
+ "DataType": "Numeric",
646
+ "Size": "int"
647
+ },
648
+ {
649
+ "Column": "RecordsUpdated",
650
+ "DataType": "Numeric",
651
+ "Size": "int"
652
+ },
653
+ {
654
+ "Column": "RecordsErrored",
655
+ "DataType": "Numeric",
656
+ "Size": "int"
657
+ },
658
+ {
659
+ "Column": "Configuration",
660
+ "DataType": "Text"
661
+ },
662
+ {
663
+ "Column": "Log",
664
+ "DataType": "Text"
665
+ },
666
+ {
667
+ "Column": "DatasetVersion",
668
+ "DataType": "Numeric",
669
+ "Size": "int"
670
+ },
671
+ {
672
+ "Column": "ContentSignature",
673
+ "DataType": "String",
674
+ "Size": "128"
675
+ }
676
+ ],
677
+ "Description": ""
678
+ },
679
+ "SourceCatalogEntry": {
680
+ "TableName": "SourceCatalogEntry",
681
+ "Domain": "Default",
682
+ "Columns": [
683
+ {
684
+ "Column": "IDSourceCatalogEntry",
685
+ "DataType": "ID"
686
+ },
687
+ {
688
+ "Column": "GUIDSourceCatalogEntry",
689
+ "DataType": "GUID",
690
+ "Size": "36"
691
+ },
692
+ {
693
+ "Column": "CreateDate",
694
+ "DataType": "DateTime"
695
+ },
696
+ {
697
+ "Column": "CreatingIDUser",
698
+ "DataType": "Numeric",
699
+ "Size": "int"
700
+ },
701
+ {
702
+ "Column": "UpdateDate",
703
+ "DataType": "DateTime"
704
+ },
705
+ {
706
+ "Column": "UpdatingIDUser",
707
+ "DataType": "Numeric",
708
+ "Size": "int"
709
+ },
710
+ {
711
+ "Column": "Deleted",
712
+ "DataType": "Boolean"
713
+ },
714
+ {
715
+ "Column": "DeleteDate",
716
+ "DataType": "DateTime"
717
+ },
718
+ {
719
+ "Column": "DeletingIDUser",
720
+ "DataType": "Numeric",
721
+ "Size": "int"
722
+ },
723
+ {
724
+ "Column": "Agency",
725
+ "DataType": "String",
726
+ "Size": "200"
727
+ },
728
+ {
729
+ "Column": "Name",
730
+ "DataType": "String",
731
+ "Size": "200"
732
+ },
733
+ {
734
+ "Column": "Type",
735
+ "DataType": "String",
736
+ "Size": "64"
737
+ },
738
+ {
739
+ "Column": "URL",
740
+ "DataType": "String",
741
+ "Size": "512"
742
+ },
743
+ {
744
+ "Column": "Protocol",
745
+ "DataType": "String",
746
+ "Size": "32"
747
+ },
748
+ {
749
+ "Column": "Category",
750
+ "DataType": "String",
751
+ "Size": "128"
752
+ },
753
+ {
754
+ "Column": "Region",
755
+ "DataType": "String",
756
+ "Size": "128"
757
+ },
758
+ {
759
+ "Column": "UpdateFrequency",
760
+ "DataType": "String",
761
+ "Size": "64"
762
+ },
763
+ {
764
+ "Column": "Description",
765
+ "DataType": "Text"
766
+ },
767
+ {
768
+ "Column": "Notes",
769
+ "DataType": "Text"
770
+ },
771
+ {
772
+ "Column": "Verified",
773
+ "DataType": "Boolean"
774
+ }
775
+ ],
776
+ "Description": ""
777
+ },
778
+ "CatalogDatasetDefinition": {
779
+ "TableName": "CatalogDatasetDefinition",
780
+ "Domain": "Default",
781
+ "Columns": [
782
+ {
783
+ "Column": "IDCatalogDatasetDefinition",
784
+ "DataType": "ID"
785
+ },
786
+ {
787
+ "Column": "GUIDCatalogDatasetDefinition",
788
+ "DataType": "GUID",
789
+ "Size": "36"
790
+ },
791
+ {
792
+ "Column": "CreateDate",
793
+ "DataType": "DateTime"
794
+ },
795
+ {
796
+ "Column": "CreatingIDUser",
797
+ "DataType": "Numeric",
798
+ "Size": "int"
799
+ },
800
+ {
801
+ "Column": "UpdateDate",
802
+ "DataType": "DateTime"
803
+ },
804
+ {
805
+ "Column": "UpdatingIDUser",
806
+ "DataType": "Numeric",
807
+ "Size": "int"
808
+ },
809
+ {
810
+ "Column": "Deleted",
811
+ "DataType": "Boolean"
812
+ },
813
+ {
814
+ "Column": "DeleteDate",
815
+ "DataType": "DateTime"
816
+ },
817
+ {
818
+ "Column": "DeletingIDUser",
819
+ "DataType": "Numeric",
820
+ "Size": "int"
821
+ },
822
+ {
823
+ "Column": "IDSourceCatalogEntry",
824
+ "DataType": "Numeric",
825
+ "Size": "int",
826
+ "Join": "IDSourceCatalogEntry"
827
+ },
828
+ {
829
+ "Column": "Name",
830
+ "DataType": "String",
831
+ "Size": "200"
832
+ },
833
+ {
834
+ "Column": "Format",
835
+ "DataType": "String",
836
+ "Size": "32"
837
+ },
838
+ {
839
+ "Column": "MimeType",
840
+ "DataType": "String",
841
+ "Size": "128"
842
+ },
843
+ {
844
+ "Column": "EndpointURL",
845
+ "DataType": "String",
846
+ "Size": "512"
847
+ },
848
+ {
849
+ "Column": "Description",
850
+ "DataType": "Text"
851
+ },
852
+ {
853
+ "Column": "ParseOptions",
854
+ "DataType": "Text"
855
+ },
856
+ {
857
+ "Column": "AuthRequirements",
858
+ "DataType": "Text"
859
+ },
860
+ {
861
+ "Column": "VersionPolicy",
862
+ "DataType": "String",
863
+ "Size": "16"
864
+ },
865
+ {
866
+ "Column": "Provisioned",
867
+ "DataType": "Boolean"
868
+ },
869
+ {
870
+ "Column": "IDSource",
871
+ "DataType": "Numeric",
872
+ "Size": "int"
873
+ },
874
+ {
875
+ "Column": "IDDataset",
876
+ "DataType": "Numeric",
877
+ "Size": "int"
878
+ }
879
+ ],
880
+ "Description": ""
881
+ },
882
+ "StoreConnection": {
883
+ "TableName": "StoreConnection",
884
+ "Domain": "Default",
885
+ "Columns": [
886
+ {
887
+ "Column": "IDStoreConnection",
888
+ "DataType": "ID"
889
+ },
890
+ {
891
+ "Column": "GUIDStoreConnection",
892
+ "DataType": "GUID",
893
+ "Size": "36"
894
+ },
895
+ {
896
+ "Column": "CreateDate",
897
+ "DataType": "DateTime"
898
+ },
899
+ {
900
+ "Column": "CreatingIDUser",
901
+ "DataType": "Numeric",
902
+ "Size": "int"
903
+ },
904
+ {
905
+ "Column": "UpdateDate",
906
+ "DataType": "DateTime"
907
+ },
908
+ {
909
+ "Column": "UpdatingIDUser",
910
+ "DataType": "Numeric",
911
+ "Size": "int"
912
+ },
913
+ {
914
+ "Column": "Deleted",
915
+ "DataType": "Boolean"
916
+ },
917
+ {
918
+ "Column": "DeleteDate",
919
+ "DataType": "DateTime"
920
+ },
921
+ {
922
+ "Column": "DeletingIDUser",
923
+ "DataType": "Numeric",
924
+ "Size": "int"
925
+ },
926
+ {
927
+ "Column": "Name",
928
+ "DataType": "String",
929
+ "Size": "200"
930
+ },
931
+ {
932
+ "Column": "Type",
933
+ "DataType": "String",
934
+ "Size": "32"
935
+ },
936
+ {
937
+ "Column": "Config",
938
+ "DataType": "Text"
939
+ },
940
+ {
941
+ "Column": "Status",
942
+ "DataType": "String",
943
+ "Size": "32"
944
+ },
945
+ {
946
+ "Column": "LastTestedDate",
947
+ "DataType": "DateTime"
948
+ }
949
+ ]
950
+ },
951
+ "ProjectionStore": {
952
+ "TableName": "ProjectionStore",
953
+ "Domain": "Default",
954
+ "Columns": [
955
+ {
956
+ "Column": "IDProjectionStore",
957
+ "DataType": "ID"
958
+ },
959
+ {
960
+ "Column": "GUIDProjectionStore",
961
+ "DataType": "GUID",
962
+ "Size": "36"
963
+ },
964
+ {
965
+ "Column": "CreateDate",
966
+ "DataType": "DateTime"
967
+ },
968
+ {
969
+ "Column": "CreatingIDUser",
970
+ "DataType": "Numeric",
971
+ "Size": "int"
972
+ },
973
+ {
974
+ "Column": "UpdateDate",
975
+ "DataType": "DateTime"
976
+ },
977
+ {
978
+ "Column": "UpdatingIDUser",
979
+ "DataType": "Numeric",
980
+ "Size": "int"
981
+ },
982
+ {
983
+ "Column": "Deleted",
984
+ "DataType": "Boolean"
985
+ },
986
+ {
987
+ "Column": "DeleteDate",
988
+ "DataType": "DateTime"
989
+ },
990
+ {
991
+ "Column": "DeletingIDUser",
992
+ "DataType": "Numeric",
993
+ "Size": "int"
994
+ },
995
+ {
996
+ "Column": "IDDataset",
997
+ "DataType": "Numeric",
998
+ "Size": "int",
999
+ "Join": "IDDataset"
1000
+ },
1001
+ {
1002
+ "Column": "IDStoreConnection",
1003
+ "DataType": "Numeric",
1004
+ "Size": "int",
1005
+ "Join": "IDStoreConnection"
1006
+ },
1007
+ {
1008
+ "Column": "TargetTableName",
1009
+ "DataType": "String",
1010
+ "Size": "200"
1011
+ },
1012
+ {
1013
+ "Column": "Status",
1014
+ "DataType": "String",
1015
+ "Size": "32"
1016
+ },
1017
+ {
1018
+ "Column": "DeployedAt",
1019
+ "DataType": "DateTime"
1020
+ },
1021
+ {
1022
+ "Column": "DeployLog",
1023
+ "DataType": "Text"
1024
+ }
1025
+ ]
1026
+ },
1027
+ "ProjectionMapping": {
1028
+ "TableName": "ProjectionMapping",
1029
+ "Domain": "Default",
1030
+ "Columns": [
1031
+ {
1032
+ "Column": "IDProjectionMapping",
1033
+ "DataType": "ID"
1034
+ },
1035
+ {
1036
+ "Column": "GUIDProjectionMapping",
1037
+ "DataType": "GUID",
1038
+ "Size": "36"
1039
+ },
1040
+ {
1041
+ "Column": "CreateDate",
1042
+ "DataType": "DateTime"
1043
+ },
1044
+ {
1045
+ "Column": "CreatingIDUser",
1046
+ "DataType": "Numeric",
1047
+ "Size": "int"
1048
+ },
1049
+ {
1050
+ "Column": "UpdateDate",
1051
+ "DataType": "DateTime"
1052
+ },
1053
+ {
1054
+ "Column": "UpdatingIDUser",
1055
+ "DataType": "Numeric",
1056
+ "Size": "int"
1057
+ },
1058
+ {
1059
+ "Column": "Deleted",
1060
+ "DataType": "Boolean"
1061
+ },
1062
+ {
1063
+ "Column": "DeleteDate",
1064
+ "DataType": "DateTime"
1065
+ },
1066
+ {
1067
+ "Column": "DeletingIDUser",
1068
+ "DataType": "Numeric",
1069
+ "Size": "int"
1070
+ },
1071
+ {
1072
+ "Column": "IDDataset",
1073
+ "DataType": "Numeric",
1074
+ "Size": "int",
1075
+ "Join": "IDDataset"
1076
+ },
1077
+ {
1078
+ "Column": "IDSource",
1079
+ "DataType": "Numeric",
1080
+ "Size": "int",
1081
+ "Join": "IDSource"
1082
+ },
1083
+ {
1084
+ "Column": "IDProjectionStore",
1085
+ "DataType": "Numeric",
1086
+ "Size": "int",
1087
+ "Join": "IDProjectionStore"
1088
+ },
1089
+ {
1090
+ "Column": "Name",
1091
+ "DataType": "String",
1092
+ "Size": "200"
1093
+ },
1094
+ {
1095
+ "Column": "SchemaVersion",
1096
+ "DataType": "Numeric",
1097
+ "Size": "int"
1098
+ },
1099
+ {
1100
+ "Column": "MappingConfiguration",
1101
+ "DataType": "Text"
1102
+ },
1103
+ {
1104
+ "Column": "FlowDiagramState",
1105
+ "DataType": "Text"
1106
+ },
1107
+ {
1108
+ "Column": "Active",
1109
+ "DataType": "Boolean"
1110
+ }
1111
+ ]
1112
+ },
1113
+ "FactoSchema": {
1114
+ "TableName": "FactoSchema",
1115
+ "Domain": "Default",
1116
+ "Columns": [
1117
+ {
1118
+ "Column": "IDSchema",
1119
+ "DataType": "ID"
1120
+ },
1121
+ {
1122
+ "Column": "GUIDSchema",
1123
+ "DataType": "GUID",
1124
+ "Size": "36"
1125
+ },
1126
+ {
1127
+ "Column": "CreateDate",
1128
+ "DataType": "DateTime"
1129
+ },
1130
+ {
1131
+ "Column": "CreatingIDUser",
1132
+ "DataType": "Numeric",
1133
+ "Size": "int"
1134
+ },
1135
+ {
1136
+ "Column": "UpdateDate",
1137
+ "DataType": "DateTime"
1138
+ },
1139
+ {
1140
+ "Column": "UpdatingIDUser",
1141
+ "DataType": "Numeric",
1142
+ "Size": "int"
1143
+ },
1144
+ {
1145
+ "Column": "Deleted",
1146
+ "DataType": "Boolean"
1147
+ },
1148
+ {
1149
+ "Column": "DeleteDate",
1150
+ "DataType": "DateTime"
1151
+ },
1152
+ {
1153
+ "Column": "DeletingIDUser",
1154
+ "DataType": "Numeric",
1155
+ "Size": "int"
1156
+ },
1157
+ {
1158
+ "Column": "Name",
1159
+ "DataType": "String",
1160
+ "Size": "200"
1161
+ },
1162
+ {
1163
+ "Column": "Hash",
1164
+ "DataType": "String",
1165
+ "Size": "128"
1166
+ },
1167
+ {
1168
+ "Column": "Type",
1169
+ "DataType": "String",
1170
+ "Size": "64"
1171
+ },
1172
+ {
1173
+ "Column": "Description",
1174
+ "DataType": "Text"
1175
+ },
1176
+ {
1177
+ "Column": "Version",
1178
+ "DataType": "Numeric",
1179
+ "Size": "int"
1180
+ },
1181
+ {
1182
+ "Column": "SchemaDefinition",
1183
+ "DataType": "Text"
1184
+ },
1185
+ {
1186
+ "Column": "ManyfestDefinition",
1187
+ "DataType": "Text"
1188
+ },
1189
+ {
1190
+ "Column": "SchemaHash",
1191
+ "DataType": "String",
1192
+ "Size": "64"
1193
+ },
1194
+ {
1195
+ "Column": "Active",
1196
+ "DataType": "Boolean"
1197
+ }
1198
+ ]
1199
+ },
1200
+ "SchemaDocumentation": {
1201
+ "TableName": "SchemaDocumentation",
1202
+ "Domain": "Default",
1203
+ "Columns": [
1204
+ {
1205
+ "Column": "IDSchemaDocumentation",
1206
+ "DataType": "ID"
1207
+ },
1208
+ {
1209
+ "Column": "GUIDSchemaDocumentation",
1210
+ "DataType": "GUID",
1211
+ "Size": "36"
1212
+ },
1213
+ {
1214
+ "Column": "CreateDate",
1215
+ "DataType": "DateTime"
1216
+ },
1217
+ {
1218
+ "Column": "CreatingIDUser",
1219
+ "DataType": "Numeric",
1220
+ "Size": "int"
1221
+ },
1222
+ {
1223
+ "Column": "UpdateDate",
1224
+ "DataType": "DateTime"
1225
+ },
1226
+ {
1227
+ "Column": "UpdatingIDUser",
1228
+ "DataType": "Numeric",
1229
+ "Size": "int"
1230
+ },
1231
+ {
1232
+ "Column": "Deleted",
1233
+ "DataType": "Boolean"
1234
+ },
1235
+ {
1236
+ "Column": "DeleteDate",
1237
+ "DataType": "DateTime"
1238
+ },
1239
+ {
1240
+ "Column": "DeletingIDUser",
1241
+ "DataType": "Numeric",
1242
+ "Size": "int"
1243
+ },
1244
+ {
1245
+ "Column": "IDSchema",
1246
+ "DataType": "Numeric",
1247
+ "Size": "int",
1248
+ "Join": "IDSchema"
1249
+ },
1250
+ {
1251
+ "Column": "Name",
1252
+ "DataType": "String",
1253
+ "Size": "200"
1254
+ },
1255
+ {
1256
+ "Column": "DocumentType",
1257
+ "DataType": "String",
1258
+ "Size": "64"
1259
+ },
1260
+ {
1261
+ "Column": "MimeType",
1262
+ "DataType": "String",
1263
+ "Size": "128"
1264
+ },
1265
+ {
1266
+ "Column": "StorageKey",
1267
+ "DataType": "String",
1268
+ "Size": "256"
1269
+ },
1270
+ {
1271
+ "Column": "Description",
1272
+ "DataType": "Text"
1273
+ },
1274
+ {
1275
+ "Column": "Content",
1276
+ "DataType": "Text"
1277
+ }
1278
+ ]
1279
+ },
1280
+ "SchemaVersion": {
1281
+ "TableName": "SchemaVersion",
1282
+ "Domain": "Default",
1283
+ "Columns": [
1284
+ {
1285
+ "Column": "IDSchemaVersion",
1286
+ "DataType": "ID"
1287
+ },
1288
+ {
1289
+ "Column": "GUIDSchemaVersion",
1290
+ "DataType": "GUID",
1291
+ "Size": "36"
1292
+ },
1293
+ {
1294
+ "Column": "CreateDate",
1295
+ "DataType": "DateTime"
1296
+ },
1297
+ {
1298
+ "Column": "CreatingIDUser",
1299
+ "DataType": "Numeric",
1300
+ "Size": "int"
1301
+ },
1302
+ {
1303
+ "Column": "UpdateDate",
1304
+ "DataType": "DateTime"
1305
+ },
1306
+ {
1307
+ "Column": "UpdatingIDUser",
1308
+ "DataType": "Numeric",
1309
+ "Size": "int"
1310
+ },
1311
+ {
1312
+ "Column": "Deleted",
1313
+ "DataType": "Boolean"
1314
+ },
1315
+ {
1316
+ "Column": "DeleteDate",
1317
+ "DataType": "DateTime"
1318
+ },
1319
+ {
1320
+ "Column": "DeletingIDUser",
1321
+ "DataType": "Numeric",
1322
+ "Size": "int"
1323
+ },
1324
+ {
1325
+ "Column": "IDSchema",
1326
+ "DataType": "Numeric",
1327
+ "Size": "int",
1328
+ "Join": "IDSchema"
1329
+ },
1330
+ {
1331
+ "Column": "Version",
1332
+ "DataType": "Numeric",
1333
+ "Size": "int"
1334
+ },
1335
+ {
1336
+ "Column": "SchemaDefinition",
1337
+ "DataType": "Text"
1338
+ },
1339
+ {
1340
+ "Column": "ManyfestDefinition",
1341
+ "DataType": "Text"
1342
+ },
1343
+ {
1344
+ "Column": "SchemaHash",
1345
+ "DataType": "String",
1346
+ "Size": "64"
1347
+ },
1348
+ {
1349
+ "Column": "ChangeDescription",
1350
+ "DataType": "Text"
1351
+ }
1352
+ ]
1353
+ }
1354
+ }
1355
+ }