-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy paththird_party_plugins.json
More file actions
89 lines (89 loc) · 2.8 KB
/
Copy paththird_party_plugins.json
File metadata and controls
89 lines (89 loc) · 2.8 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
{
"plugins": [
{
"id": "binoc-sqlite",
"title": "binoc-sqlite",
"summary": "Compares two SQLite database files: table/column layout, column types, primary keys, and per-table 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": {
"pypi": "binoc-sqlite",
"crate": "binoc-sqlite"
},
"entry_point": {
"group": "binoc.plugins",
"name": "binoc-sqlite",
"target": "binoc_sqlite",
"loader": "native_rust_module"
},
"rule_packs": [
{
"name": "binoc-sqlite.sqlite",
"dispatch": {
"extensions": [".sqlite", ".sqlite3", ".db"],
"media_types": [
"application/vnd.sqlite3",
"application/x-sqlite3"
],
"scope": "files"
},
"rules": ["parse", "writer", "materializer"],
"item_types": ["tabular_collection", "tabular"]
}
],
"renderers": []
},
{
"id": "binoc-stat-binary",
"title": "binoc-stat-binary",
"summary": "Reads Stata `.dta`, SAS `.sas7bdat`, and SAS transport `.xpt` 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": {
"pypi": "binoc-stat-binary",
"crate": "binoc-stat-binary"
},
"entry_point": {
"group": "binoc.plugins",
"name": "binoc-stat-binary",
"target": "binoc_stat_binary",
"loader": "native_rust_module"
},
"rule_packs": [
{
"name": "binoc-stat-binary.stata",
"dispatch": {
"extensions": [".dta"],
"media_types": [],
"scope": "files"
},
"rules": ["parse"],
"item_types": ["tabular"]
},
{
"name": "binoc-stat-binary.sas7bdat",
"dispatch": {
"extensions": [".sas7bdat"],
"media_types": [],
"scope": "files"
},
"rules": ["parse"],
"item_types": ["tabular"]
},
{
"name": "binoc-stat-binary.xpt",
"dispatch": {
"extensions": [".xpt"],
"media_types": [],
"scope": "files"
},
"rules": ["parse"],
"item_types": ["tabular"]
}
],
"renderers": []
}
]
}