Files
portfolio/src/data/patient.ts
T
admin 661dba4b75 audit: verify patient.ts against reference documents
- Address corrected from 'Norwich, NR1' to 'Norwich, UK' to match CV
- Created References/unverified-content.md to track audit findings
- Flagged retained-but-unverifiable personal data (DOB, GPhC number, LinkedIn slug)
- All other fields verified against CV_v4.md
2026-02-17 03:11:47 +00:00

19 lines
524 B
TypeScript

import type { Patient } from '@/types/pmr'
export const patient: Patient = {
name: 'CHARLWOOD, Andrew (Mr)',
displayName: 'Andrew Charlwood',
dob: '14/02/1993',
nhsNumber: '221 181 0',
nhsNumberTooltip: 'GPhC Registration Number',
address: 'Norwich, UK',
phone: '07795553088',
email: 'andy@charlwood.xyz',
linkedin: 'linkedin.com/in/andycharlwood',
status: 'Active',
badge: 'Open to opportunities',
qualification: 'MPharm (Hons) 2:1',
university: 'UEA, 2015',
registrationYear: 'August 2016',
}