ClinicalIdentifier

A specialized identifier for clinical and healthcare contexts that extends Identifier with healthcare-specific system classifications. Supports national health IDs (INS, NPI, NHS Number), provider registries (RPPS, ADELI), institutional identifiers (MRN, IPP), and facility registries (FINESS).

Overview

ClinicalIdentifier provides healthcare-specific identification capabilities beyond the base Identifier. It adds the clinicalSystem field to specify which healthcare identification scheme issued the identifier, and an assigner to track the responsible organization. This enables accurate patient matching, provider verification, and secure health information exchange across systems and borders.

Key Concepts

Identifier Categories

Clinical identifiers serve different purposes:

CategoryPurposeExamples
Patient IDsUniquely identify patientsINS (France), NHS Number (UK), IHI (Australia)
Provider IDsIdentify healthcare professionalsRPPS, ADELI (France), NPI (US)
Facility IDsIdentify healthcare facilitiesFINESS (France)
Record IDsLocal patient recordsMRN, IPP

National Patient Identifiers

France - INS (Identité Nationale de Santé)

  • 13-digit national health identifier
  • Issued by CNAM (health insurance)
  • Used across all French healthcare systems

United Kingdom - NHS Number

  • 10-digit identifier (formatted as XXX XXX XXXX)
  • Assigned at birth or registration with NHS
  • Essential for UK healthcare access

United States - No national patient ID

  • Uses MRN (Medical Record Number) per institution
  • Patient matching relies on demographics

Canada - Provincial IDs

  • OHIP (Ontario Health Insurance Plan)
  • Each province has its own system

Australia - IHI (Individual Healthcare Identifier)

  • 16-digit national identifier
  • Part of My Health Record system

Provider Identifiers

France

  • RPPS - Répertoire Partagé des Professionnels de Santé (shared provider registry)
  • ADELI - Legacy provider registration system

United States

  • NPI - National Provider Identifier (10-digit, required for billing)

Institutional Identifiers

  • MRN - Medical Record Number (facility-specific patient ID)
  • IPP - Identifiant Permanent du Patient (permanent patient ID within institution)
  • NDA - Numéro de Dossier Administratif (administrative file number)

Facility Identifiers

  • FINESS - Fichier National des Établissements Sanitaires et Sociaux (French facility registry)

Assigner Organization

The assigner field tracks which organization issued the identifier:

  • National agencies (CNAM, NHS England, CMS)
  • Regional health authorities
  • Individual healthcare facilities
  • Insurance organizations

Use Cases

Patient Matching

When matching patients across systems:

  1. Query by national identifier (INS, NHS Number) first
  2. Fall back to institutional ID (MRN) within same facility
  3. Use demographic matching when no shared identifier
  4. Document source system and identifier type

Provider Verification

When verifying healthcare professionals:

  1. Look up NPI (US) or RPPS (France) in national registry
  2. Verify credentials and active status
  3. Confirm specialty and practice location
  4. Cache verification results with timestamp

Health Information Exchange

When exchanging clinical data:

  1. Include patient's national identifier if available
  2. Map institutional IDs between systems
  3. Validate identifiers against authoritative sources
  4. Handle identifier conflicts with matching algorithms

Insurance Claims

When submitting claims:

  1. Include patient's insurance identifier
  2. Use provider NPI for billing provider
  3. Include facility FINESS/NPI as applicable
  4. Validate format requirements by payer

Cross-Border Care

For EU patients under EHIC:

  1. Use national identifier from home country
  2. Map to local temporary identifier
  3. Exchange data using EU standards
  4. Track original and local identifiers

Related Entities

EntityRelationshipDescription
IdentifierExtendsBase identifier with system, value, type
OrganizationReferencesOrganization that assigned the identifier
PatientUsed byPatient records using clinical identifiers
PractitionerUsed byProvider records using clinical identifiers
FacilityUsed byFacility records using clinical identifiers

Enums

clinicalSystem

ValueFull NameCountryType
INSIdentité Nationale de SantéFrancePatient
IPPIdentifiant Permanent du PatientFrancePatient (institutional)
NDANuméro de Dossier AdministratifFranceRecord
RPPSRépertoire Partagé des Professionnels de SantéFranceProvider
ADELIAutomatisation DEs LIstesFranceProvider (legacy)
FINESSFichier National des Établissements Sanitaires et SociauxFranceFacility
NPINational Provider IdentifierUnited StatesProvider
MRNMedical Record NumberInternationalPatient (institutional)
NHSNHS NumberUnited KingdomPatient
OHIPOntario Health Insurance PlanCanadaPatient
IHIIndividual Healthcare IdentifierAustraliaPatient
customCustom identifier systemAnyAny
Extends: Identifier
18 properties
Schema

