-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCompiler.json5
40 lines (40 loc) · 1.12 KB
/
Compiler.json5
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
{
// Report number, LEXXXX, string
LE: 'LE0554',
// Visit date, Month DD, YYYY, string
VDATE: 'September 11, 2023',
// Plant location, city, state, zip, string
LOC: 'Bethlehem, PA 18015',
// SIC code, string
// Look up from https://www.osha.gov/data/sic-manual
SIC: '1234',
// NAICS code, string
// Look up from https://www.census.gov/naics/
NAICS: '123456',
// Annual sales, $, integer
SALE: 1000000,
// Number of employees, integer
EMPL: 1000,
// Area, sqft, integer
AREA: 100000,
// Principal product, string
PROD: 'student',
// Annual production, float
ANPR: 2000,
// Production units, string
PRUN: 'units',
// Production operating hours, string
PROH: '10.5 hours per day, 7 days per week, 52 weeks per year',
// Office operating hours, string
OFOH: '8 hours per day, 5 days per week, 52 weeks per year',
// Lead Assessor, string
ASSE: 'Dr. Alparslan Oztekin',
// Lead Student, string
LEAD: 'Justin Caspar',
// Safety Student, string
SAFE: 'Guanyang Xue',
// Participants, list of strings
PARTlist: ['Muhannad Altimemy', 'Tong Su'],
// Contributors, list of strings
CONTlist: ['Muhannad Altimemy', 'Tong Su', 'Justin Caspar', 'Guanyang Xue'],
}