14 Terminology

HDR FHIR supports a terminology feature to use and manage code.

The general pattern for representing coded values in resources uses the following four elements:

  • system - A URI that identifies the system
  • version - A string value representing a version of the original code system
  • code - A string value that identifies a concept as defined by the code system
  • display - A description of the concept as defined by the code system

Example:

{ 
  "system" : "http://loinc.org",
  "version" : "2.62",
  "code" : "55423-8",
  "display" : "Number of steps in unspecified time Pedometer"
}