-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplugin_registry.json
More file actions
416 lines (416 loc) · 13.3 KB
/
Copy pathplugin_registry.json
File metadata and controls
416 lines (416 loc) · 13.3 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
{
"plugins": [
{
"id": "binoc-stdlib",
"title": "binoc-stdlib",
"tier": "built-in",
"summary": "Binoc's built-in rule pack. It handles the baseline formats and structural cases most readers encounter first: directories, archives, compressed streams, CSV/TSV, common text formats, JSON/YAML/TOML/INI, generic binary fallback, move/copy detection, and output renderers.",
"repository": "https://github.com/harvard-lil/binoc",
"documentation": "https://github.com/harvard-lil/binoc/tree/main/binoc-stdlib",
"source_path": "binoc-stdlib",
"packages": {
"crate": "binoc-stdlib"
},
"handles": "Directory and archive structure, tabular data, text and structured documents, compressed snapshots, binary fallback, move/copy correspondence, and Markdown output.",
"produces": "Container expansions, tabular and text edits, move/copy and reshape claims, binary fallback diagnostics, and Markdown changelogs.",
"rule_packs": [
{
"name": "binoc-stdlib",
"dispatch": {
"scope": "all"
},
"rules": [
"expand",
"parse",
"pair",
"writer",
"compaction",
"annotator",
"render"
]
}
]
},
{
"id": "binoc-avro",
"title": "binoc-avro",
"tier": "first-party-bundled",
"summary": "Parses Avro snapshots as structured data so changes in records and fields surface as normal Binoc diffs.",
"repository": "https://github.com/harvard-lil/binoc",
"documentation": "https://github.com/harvard-lil/binoc/tree/main/model-plugins/binoc-avro",
"source_path": "model-plugins/binoc-avro",
"packages": {
"crate": "binoc-avro"
},
"handles": "Avro files.",
"produces": "Parsed Avro records and field-level changes.",
"rule_packs": [
{
"name": "binoc-avro.parse.avro",
"dispatch": {
"extensions": [".avro"],
"scope": "files"
},
"rules": [
"parse"
]
}
]
},
{
"id": "binoc-binformats",
"title": "binoc-binformats",
"tier": "first-party-bundled",
"summary": "Parses common binary interchange formats into JSON-like values so content changes become visible as structured diffs.",
"repository": "https://github.com/harvard-lil/binoc",
"documentation": "https://github.com/harvard-lil/binoc/tree/main/model-plugins/binoc-binformats",
"source_path": "model-plugins/binoc-binformats",
"packages": {
"crate": "binoc-binformats"
},
"handles": "CBOR, BSON, Ion, MessagePack, and plist snapshots.",
"produces": "Parsed structured values and value-level changes.",
"rule_packs": [
{
"name": "binoc-binformats.parse.cbor",
"dispatch": {
"extensions": [".cbor"],
"scope": "files"
},
"rules": [
"parse"
]
},
{
"name": "binoc-binformats.parse.msgpack",
"dispatch": {
"extensions": [".msgpack", ".mp"],
"scope": "files"
},
"rules": [
"parse"
]
},
{
"name": "binoc-binformats.parse.bson",
"dispatch": {
"extensions": [".bson"],
"scope": "files"
},
"rules": [
"parse"
]
},
{
"name": "binoc-binformats.parse.plist",
"dispatch": {
"extensions": [".plist"],
"scope": "files"
},
"rules": [
"parse"
]
},
{
"name": "binoc-binformats.parse.ion",
"dispatch": {
"extensions": [".ion"],
"scope": "files"
},
"rules": [
"parse"
]
}
]
},
{
"id": "binoc-dbf",
"title": "binoc-dbf",
"tier": "first-party-bundled",
"summary": "Parses DBF snapshots so table and row changes in legacy dBase-style datasets show up as structured tabular diffs.",
"repository": "https://github.com/harvard-lil/binoc",
"documentation": "https://github.com/harvard-lil/binoc/tree/main/model-plugins/binoc-dbf",
"source_path": "model-plugins/binoc-dbf",
"packages": {
"crate": "binoc-dbf"
},
"handles": "DBF files.",
"produces": "Tabular records and table/row edits.",
"rule_packs": [
{
"name": "binoc-dbf.parse.dbf",
"dispatch": {
"extensions": [".dbf"],
"scope": "files"
},
"rules": [
"parse"
]
}
]
},
{
"id": "binoc-excel",
"title": "binoc-excel",
"tier": "first-party-bundled",
"summary": "Parses Excel workbooks so sheet, row, column, and cell changes can be compared as Binoc tabular changes.",
"repository": "https://github.com/harvard-lil/binoc",
"documentation": "https://github.com/harvard-lil/binoc/tree/main/model-plugins/binoc-excel",
"source_path": "model-plugins/binoc-excel",
"packages": {
"crate": "binoc-excel"
},
"handles": "Excel workbook snapshots.",
"produces": "Workbook structure and sheet/table content changes.",
"rule_packs": [
{
"name": "binoc-excel.parse",
"dispatch": {
"extensions": [".xlsx", ".xls", ".xlsm", ".xlsb", ".ods"],
"scope": "files"
},
"rules": [
"parse"
]
}
]
},
{
"id": "binoc-html",
"title": "binoc-html",
"tier": "first-party-add-on",
"summary": "Renders Binoc changesets as self-contained HTML changelogs.",
"repository": "https://github.com/harvard-lil/binoc",
"documentation": "https://github.com/harvard-lil/binoc/tree/main/model-plugins/binoc-html",
"source_path": "model-plugins/binoc-html",
"packages": {
"pypi": "binoc-html"
},
"handles": "Completed Binoc changesets.",
"produces": "Self-contained HTML changelogs.",
"rule_packs": [
{
"name": "binoc.html",
"dispatch": {
"scope": "changesets"
},
"rules": [
"render"
]
}
]
},
{
"id": "binoc-parquet",
"title": "binoc-parquet",
"tier": "first-party-bundled",
"summary": "Parses Parquet and Arrow IPC snapshots so column, row, and cell changes appear as ordinary tabular diffs.",
"repository": "https://github.com/harvard-lil/binoc",
"documentation": "https://github.com/harvard-lil/binoc/tree/main/model-plugins/binoc-parquet",
"source_path": "model-plugins/binoc-parquet",
"packages": {
"crate": "binoc-parquet"
},
"handles": "Parquet, Arrow IPC, and Feather files.",
"produces": "Tabular records and tabular diffs.",
"rule_packs": [
{
"name": "binoc-parquet.parse.parquet",
"dispatch": {
"extensions": [".parquet"],
"scope": "files"
},
"rules": [
"parse"
]
},
{
"name": "binoc-parquet.parse.arrow-ipc",
"dispatch": {
"extensions": [".arrow", ".feather", ".ipc"],
"scope": "files"
},
"rules": [
"parse"
]
}
]
},
{
"id": "binoc-row-reorder",
"title": "binoc-row-reorder",
"tier": "first-party-bundled",
"summary": "Detects row reordering in tabular data so shuffles are represented as ordering changes rather than as noisy row removals and additions.",
"repository": "https://github.com/harvard-lil/binoc",
"documentation": "https://github.com/harvard-lil/binoc/tree/main/model-plugins/binoc-row-reorder",
"source_path": "model-plugins/binoc-row-reorder",
"packages": {
"crate": "binoc-row-reorder"
},
"handles": "Paired `binoc.tabular.v1` artifacts with the same rows in a different order.",
"produces": "A `tabular.reorder_rows` edit when row multisets match.",
"rule_packs": [
{
"name": "binoc.row_reorder_writer",
"dispatch": {
"artifact_formats": ["binoc.tabular.v1"],
"scope": "artifacts"
},
"rules": [
"writer"
]
}
]
},
{
"id": "binoc-shapefile",
"title": "binoc-shapefile",
"tier": "first-party-bundled",
"summary": "Handles shapefile bundles and their sidecar files so feature, geometry, and attribute changes stay aligned across the dataset package.",
"repository": "https://github.com/harvard-lil/binoc",
"documentation": "https://github.com/harvard-lil/binoc/tree/main/model-plugins/binoc-shapefile",
"source_path": "model-plugins/binoc-shapefile",
"packages": {
"crate": "binoc-shapefile"
},
"handles": "Shapefile bundles and related sidecars.",
"produces": "Feature-level and geometry-level diffs.",
"rule_packs": [
{
"name": "binoc-shapefile.fuse",
"dispatch": {
"extensions": [".shp"],
"member_extensions": [".shx", ".dbf", ".prj", ".cpg"],
"scope": "file-groups"
},
"rules": [
"group-parse"
]
},
{
"name": "binoc-shapefile.parse.shp",
"dispatch": {
"extensions": [".shp"],
"scope": "files"
},
"rules": [
"parse"
]
}
]
},
{
"id": "binoc-sqlite",
"title": "binoc-sqlite",
"tier": "first-party-opt-in",
"summary": "Compares SQLite databases: schema, columns, keys, and row counts. Useful when a dataset ships as `.db` / `.sqlite` snapshots instead of flat files.",
"repository": "https://github.com/harvard-lil/binoc",
"documentation": "https://github.com/harvard-lil/binoc/tree/main/model-plugins/binoc-sqlite",
"source_path": "model-plugins/binoc-sqlite",
"packages": {
"crate": "binoc-sqlite"
},
"handles": "SQLite database files.",
"produces": "Table/column layout changes, type changes, key changes, and row-count diffs.",
"rule_packs": [
{
"name": "binoc-sqlite.parse.sqlite",
"dispatch": {
"extensions": [".sqlite", ".sqlite3", ".db"],
"scope": "files"
},
"rules": [
"parse"
]
}
]
},
{
"id": "binoc-stat-binary",
"title": "binoc-stat-binary",
"tier": "first-party-bundled",
"summary": "Reads Stata, SAS, and SAS transport files as standard Binoc tabular data so normal column, row, and cell diffing applies.",
"repository": "https://github.com/harvard-lil/binoc",
"documentation": "https://github.com/harvard-lil/binoc/tree/main/model-plugins/binoc-stat-binary",
"source_path": "model-plugins/binoc-stat-binary",
"packages": {
"crate": "binoc-stat-binary"
},
"handles": "Stata `.dta`, SAS `.sas7bdat`, and SAS transport `.xpt` files.",
"produces": "Tabular records and tabular diffs for statistical binary formats.",
"rule_packs": [
{
"name": "binoc-stat-binary.stata.parse",
"dispatch": {
"extensions": [".dta"],
"scope": "files"
},
"rules": [
"parse"
]
},
{
"name": "binoc-stat-binary.sas7bdat.parse",
"dispatch": {
"extensions": [".sas7bdat"],
"scope": "files"
},
"rules": [
"parse"
]
},
{
"name": "binoc-stat-binary.xpt.parse",
"dispatch": {
"extensions": [".xpt"],
"scope": "files"
},
"rules": [
"parse"
]
}
]
},
{
"id": "binoc-xml",
"title": "binoc-xml",
"tier": "first-party-bundled",
"summary": "Parses XML snapshots into structured data so hierarchical document and metadata changes can be tracked as Binoc diffs.",
"repository": "https://github.com/harvard-lil/binoc",
"documentation": "https://github.com/harvard-lil/binoc/tree/main/model-plugins/binoc-xml",
"source_path": "model-plugins/binoc-xml",
"packages": {
"crate": "binoc-xml"
},
"handles": "XML files and XML-based metadata documents.",
"produces": "Structured XML artifacts and element/attribute-level changes.",
"rule_packs": [
{
"name": "binoc-xml.parse.xml",
"dispatch": {
"extensions": [".xml", ".rdf", ".kml", ".gml", ".atom", ".rss"],
"scope": "files"
},
"rules": [
"parse"
]
},
{
"name": "binoc-xml.parse.xml_media",
"dispatch": {
"media_types": [
"text/xml",
"application/xml",
"application/rdf+xml",
"application/atom+xml"
],
"scope": "files"
},
"rules": [
"parse"
]
}
]
}
]
}