-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathSAMPLE_UNIVERSITY.json
112 lines (111 loc) · 2.03 KB
/
SAMPLE_UNIVERSITY.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
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
athabasca:{
name: "Athabasca University",
location:{
city:"Athabasca",
state:"Alberta",
country:"CA"
},
commonCreditWeights: [0,1.5,3,6],
sources:['http://ous.athabascau.ca/policy/registry/undergraduategradingpolicy2002.pdf'],
gradeConversions: {
gpa: gpa,
percentage:commonPercentage4,
letter: commonLetter4
}
}
yorkuniversity: {
name: 'York University',
location: {
city: "Toronto",
state: "Ontario",
country: "Canada"
},
commonCreditWeights: [0, 1, 1.5, 2, 3, 4, 5, 6, 9, 12],
gradeConversions: {
gpa: gpa,
"letter": {
name: "Letter",
example: "B, A+",
type: "letter",
gpaConversion: [{
value: 4,
letters: ['A+']
}, {
value: 3.8,
letters: ['A']
}, {
value: 3.3,
letters: ['B+']
}, {
value: 3,
letters: ['B']
}, {
value: 2.3,
letters: ['C+']
}, {
value: 2,
letters: ['C']
}, {
value: 1.3,
letters: ['D+']
}, {
value: 1,
letters: ['D']
}, {
value: 0.7,
letters: ['E']
}, {
value: 0,
letters: ['F', 'NC']
}]
},
"percentage": {
name: "Percentage",
example: "75%, 67%",
type: "number",
min: 0,
max: 100,
gpaConversion: [{
value: 4,
min: 90,
max: 100
}, {
value: 3.8,
min: 80,
max: 89
}, {
value: 3.3,
min: 75,
max: 79
}, {
value: 3,
min: 70,
max: 74
}, {
value: 2.3,
min: 65,
max: 69
}, {
value: 2,
min: 60,
max: 64
}, {
value: 1.3,
min: 55,
max: 59
}, {
value: 1,
min: 50,
max: 54
}, {
value: 0.7,
min: 40,
max: 49
}, {
value: 0,
min: 0,
max: 39
}]
}
}
}