meadow-integration 1.0.40 → 1.0.42

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 (75) hide show
  1. package/BUILDING-AND-PUBLISHING.md +2 -2
  2. package/Dockerfile +1 -1
  3. package/README.md +27 -8
  4. package/docs/README.md +1 -1
  5. package/docs/_brand.json +18 -0
  6. package/docs/_cover.md +1 -1
  7. package/docs/_topbar.md +1 -1
  8. package/docs/_version.json +3 -3
  9. package/docs/architecture.md +14 -225
  10. package/docs/data-clone/configuration.md +9 -1
  11. package/docs/data-clone/diagrams/architecture-diagram.excalidraw +1756 -0
  12. package/docs/data-clone/diagrams/architecture-diagram.mmd +8 -0
  13. package/docs/data-clone/diagrams/architecture-diagram.svg +2 -0
  14. package/docs/data-clone/overview.md +2 -32
  15. package/docs/diagrams/configuration-cascade-2.excalidraw +831 -0
  16. package/docs/diagrams/configuration-cascade-2.mmd +8 -0
  17. package/docs/diagrams/configuration-cascade-2.svg +2 -0
  18. package/docs/diagrams/configuration-cascade.excalidraw +831 -0
  19. package/docs/diagrams/configuration-cascade.mmd +8 -0
  20. package/docs/diagrams/configuration-cascade.svg +2 -0
  21. package/docs/diagrams/data-synchronization-pipeline.excalidraw +3278 -0
  22. package/docs/diagrams/data-synchronization-pipeline.mmd +42 -0
  23. package/docs/diagrams/data-synchronization-pipeline.svg +2 -0
  24. package/docs/diagrams/data-transformation-pipeline.excalidraw +2929 -0
  25. package/docs/diagrams/data-transformation-pipeline.mmd +31 -0
  26. package/docs/diagrams/data-transformation-pipeline.svg +2 -0
  27. package/docs/diagrams/docker-deployment.excalidraw +1963 -0
  28. package/docs/diagrams/docker-deployment.mmd +23 -0
  29. package/docs/diagrams/docker-deployment.svg +2 -0
  30. package/docs/diagrams/high-level-system-architecture.excalidraw +5752 -0
  31. package/docs/diagrams/high-level-system-architecture.mmd +66 -0
  32. package/docs/diagrams/high-level-system-architecture.svg +2 -0
  33. package/docs/diagrams/module-structure.excalidraw +15206 -0
  34. package/docs/diagrams/module-structure.mmd +56 -0
  35. package/docs/diagrams/module-structure.svg +2 -0
  36. package/docs/diagrams/sync-mode-comparison.excalidraw +3660 -0
  37. package/docs/diagrams/sync-mode-comparison.mmd +33 -0
  38. package/docs/diagrams/sync-mode-comparison.svg +2 -0
  39. package/docs/implementation-reference.md +2 -58
  40. package/docs/index.html +6 -7
  41. package/docs/retold-catalog.json +388 -279
  42. package/docs/retold-keyword-index.json +24887 -16186
  43. package/example-applications/mapping-demo/README.md +2 -10
  44. package/example-applications/mapping-demo/diagrams/architecture.excalidraw +1866 -0
  45. package/example-applications/mapping-demo/diagrams/architecture.mmd +8 -0
  46. package/example-applications/mapping-demo/diagrams/architecture.svg +2 -0
  47. package/example-applications/mapping-demo/package.json +22 -1
  48. package/example-applications/mapping-demo/server.js +28 -0
  49. package/example-applications/mapping-demo/source/MappingDemoApp.js +42 -3
  50. package/example-applications/mapping-demo/source/MappingDemoBrand.js +17 -0
  51. package/example-applications/mapping-demo/web/favicons/apple-touch-icon.png +0 -0
  52. package/example-applications/mapping-demo/web/favicons/favicon-16.png +0 -0
  53. package/example-applications/mapping-demo/web/favicons/favicon-192.png +0 -0
  54. package/example-applications/mapping-demo/web/favicons/favicon-32.png +0 -0
  55. package/example-applications/mapping-demo/web/favicons/favicon-48.png +0 -0
  56. package/example-applications/mapping-demo/web/favicons/favicon-512.png +0 -0
  57. package/example-applications/mapping-demo/web/favicons/favicon-64.png +0 -0
  58. package/example-applications/mapping-demo/web/favicons/favicon-dark.svg +30 -0
  59. package/example-applications/mapping-demo/web/favicons/favicon-light.svg +30 -0
  60. package/example-applications/mapping-demo/web/favicons/favicon.svg +30 -0
  61. package/example-applications/mapping-demo/web/index.html +40 -26
  62. package/example-applications/mapping-demo/web/mapping-demo-editor.js +3267 -398
  63. package/example-applications/mapping-demo/web/mapping-demo-editor.js.map +1 -1
  64. package/example-applications/mapping-demo/web/mapping-demo-editor.min.js +34 -1
  65. package/example-applications/mapping-demo/web/mapping-demo-editor.min.js.map +1 -1
  66. package/example-applications/mapping-demo/web/pict.min.js +2 -2
  67. package/package.json +10 -7
  68. package/source/services/clone/Meadow-Service-DeleteCursorStore.js +105 -0
  69. package/source/services/clone/Meadow-Service-Sync-Entity-OngoingEventualConsistency.js +327 -92
  70. package/source/services/clone/Meadow-Service-Sync.js +2 -0
  71. package/source/views/PictView-MeadowMappingEditor.js +30 -30
  72. package/test/Meadow-Integration-BisectionSync_test.js +15 -5
  73. package/test/Meadow-Integration-NewStrategies_test.js +15 -5
  74. package/test/Meadow-Integration-OngoingEventualConsistencyDeleteCursor_test.js +228 -0
  75. package/test/Meadow-Integration-OngoingEventualConsistencyDeleteSync_test.js +311 -0
