FHIR Identifier Data Type (R5)

Identifier is a business identifier such as an MRN, NPI or order number. Element table, example JSON and FHIRPath for FHIR R5.

  • FHIR Identifier Data Type (R5) — part of the free FHIR Toolbox library.
  • Runs entirely in your browser: your FHIR data is never uploaded to a server.

Overview

Identifier is a business identifier such as an MRN, NPI or order number. The system namespaces the value, so the pair (system, value) is what makes it unique.

Elements

ElementTypeCardinalityDescription
Identifier.usecode0..1usual | official | temp | secondary | old (If known)
Identifier.typeCodeableConcept0..1Description of identifier
Identifier.systemuri0..1The namespace for the identifier value
Identifier.valuestring0..1The value that is unique
Identifier.periodPeriod0..1Time period when id is/was valid for use
Identifier.assignerReference0..1Organization that issued id (may be just text)

Example JSON (R5)

{
  "use": "official",
  "type": {
    "coding": [
      {
        "system": "http://terminology.hl7.org/CodeSystem/v2-0203",
        "code": "MR"
      }
    ]
  },
  "system": "http://hospital.example.org/mrn",
  "value": "12345"
}

FHIRPath

  • Patient.identifier.where(system='http://hospital.example.org/mrn').value — Value for one system
  • Patient.identifier.system — All identifier systems

FHIR Toolbox is a free, privacy-first collection of HL7 FHIR utilities by Omindra Labs. Every tool performs zero-server processing — your health data never leaves your device.