FHIR Coding Data Type (R5)

Coding is a single code from a code system: system, version, code and display. Element table, example JSON and FHIRPath for FHIR R5.

  • FHIR Coding 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

Coding is a single code from a code system: system, version, code and display. It appears inside CodeableConcept.coding and directly as a few elements such as Encounter.class in R4.

Elements

ElementTypeCardinalityDescription
Coding.systemuri0..1Identity of the terminology system
Coding.versionstring0..1Version of the system - if relevant
Coding.codecode0..1Symbol in syntax defined by the system
Coding.displaystring0..1Representation defined by the system
Coding.userSelectedboolean0..1If this coding was chosen directly by the user

Example JSON (R5)

{
  "system": "http://loinc.org",
  "code": "8480-6",
  "display": "Systolic blood pressure"
}

FHIRPath

  • Observation.code.coding.system — Systems used
  • Observation.code.coding.code — All codes

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.