@@ -1,282 +1,391 @@
1
1
  {
2
- "Generated": "2026-04-10T17:21:41.193Z",
3
- "GitHubOrg": "stevenvelozo",
2
+ "Generated": "2026-06-01T03:44:17.172Z",
3
+ "Mode": "module",
4
+ "GitHubOrg": "fable-retold",
4
5
  "DefaultBranch": "master",
5
- "Groups": [
6
- {
7
- "Name": "Dist",
8
- "Key": "dist",
9
- "Description": "",
10
- "Modules": [
11
- {
12
- "Name": "indoctrinate_content_staging",
13
- "Repo": "indoctrinate_content_staging",
14
- "Group": "dist",
15
- "Branch": "master",
16
- "HasDocs": false,
17
- "HasCover": false,
18
- "Sidebar": [],
19
- "DocFiles": []
20
- }
21
- ]
22
- },
23
- {
24
- "Name": "Docs",
25
- "Key": "docs",
26
- "Description": "",
27
- "Modules": [
28
- {
29
- "Name": "api",
30
- "Repo": "api",
31
- "Group": "docs",
32
- "Branch": "master",
33
- "HasDocs": true,
34
- "HasCover": false,
35
- "Sidebar": [],
36
- "DocFiles": [
37
- "api/clone-rest-client.md",
38
- "api/connection-manager.md",
39
- "api/guid-map.md",
40
- "api/integration-adapter.md",
41
- "api/operation.md",
42
- "api/sync-entity-initial.md",
43
- "api/sync-entity-ongoing.md",
44
- "api/sync.md",
45
- "api/tabular-check.md",
46
- "api/tabular-transform.md"
47
- ]
48
- },
49
- {
50
- "Name": "cli",
51
- "Repo": "cli",
52
- "Group": "docs",
53
- "Branch": "master",
54
- "HasDocs": true,
55
- "HasCover": false,
56
- "Sidebar": [],
57
- "DocFiles": [
58
- "cli/comprehensionarray.md",
59
- "cli/comprehensionintersect.md",
60
- "cli/csvcheck.md",
61
- "cli/csvtransform.md",
62
- "cli/data-clone.md",
63
- "cli/jsonarraytransform.md",
64
- "cli/load-comprehension.md",
65
- "cli/objectarraytocsv.md",
66
- "cli/overview.md",
67
- "cli/serve.md",
68
- "cli/tsvtransform.md"
69
- ]
70
- },
71
- {
72
- "Name": "comprehension-push",
73
- "Repo": "comprehension-push",
74
- "Group": "docs",
75
- "Branch": "master",
76
- "HasDocs": true,
77
- "HasCover": false,
78
- "Sidebar": [],
79
- "DocFiles": [
80
- "comprehension-push/configuration.md"
81
- ]
82
- },
83
- {
84
- "Name": "css",
85
- "Repo": "css",
86
- "Group": "docs",
87
- "Branch": "master",
88
- "HasDocs": true,
89
- "HasCover": false,
90
- "Sidebar": [],
91
- "DocFiles": [
92
- "css/docuserve.css"
93
- ]
94
- },
95
- {
96
- "Name": "data-clone",
97
- "Repo": "data-clone",
98
- "Group": "docs",
99
- "Branch": "master",
100
- "HasDocs": true,
101
- "HasCover": false,
102
- "Sidebar": [],
103
- "DocFiles": [
104
- "data-clone/configuration.md",
105
- "data-clone/connection-manager.md",
106
- "data-clone/docker.md",
107
- "data-clone/overview.md",
108
- "data-clone/sync-modes.md"
109
- ]
110
- },
111
- {
112
- "Name": "examples",
113
- "Repo": "examples",
114
- "Group": "docs",
115
- "Branch": "master",
116
- "HasDocs": true,
117
- "HasCover": false,
118
- "Sidebar": [],
119
- "DocFiles": [
120
- "examples/bookstore/.gitignore",
121
- "examples/bookstore/BookData.md",
122
- "examples/bookstore/Generate_Bookstore_Comprehension.sh",
123
- "examples/bookstore/mapping_books_BookAuthorJoin.json",
124
- "examples/bookstore/mapping_books_author.json",
125
- "examples/bookstore/mapping_books_book.json",
126
- "examples/data/books.csv",
127
- "examples/data/seattle_neighborhoods/Seattle_Data_Information.md",
128
- "examples/data/seattle_neighborhoods/housing_characteristics_Neighborhoods.csv",
129
- "examples/data/seattle_neighborhoods/housing_costs_Neighborhoods.csv",
130
- "examples/data/seattle_neighborhoods/race_ethnicity_Neighborhoods.csv",
131
- "examples/multi_set_integration/multi_set_step_by_step.md",
132
- "examples/multi_set_integration/multi_set_step_by_step_overview_diagram.excalidraw.svg",
133
- "examples/multi_set_integration/part_1_getting_data.md"
134
- ]
135
- },
136
- {
137
- "Name": "rest",
138
- "Repo": "rest",
139
- "Group": "docs",
140
- "Branch": "master",
141
- "HasDocs": true,
142
- "HasCover": false,
143
- "Sidebar": [],
144
- "DocFiles": [
145
- "rest/comprehension-push.md",
146
- "rest/comprehension.md",
147
- "rest/csv.md",
148
- "rest/entity-generation.md",
149
- "rest/json-array.md",
150
- "rest/overview.md",
151
- "rest/status.md",
152
- "rest/tsv.md"
153
- ]
154
- },
155
- {
156
- "Name": "vocabulary",
157
- "Repo": "vocabulary",
158
- "Group": "docs",
159
- "Branch": "master",
160
- "HasDocs": true,
161
- "HasCover": false,
162
- "Sidebar": [],
163
- "DocFiles": [
164
- "vocabulary/Column.md",
165
- "vocabulary/Comprehension.md",
166
- "vocabulary/Confidence.md",
167
- "vocabulary/Data Capture Date.md",
168
- "vocabulary/Data Entry Date.md",
169
- "vocabulary/Entity.md",
170
- "vocabulary/Format.md",
171
- "vocabulary/GUID.md",
172
- "vocabulary/Join.md",
173
- "vocabulary/Record.md",
174
- "vocabulary/Schema.md",
175
- "vocabulary/Set.md",
176
- "vocabulary/Snapshot.md",
177
- "vocabulary/Source.md",
178
- "vocabulary/Version.md"
179
- ]
180
- }
181
- ]
182
- },
183
- {
184
- "Name": "Example-applications",
185
- "Key": "example-applications",
186
- "Description": "",
187
- "Modules": [
188
- {
189
- "Name": "mapping-demo",
190
- "Repo": "mapping-demo",
191
- "Group": "example-applications",
192
- "Branch": "master",
193
- "HasDocs": false,
194
- "HasCover": false,
195
- "Sidebar": [],
196
- "DocFiles": []
197
- }
198
- ]
199
- },
200
- {
201
- "Name": "Examples",
202
- "Key": "examples",
203
- "Description": "",
204
- "Modules": [
205
- {
206
- "Name": "output",
207
- "Repo": "output",
208
- "Group": "examples",
209
- "Branch": "master",
210
- "HasDocs": false,
211
- "HasCover": false,
212
- "Sidebar": [],
213
- "DocFiles": []
214
- }
215
- ]
216
- },
217
- {
218
- "Name": "Source",
219
- "Key": "source",
220
- "Description": "",
221
- "Modules": [
222
- {
223
- "Name": "cli",
224
- "Repo": "cli",
225
- "Group": "source",
226
- "Branch": "master",
227
- "HasDocs": false,
228
- "HasCover": false,
229
- "Sidebar": [],
230
- "DocFiles": []
231
- },
232
- {
233
- "Name": "restserver",
234
- "Repo": "restserver",
235
- "Group": "source",
236
- "Branch": "master",
237
- "HasDocs": false,
238
- "HasCover": false,
239
- "Sidebar": [],
240
- "DocFiles": []
241
- },
242
- {
243
- "Name": "services",
244
- "Repo": "services",
245
- "Group": "source",
246
- "Branch": "master",
247
- "HasDocs": false,
248
- "HasCover": false,
249
- "Sidebar": [],
250
- "DocFiles": []
251
- },
252
- {
253
- "Name": "views",
254
- "Repo": "views",
255
- "Group": "source",
256
- "Branch": "master",
257
- "HasDocs": false,
258
- "HasCover": false,
259
- "Sidebar": [],
260
- "DocFiles": []
261
- }
262
- ]
263
- },
264
- {
265
- "Name": "Test",
266
- "Key": "test",
267
- "Description": "",
268
- "Modules": [
269
- {
270
- "Name": "data",
271
- "Repo": "data",
272
- "Group": "test",
273
- "Branch": "master",
274
- "HasDocs": false,
275
- "HasCover": false,
276
- "Sidebar": [],
277
- "DocFiles": []
278
- }
279
- ]
280
- }
281
- ]
6
+ "Module": {
7
+ "Name": "meadow-integration",
8
+ "Repo": "meadow-integration",
9
+ "Group": "",
10
+ "Branch": "master",
11
+ "HasDocs": true,
12
+ "HasCover": true,
13
+ "Sidebar": [
14
+ {
15
+ "Title": "Getting Started",
16
+ "Children": [
17
+ {
18
+ "Title": "Introduction",
19
+ "Path": "README.md"
20
+ },
21
+ {
22
+ "Title": "Quick Start",
23
+ "Path": "quickstart.md"
24
+ },
25
+ {
26
+ "Title": "Overview",
27
+ "Path": "overview.md"
28
+ }
29
+ ]
30
+ },
31
+ {
32
+ "Title": "Architecture",
33
+ "Children": [
34
+ {
35
+ "Title": "Design",
36
+ "Path": "architecture.md"
37
+ },
38
+ {
39
+ "Title": "Implementation Reference",
40
+ "Path": "implementation-reference.md"
41
+ }
42
+ ]
43
+ },
44
+ {
45
+ "Title": "Data Transformation",
46
+ "Children": [
47
+ {
48
+ "Title": "Comprehensions",
49
+ "Path": "comprehensions.md"
50
+ },
51
+ {
52
+ "Title": "Mapping Files",
53
+ "Path": "mapping-files.md"
54
+ }
55
+ ]
56
+ },
57
+ {
58
+ "Title": "Comprehension Push",
59
+ "Children": [
60
+ {
61
+ "Title": "Integration Adapter",
62
+ "Path": "integration-adapter.md"
63
+ },
64
+ {
65
+ "Title": "Push Configuration",
66
+ "Path": "comprehension-push/configuration.md"
67
+ }
68
+ ]
69
+ },
70
+ {
71
+ "Title": "Data Synchronization",
72
+ "Children": [
73
+ {
74
+ "Title": "Data Clone Overview",
75
+ "Path": "data-clone/overview.md"
76
+ },
77
+ {
78
+ "Title": "Connection Manager",
79
+ "Path": "data-clone/connection-manager.md"
80
+ },
81
+ {
82
+ "Title": "Sync Modes",
83
+ "Path": "data-clone/sync-modes.md"
84
+ },
85
+ {
86
+ "Title": "Clone Configuration",
87
+ "Path": "data-clone/configuration.md"
88
+ },
89
+ {
90
+ "Title": "Docker Deployment",
91
+ "Path": "data-clone/docker.md"
92
+ }
93
+ ]
94
+ },
95
+ {
96
+ "Title": "CLI Reference",
97
+ "Children": [
98
+ {
99
+ "Title": "CLI Overview",
100
+ "Path": "cli/overview.md"
101
+ },
102
+ {
103
+ "Title": "csvcheck",
104
+ "Path": "cli/csvcheck.md"
105
+ },
106
+ {
107
+ "Title": "csvtransform",
108
+ "Path": "cli/csvtransform.md"
109
+ },
110
+ {
111
+ "Title": "tsvtransform",
112
+ "Path": "cli/tsvtransform.md"
113
+ },
114
+ {
115
+ "Title": "jsonarraytransform",
116
+ "Path": "cli/jsonarraytransform.md"
117
+ },
118
+ {
119
+ "Title": "comprehensionintersect",
120
+ "Path": "cli/comprehensionintersect.md"
121
+ },
122
+ {
123
+ "Title": "comprehensionarray",
124
+ "Path": "cli/comprehensionarray.md"
125
+ },
126
+ {
127
+ "Title": "objectarraytocsv",
128
+ "Path": "cli/objectarraytocsv.md"
129
+ },
130
+ {
131
+ "Title": "load_comprehension",
132
+ "Path": "cli/load-comprehension.md"
133
+ },
134
+ {
135
+ "Title": "data-clone",
136
+ "Path": "cli/data-clone.md"
137
+ },
138
+ {
139
+ "Title": "serve",
140
+ "Path": "cli/serve.md"
141
+ }
142
+ ]
143
+ },
144
+ {
145
+ "Title": "REST API Reference",
146
+ "Children": [
147
+ {
148
+ "Title": "REST Overview",
149
+ "Path": "rest/overview.md"
150
+ },
151
+ {
152
+ "Title": "Status",
153
+ "Path": "rest/status.md"
154
+ },
155
+ {
156
+ "Title": "CSV Operations",
157
+ "Path": "rest/csv.md"
158
+ },
159
+ {
160
+ "Title": "TSV Operations",
161
+ "Path": "rest/tsv.md"
162
+ },
163
+ {
164
+ "Title": "JSON Array Operations",
165
+ "Path": "rest/json-array.md"
166
+ },
167
+ {
168
+ "Title": "Comprehension Operations",
169
+ "Path": "rest/comprehension.md"
170
+ },
171
+ {
172
+ "Title": "Entity Generation",
173
+ "Path": "rest/entity-generation.md"
174
+ },
175
+ {
176
+ "Title": "Comprehension Push",
177
+ "Path": "rest/comprehension-push.md"
178
+ }
179
+ ]
180
+ },
181
+ {
182
+ "Title": "API Reference",
183
+ "Children": [
184
+ {
185
+ "Title": "ConnectionManager",
186
+ "Path": "api/connection-manager.md"
187
+ },
188
+ {
189
+ "Title": "CloneRestClient",
190
+ "Path": "api/clone-rest-client.md"
191
+ },
192
+ {
193
+ "Title": "Sync",
194
+ "Path": "api/sync.md"
195
+ },
196
+ {
197
+ "Title": "SyncEntityInitial",
198
+ "Path": "api/sync-entity-initial.md"
199
+ },
200
+ {
201
+ "Title": "SyncEntityOngoing",
202
+ "Path": "api/sync-entity-ongoing.md"
203
+ },
204
+ {
205
+ "Title": "Operation",
206
+ "Path": "api/operation.md"
207
+ },
208
+ {
209
+ "Title": "IntegrationAdapter",
210
+ "Path": "api/integration-adapter.md"
211
+ },
212
+ {
213
+ "Title": "GUIDMap",
214
+ "Path": "api/guid-map.md"
215
+ },
216
+ {
217
+ "Title": "TabularCheck",
218
+ "Path": "api/tabular-check.md"
219
+ },
220
+ {
221
+ "Title": "TabularTransform",
222
+ "Path": "api/tabular-transform.md"
223
+ }
224
+ ]
225
+ },
226
+ {
227
+ "Title": "Examples",
228
+ "Children": [
229
+ {
230
+ "Title": "Examples Walkthrough",
231
+ "Path": "examples-walkthrough.md"
232
+ },
233
+ {
234
+ "Title": "Bookstore Example",
235
+ "Path": "examples/bookstore/BookData.md"
236
+ },
237
+ {
238
+ "Title": "Seattle Multi-Set",
239
+ "Path": "examples/multi_set_integration/multi_set_step_by_step.md"
240
+ }
241
+ ]
242
+ },
243
+ {
244
+ "Title": "Vocabulary",
245
+ "Children": [
246
+ {
247
+ "Title": "Comprehension",
248
+ "Path": "vocabulary/Comprehension.md"
249
+ },
250
+ {
251
+ "Title": "Entity",
252
+ "Path": "vocabulary/Entity.md"
253
+ },
254
+ {
255
+ "Title": "GUID",
256
+ "Path": "vocabulary/GUID.md"
257
+ },
258
+ {
259
+ "Title": "Schema",
260
+ "Path": "vocabulary/Schema.md"
261
+ },
262
+ {
263
+ "Title": "Set",
264
+ "Path": "vocabulary/Set.md"
265
+ },
266
+ {
267
+ "Title": "Source",
268
+ "Path": "vocabulary/Source.md"
269
+ },
270
+ {
271
+ "Title": "Column",
272
+ "Path": "vocabulary/Column.md"
273
+ },
274
+ {
275
+ "Title": "Record",
276
+ "Path": "vocabulary/Record.md"
277
+ },
278
+ {
279
+ "Title": "Format",
280
+ "Path": "vocabulary/Format.md"
281
+ },
282
+ {
283
+ "Title": "Join",
284
+ "Path": "vocabulary/Join.md"
285
+ },
286
+ {
287
+ "Title": "Snapshot",
288
+ "Path": "vocabulary/Snapshot.md"
289
+ },
290
+ {
291
+ "Title": "Version",
292
+ "Path": "vocabulary/Version.md"
293
+ },
294
+ {
295
+ "Title": "Confidence",
296
+ "Path": "vocabulary/Confidence.md"
297
+ }
298
+ ]
299
+ }
300
+ ],
301
+ "DocFiles": [
302
+ ".nojekyll",
303
+ "README.md",
304
+ "_brand.json",
305
+ "_cover.md",
306
+ "_sidebar.md",
307
+ "_topbar.md",
308
+ "_version.json",
309
+ "api/clone-rest-client.md",
310
+ "api/connection-manager.md",
311
+ "api/guid-map.md",
312
+ "api/integration-adapter.md",
313
+ "api/operation.md",
314
+ "api/sync-entity-initial.md",
315
+ "api/sync-entity-ongoing.md",
316
+ "api/sync.md",
317
+ "api/tabular-check.md",
318
+ "api/tabular-transform.md",
319
+ "architecture.md",
320
+ "cli/comprehensionarray.md",
321
+ "cli/comprehensionintersect.md",
322
+ "cli/csvcheck.md",
323
+ "cli/csvtransform.md",
324
+ "cli/data-clone.md",
325
+ "cli/jsonarraytransform.md",
326
+ "cli/load-comprehension.md",
327
+ "cli/objectarraytocsv.md",
328
+ "cli/overview.md",
329
+ "cli/serve.md",
330
+ "cli/tsvtransform.md",
331
+ "cli-reference.md",
332
+ "comprehension-push/configuration.md",
333
+ "comprehensions.md",
334
+ "css/docuserve.css",
335
+ "data-clone/configuration.md",
336
+ "data-clone/connection-manager.md",
337
+ "data-clone/docker.md",
338
+ "data-clone/overview.md",
339
+ "data-clone/sync-modes.md",
340
+ "examples/bookstore/.gitignore",
341
+ "examples/bookstore/BookData.md",
342
+ "examples/bookstore/Generate_Bookstore_Comprehension.sh",
343
+ "examples/bookstore/mapping_books_BookAuthorJoin.json",
344
+ "examples/bookstore/mapping_books_author.json",
345
+ "examples/bookstore/mapping_books_book.json",
346
+ "examples/data/books.csv",
347
+ "examples/data/seattle_neighborhoods/Seattle_Data_Information.md",
348
+ "examples/data/seattle_neighborhoods/housing_characteristics_Neighborhoods.csv",
349
+ "examples/data/seattle_neighborhoods/housing_costs_Neighborhoods.csv",
350
+ "examples/data/seattle_neighborhoods/race_ethnicity_Neighborhoods.csv",
351
+ "examples/multi_set_integration/multi_set_step_by_step.md",
352
+ "examples/multi_set_integration/multi_set_step_by_step_overview_diagram.excalidraw.svg",
353
+ "examples/multi_set_integration/part_1_getting_data.md",
354
+ "examples-walkthrough.md",
355
+ "implementation-reference.md",
356
+ "index.html",
357
+ "integration-adapter.md",
358
+ "mapping-files.md",
359
+ "overview.md",
360
+ "programmatic-api.md",
361
+ "quickstart.md",
362
+ "rest/comprehension-push.md",
363
+ "rest/comprehension.md",
364
+ "rest/csv.md",
365
+ "rest/entity-generation.md",
366
+ "rest/json-array.md",
367
+ "rest/overview.md",
368
+ "rest/status.md",
369
+ "rest/tsv.md",
370
+ "rest-api-reference.md",
371
+ "retold-catalog.json",
372
+ "retold-keyword-index.json",
373
+ "vocabulary/Column.md",
374
+ "vocabulary/Comprehension.md",
375
+ "vocabulary/Confidence.md",
376
+ "vocabulary/Data Capture Date.md",
377
+ "vocabulary/Data Entry Date.md",
378
+ "vocabulary/Entity.md",
379
+ "vocabulary/Format.md",
380
+ "vocabulary/GUID.md",
381
+ "vocabulary/Join.md",
382
+ "vocabulary/Record.md",
383
+ "vocabulary/Schema.md",
384
+ "vocabulary/Set.md",
385
+ "vocabulary/Snapshot.md",
386
+ "vocabulary/Source.md",
387
+ "vocabulary/Version.md"
388
+ ]
389
+ },
390
+ "Groups": []
282
391
  }