Skip to content

1.0.0-R4: VRDR-STU1 Compatible

Compare
Choose a tag to compare
@MikeRileyGTRI MikeRileyGTRI released this 03 Nov 16:34
· 19 commits to r4 since this release

v1.0.0-R4

Compatible with: VRDR IG 1.0.0 - STU 1 (http://hl7.org/fhir/us/vrdr/STU1/)

Common

  • Removed UUID generation on resource creation

  • To reuse this UUID generation, refer to this code snippet:

     public static void setUUID(Resource resource) {
     	resource.setId(new IdType(UUID.randomUUID().toString()));
     }
    
  • Added ease of use functions for resources with codeableconcepts small valuesets(15-30 values or less) to set the concept using a simplestring, rather than by creating the codeableconcept structure from the client. This should reduce error in miscoded values.

AutopsyPerformedIndicator

  • Updated codeset to include "NA"
  • Can use basic Strings to set AutposyIndicator, and ResultsAvailableComponent

BirthRecordIdentifier

  • Updated base code system to terminology.hl7.org url definition

CauseOfDeathPathway

  • Updated "orderedby" codesystem to terminology.hl7.org url definition

Certifier

  • Updated "addQualification" method to use new valueset, and removed confusing "title" param. Should be much simplier to set a qualification now

DeathCertificate

  • Updated event coding

DeathCertification

  • Added common string search method for Certifier type when creating the "performer.function" CodeableConcept.

DecedentDispositionMethod

  • Updated codeset for dispositionmethod to use the correct PHIN VS CDC Local Coding System oid

DecedentEducationLevel

  • Added valueset for decedent education level

DecedentMilitaryService

  • Can use basic Strings to set decedentMilitaryService

DecedentPregnancy

  • Updated codeset for prenancystatus to use the correct PHIN VS CDC Local Coding System oid
  • Can use basic Strings to set values

DecedentTransportationRole

  • Added codeset for DecedentTransportationRole

DecedentUsualHistory

  • Fixed missing "value" section to DecedentUsualHistory
  • Updated code for UsualOccupationDuration

ExaminerContacted

  • Can use basic Strings to set ExaminerContacted

FuneralHome

  • Fixed missing system in code definition.

InjuryIncident

  • Added PlaceOfInjuryComponent valueset for ease-of-use. Added support to ICD-10 Place of Occurrence System (urn:oid:2.16.840.1.114222.4.5.320).
  • Fixed incorrect code for workInjuryIndicator component
  • Updated workInjuryIndicatorComponent value to code instead of boolean
  • Added WorkInjuryIndicator valueset for ease-of-use.
  • Updated TransportationRoleComponent -> transportationEventIndicator

MannerOfDeath

  • Provided support for MannerOfDeath valueset

TobaccoUseContributedToDeath

  • Updated codeset for TobbacoUseContirbutedToDeath to use the correct PHIN VS CDC Local Coding System oid. Updated values within valueset.

Please note that as a major update, there are some breaking changes from releases.