-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathelectionTypes.json
More file actions
172 lines (172 loc) · 5.72 KB
/
electionTypes.json
File metadata and controls
172 lines (172 loc) · 5.72 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
{
"electionTypes": [
{
"category": "Everyone",
"subcategory": [
{
"name": "All may vote",
"type": "everyone",
"matchName": "Everyone",
"matchValue": "Everyone"
}
],
"unqualified": ""
},
{
"category": "Class",
"subcategory": [
{
"name": "Freshmen",
"type": "freshmen",
"matchName": "Class",
"matchValue": "Freshman"
},
{
"name": "Sophomore",
"type": "sophomore",
"matchName": "Class",
"matchValue": "Sophomore"
},
{
"name": "Junior",
"type": "junior",
"matchName": "Class",
"matchValue": "Junior"
},
{
"name": "Senior",
"type": "senior",
"matchName": "Class",
"matchValue": "Senior"
},
{
"name": "Graduate",
"type": "graduate",
"matchName": "Class",
"matchValue": "Graduate"
}
],
"unqualified": "Your credit hour class designation is different."
},
{
"category": "Student Type",
"subcategory": [
{
"name": "Transfer",
"type": "transfer",
"matchName": "Transfer",
"matchValue": true
}
],
"unqualified": "You did not transfer to this university."
},
{
"category": "College",
"subcategory": [
{
"name": "University College",
"type": "university-college",
"matchName": "College",
"matchValue": "GC"
},
{
"name": "College of Arts and Sciences",
"type": "college-arts-science",
"matchName": "College",
"matchValue": "AS"
},
{
"name": "College of Business",
"type": "college-business",
"matchName": "College",
"matchValue": "CB"
},
{
"name": "College of Education",
"type": "college-education",
"matchName": "College",
"matchValue": "ED"
},
{
"name": "College of Fine and Applied Arts",
"type": "college-fine-applied-arts",
"matchName": "College",
"matchValue": "FA"
},
{
"name": "College of Health Sciences",
"type": "college-health-sciences",
"matchName": "College",
"matchValue": "HS"
},
{
"name": "Hayes School of Music",
"type": "music-school",
"matchName": "College",
"matchValue": "MU"
}
],
"unqualified": "Your major is in different college."
},
{
"category": "Club Affiliation",
"subcategory": [
{
"name": "Honors/Academics",
"type": "honors",
"matchName": "Club Affiliation",
"matchValue": "Honors / Academics"
},
{
"name": "Multicultural Affairs",
"type": "multicultural",
"matchName": "Club Affiliation",
"matchValue": "Multicultural Affairs"
},
{
"name": "Sports",
"type": "sports",
"matchName": "Club Affiliation",
"matchValue": "Club Sports"
},
{
"name": "Service Initiatives",
"type": "service",
"matchName": "Club Affiliation",
"matchValue": "Service"
},
{
"name": "Special Interest Groups",
"type": "special-interest",
"matchName": "Club Affiliation",
"matchValue": ["Special Interest", "Religious"]
}
],
"unqualified": "You are not affiliated with the required clubs."
},
{
"category": "Greek Life",
"subcategory": [
{
"name": "Interfraternity Council",
"type": "ic",
"matchName": "Greek Life",
"matchValue": "IC"
},
{
"name": "Pan-hellenic Council",
"type": "phc",
"matchName": "Greek Life",
"matchValue": "PHC"
},
{
"name": "National Pan-hellenic Council",
"type": "nphc",
"matchName": "Greek Life",
"matchValue": "NPHC"
}
],
"unqualified": "You are not a member of this greek council."
}
]
}