Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ACL-4279] Update acronym definitions #20

Merged
merged 8 commits into from
Nov 21, 2023
38 changes: 23 additions & 15 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,23 +1,24 @@
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',
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: 'Individual Licence Holder',
PPLH: 'Project Licence Holder',
PELH: 'Establishment licence holder',
PILH: 'Personal licence holder',
PPLH: 'Project licence holder',

// Licence types
PIL: 'Individual Licence',
PPL: 'Project Licence',
PEL: 'Establishment Licence',
PIL: 'Personal licence',
'PIL-E': 'Personal licence for training and higher education',
PPL: 'Project licence',
PEL: 'Establishment licence',

// holding codes
LA: 'Large animals',
Expand All @@ -34,5 +35,12 @@ module.exports = {
LTH: 'Long term holding',
NOH: 'Not for overnight holding',
NSEP: 'Non-sterile experimental procedures',
SEP: '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',
}
};
20 changes: 10 additions & 10 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ukhomeoffice/asl-dictionary",
"version": "2.0.0",
"version": "2.1.0",
"description": "Expansions of acronyms commonly used in ASL projects",
"main": "index.js",
"scripts": {
Expand Down