-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.js
46 lines (41 loc) · 1.21 KB
/
index.js
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
module.exports = {
// roles
ELH: 'Establishment licence holder',
HOLC: 'Home Office liaison contact',
NACWO: 'Named animal care and welfare officer',
NIO: 'Named information officer',
NVS: 'Named veterinary surgeon',
SQP: 'Suitably qualified person',
NTCO: 'Named training and competency officer',
NPRC: 'Named person responsible for compliance',
// Licence holders
PELH: 'Establishment licence holder',
PILH: 'Personal licence holder',
PPLH: 'Project licence holder',
// Licence types
PIL: 'Personal licence',
'PIL-E': 'Personal licence for training and higher education',
PPL: 'Project licence',
PEL: 'Establishment licence',
// holding codes
LA: 'Large animals',
SA: 'Small animals',
AQ: 'Aquatic species',
AV: 'Birds',
DOG: 'Dogs',
CAT: 'Cats',
NHP: 'Non-human primates',
EQU: 'Equidae',
// suitability codes
STH: 'Short term holding',
LTH: 'Long term holding',
NOH: 'Not for overnight holding',
NSEP: 'Non-sterile experimental procedures',
SEP: 'Sterile experimental procedures',
plural: {
PIL: 'Personal licences',
'PIL-E': 'Personal licences for higher education or training',
PPL: 'Project licences',
PEL: 'Establishment licences',
}
};