Properties

Includes inherited properties from Identifier

PropertyTypeModeDescriptionRequiredSource
systemstring
stored

Identification system or authority (Organizations: 'SIREN', 'SIRET', 'VAT', 'EIN', 'DUNS', 'LEI' | Persons: 'SSN', 'NIN', 'PASSPORT', 'DRIVERS_LICENSE')

Example: "SIREN"

Required
Identifier
valuestring
stored

The actual identifier value

Example: "123456789"

Required
Identifier
typestring
enum

Type or category of identifier

Values: tax, registration, legal, financial, national-id, travel-document, license

Example: "registration"

Optional
Identifier
countryCountry
stored

Country where this identifier is valid (reference to Country entity)

Optional
Identifier
issuerstring
stored

Organization or authority that issued the identifier

Example: "INSEE France"

Optional
Identifier
labelstring
stored

Human-readable label for this identifier

Example: "French Business Registration Number"

Optional
Identifier
periodPeriod
stored

Period during which this identifier is valid

Optional
Identifier
usestring
enum

Purpose of this identifier

Values: official, temp, secondary

Example: "official"

Optional
Identifier
clinicalSystemstring
enum

The healthcare identification system or namespace that issued this identifier. Specifies the authoritative source and format standards for the identifier value.

Values: INS, IPP, NDA, RPPS, ADELI, FINESS, NPI, MRN, NHS, OHIP, IHI, custom

Example: "INS"

Optional
ClinicalIdentifier
assignerOrganization
stored

Reference to the organization that assigned or issued this identifier. This tracks the authoritative entity responsible for creating and maintaining the identifier within its system.

Optional
ClinicalIdentifier

Examples

Example 1

{
  "@type": "ClinicalIdentifier",
  "clinicalSystem": "INS",
  "value": "1234567890123",
  "type": "patient",
  "use": "official",
  "country": {
    "@type": "Country",
    "code": "FR",
    "name": "France"
  },
  "issuer": "Agence des Systèmes d'Information Partagés de Santé (ASIP)",
  "label": "Identité Nationale de Santé",
  "assigner": {
    "@type": "Organization",
    "name": "CNAM - Caisse Nationale d'Assurance Maladie"
  }
}

Example 2

{
  "@type": "ClinicalIdentifier",
  "clinicalSystem": "RPPS",
  "value": "10001234567",
  "type": "provider",
  "use": "official",
  "country": {
    "@type": "Country",
    "code": "FR",
    "name": "France"
  },
  "issuer": "Agence Nationale de Santé",
  "label": "Répertoire Partagé des Professionnels de Santé"
}

Example 3

{
  "@type": "ClinicalIdentifier",
  "clinicalSystem": "FINESS",
  "value": "750123456",
  "type": "facility",
  "use": "official",
  "country": {
    "@type": "Country",
    "code": "FR",
    "name": "France"
  },
  "issuer": "Agence Régionale de Santé",
  "label": "Fichier National des Établissements Sanitaires et Sociaux"
}

Example 4

{
  "@type": "ClinicalIdentifier",
  "clinicalSystem": "NPI",
  "value": "1234567893",
  "type": "provider",
  "use": "official",
  "country": {
    "@type": "Country",
    "code": "US",
    "name": "United States of America"
  },
  "issuer": "Centers for Medicare & Medicaid Services",
  "label": "National Provider Identifier"
}

Example 5

{
  "@type": "ClinicalIdentifier",
  "clinicalSystem": "MRN",
  "value": "MRN-2024-789012",
  "type": "medical-record",
  "use": "usual",
  "country": {
    "@type": "Country",
    "code": "US",
    "name": "United States of America"
  },
  "label": "Medical Record Number",
  "assigner": {
    "@type": "Organization",
    "name": "Mayo Clinic Rochester"
  }
}

Example 6

{
  "@type": "ClinicalIdentifier",
  "clinicalSystem": "NHS",
  "value": "485 777 3456",
  "type": "patient",
  "use": "official",
  "country": {
    "@type": "Country",
    "code": "GB",
    "name": "United Kingdom"
  },
  "issuer": "NHS England",
  "label": "NHS Number"
}