-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.json.example
64 lines (64 loc) · 1.05 KB
/
config.json.example
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
{
"locations": [
{
"name": "Anderson Field",
"abbr": "AF"
},
{
"name": "Darrin Communications Center",
"abbr": "DCC"
},
{
"name": "East Campus Athletic Village",
"abbr": "ECAV"
},
{
"name": "EMPAC",
"abbr": "EMPAC"
},
{
"name": "Houston Field House",
"abbr": "HFH"
},
{
"name": "'86 Field",
"abbr": "86F"
},
{
"name": "'87 Gymnasium'",
"abbr": "87G"
}
],
"comment": "time_divisions is in months where January = 0",
"month_divisions": [
{
"abbr": "F",
"start": 9,
"end": 1
},
{
"abbr": "S",
"start": 2,
"end": 8
}
],
"comment2": "mush_months is a timeframe (in months) where the program will prompt the user to specify which month division they want",
"mush_months": [
{
"start": 1,
"end": 2,
"options": [
"F",
"S"
]
},
{
"start": 8,
"end": 9,
"options": [
"S",
"F"
]
}
]
}