-
Notifications
You must be signed in to change notification settings - Fork 0
/
audit.congress.cache.settings.json
39 lines (39 loc) · 1.52 KB
/
audit.congress.cache.settings.json
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
{
"name": "Audit Congress Cache Settings",
"version": ".1",
"description": {
"goal": "Define settings to use for cache tracking purposes.",
"default": "Use these settings for any caches or properties not explicity mentioned.",
"fields": {
"name": "The value to use for the 'source' column.",
"status": "The initializing value for the 'status' column.",
"updateIntervalInHours": "Define how long to wait between cache updates. Set to null",
"updateTimesIn24HrUTC": "Define specific (UTC) times when this cache should be updated every day. Overrides 'updateIntervalInHours' if not null/empty array",
"scriptPath": "If applicable, define the path (relative to ROOTFOLDER) the script which updates the cache",
"scriptRunner": "If applicable, define the command used to run this script"
}
},
"default": {
"status": "",
"updateIntervalInHours": 24,
"updateTimesIn24HrUTC": [],
"scriptPath": null,
"scriptRunner": null
},
"caches": {
"bulk-bill": {
"status": 0,
"updateTimesIn24HrUTC": [8, 16],
"scriptPath": "src/py/bills/bulk-bill-pull.py",
"scriptRunner": "py"
},
"bulk-member": {
"updateIntervalInHours": 48,
"scriptPath": "src/py/members/bulk-member-pull.py",
"scriptRunner": "py"
},
"bulk-congress": {
"updateIntervalInHours": 168
}
}
}