-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlookups.ts
More file actions
36 lines (33 loc) · 760 Bytes
/
lookups.ts
File metadata and controls
36 lines (33 loc) · 760 Bytes
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
export const appTypes = Object.freeze({
AB: 'Allegation of Breach',
BH: 'Bail Hearing',
EP: 'Early Resolution Meeting',
ER: 'Early Resolution Meeting',
FA: 'First Appearance',
FE: 'Further Evidence',
JU: 'Judgement',
MO: 'Motion',
PT: 'Pre Trial',
SD: 'Set a Date',
ST: 'To Be Spoken To',
TP: 'To Take a Plea',
TR: 'Trial'
})
export const actions = Object.freeze({
ADJ: 'Adjourned',
MOG: 'Motion Granted',
OIE: 'On Docket In Error',
S: 'Sentenced',
SIA: 'Sentenced in Absentia',
WD: 'Withdrawn',
WDA: 'Withdrawn Direct Accountability',
WPB: 'Withdrawn Peace Bond'
})
export const pleas = Object.freeze({
G: 'Guilty',
NG: 'Not Guilty'
})
export const finds = Object.freeze({
G: 'Guilty',
NG: 'Not Guilty'
})