VRDR .NET
Loading...
Searching...
No Matches
DeathRecord

Documentation of Public Methods of DeathRecord and IJEMortality

Creating this File

Creation of this file is determined by the DocumentationFile tag in the .csproj file, and the package reference to Vsxmd. Normally, have the .xml file generated and the Vsxmd package reference uncommented. For releases, have the md file generated, and the vsxmd package reference commented. Run 'dotnet build'. Some editing is required.

Contents

DeathRecord <tt>type</tt>

Namespace

VRDR

Summary

Class DeathRecord models a FHIR Vital Records Death Reporting (VRDR) Death Record. This class was designed to help consume and produce death records that follow the HL7 FHIR Vital Records Death Reporting Implementation Guide, as described at: http://hl7.org/fhir/us/vrdr and https://github.com/hl7/vrdr.

#ctor() <tt>constructor</tt>

Summary

Default constructor that creates a new, empty DeathRecord.

Parameters

This constructor has no parameters.

#ctor(record,permissive) <tt>constructor</tt>

Summary

Constructor that takes a string that represents a FHIR Death Record in either XML or JSON format.

Parameters
Name Type Description
record System.String represents a FHIR Death Record in either XML or JSON format.
permissive System.Boolean if the parser should be permissive when parsing the given string

Exceptions
Name Description
System.ArgumentException Record is neither valid XML nor JSON.

#ctor(bundle) <tt>constructor</tt>

Summary

Constructor that takes a FHIR Bundle that represents a FHIR Death Record.

Parameters
Name Type Description
bundle Hl7.Fhir.Model.Bundle represents a FHIR Bundle.

Exceptions
Name Description
System.ArgumentException Record is invalid.

AcmeSystemReject <tt>property</tt>

Summary

Acme System Reject.

Example

// Setter:

Dictionary<string, string> reject = new Dictionary<string, string>();

format.Add("code", ValueSets.FilingFormat.electronic);

format.Add("system", CodeSystems.SystemReject);

format.Add("display", "3");

ExampleDeathRecord.AcmeSystemReject = reject;

// Getter:

Console.WriteLine($"Acme System Reject Code: {ExampleDeathRecord.AcmeSystemReject}");

AcmeSystemRejectHelper <tt>property</tt>

Summary

Acme System Reject.

Example

// Setter:

ExampleDeathRecord.AcmeSystemReject = "3";

// Getter:

Console.WriteLine($"Acme System Reject Code: {ExampleDeathRecord.AcmeSystemReject}");

ActivityAtDeath <tt>property</tt>

Summary

Activity at Time of Death.

Example

// Setter:

Dictionary<string, string> activity = new Dictionary<string, string>();

elevel.Add("code", "0");

elevel.Add("system", CodeSystems.ActivityAtTimeOfDeath);

elevel.Add("display", "While engaged in sports activity");

ExampleDeathRecord.ActivityAtDeath = activity;

// Getter:

Console.WriteLine($"Education Level: {ExampleDeathRecord.EducationLevel['display']}");

ActivityAtDeathHelper <tt>property</tt>

Summary

Decedent's Activity At Time of Death Helper

Example

// Setter:

ExampleDeathRecord.ActivityAtDeath = 0;

// Getter:

Console.WriteLine($"Decedent's Activity at Time of Death: {ExampleDeathRecord.ActivityAtDeath}");

AgeAtDeath <tt>property</tt>

Summary

Age At Death.

Example

// Setter:

Dictionary<string, string> age = new Dictionary<string, string>();

age.Add("value", "100");

age.Add("code", "a"); // USE: http://hl7.org/fhir/us/vrdr/ValueSet/vrdr-units-of-age-vs

ExampleDeathRecord.AgeAtDeath = age;

// Getter:

Console.WriteLine($"Age At Death: {ExampleDeathRecord.AgeAtDeath['value']} years");

AgeAtDeathEditFlag <tt>property</tt>

Summary

Decedent's Age At Death Edit Flag.

Example

// Setter:

Dictionary<string, string> ageEdit = new Dictionary<string, string>();

ageEdit.Add("code", "0");

ageEdit.Add("system", CodeSystems.BypassEditFlag);

ageEdit.Add("display", "Edit Passed");

ExampleDeathRecord.AgeAtDeathEditFlag = ageEdit;

// Getter:

Console.WriteLine($"Age At Death Edit Flag: {ExampleDeathRecord.AgeAtDeathEditFlag['display']}");

AgeAtDeathEditFlagHelper <tt>property</tt>

Summary

Age at Death Edit Bypass Flag Helper

AutomatedUnderlyingCOD <tt>property</tt>

Summary

Decedent's Automated Underlying Cause of Death

Example

// Setter:

ExampleDeathRecord.AutomatedUnderlyingCOD = "I13.1";

// Getter:

Console.WriteLine($"Decedent's Automated Underlying Cause of Death: {ExampleDeathRecord.AutomatedUnderlyingCOD}");

AutopsyPerformedIndicator <tt>property</tt>

Summary

Autopsy Performed Indicator.

Example

// Setter:

Dictionary<string, string> code = new Dictionary<string, string>();

code.Add("code", "Y");

code.Add("system", CodeSystems.PH_YesNo_HL7_2x);

code.Add("display", "Yes");

ExampleDeathRecord.AutopsyPerformedIndicator = code;

// Getter:

Console.WriteLine($"Autopsy Performed Indicator: {ExampleDeathRecord.AutopsyPerformedIndicator['display']}");

AutopsyPerformedIndicatorHelper <tt>property</tt>

Summary

Autopsy Performed Indicator Helper. This is a helper method, to access the code use the AutopsyPerformedIndicator property.

Example

// Setter:

ExampleDeathRecord.AutopsyPerformedIndicatorHelper = "Y""; // Getter: Console.WriteLine($"Autopsy Performed Indicator: {ExampleDeathRecord.AutopsyPerformedIndicatorBoolean}");

AutopsyResultsAvailable <tt>property</tt>

Summary

Autopsy Results Available.

Example

// Setter:

Dictionary<string, string> code = new Dictionary<string, string>();

code.Add("code", "Y");

code.Add("system", CodeSystems.PH_YesNo_HL7_2x);

code.Add("display", "Yes");

ExampleDeathRecord.AutopsyResultsAvailable = code;

// Getter:

Console.WriteLine($"Autopsy Results Available: {ExampleDeathRecord.AutopsyResultsAvailable['display']}");

AutopsyResultsAvailableHelper <tt>property</tt>

Summary

Autopsy Results Available Helper. This is a convenience method, to access the coded value use AutopsyResultsAvailable.

Example

// Setter:

ExampleDeathRecord.AutopsyResultsAvailableHelper = "N";

// Getter:

Console.WriteLine($"Autopsy Results Available: {ExampleDeathRecord.AutopsyResultsAvailableHelper}");

BirthDay <tt>property</tt>

Summary

Decedent's Day of Birth.

Example

// Setter:

ExampleDeathRecord.BirthDay = 11;

// Getter:

Console.WriteLine($"Decedent Day of Birth: {ExampleDeathRecord.BirthDay}");

BirthMonth <tt>property</tt>

Summary

Decedent's Month of Birth.

Example

// Setter:

ExampleDeathRecord.BirthMonth = 11;

// Getter:

Console.WriteLine($"Decedent Month of Birth: {ExampleDeathRecord.BirthMonth}");

BirthRecordId <tt>property</tt>

Summary

Birth Record Identifier.

Example

// Setter:

ExampleDeathRecord.BirthRecordId = "4242123";

// Getter:

Console.WriteLine($"Birth Record identification: {ExampleDeathRecord.BirthRecordId}");

BirthRecordState <tt>property</tt>

Summary

Birth Record State.

Example

// Setter:

ExampleDeathRecord.BirthRecordState = "MA";

// Getter:

Console.WriteLine($"Birth Record identification: {ExampleDeathRecord.BirthRecordState}");

BirthRecordYear <tt>property</tt>

Summary

Birth Record Year.

Example

// Setter:

ExampleDeathRecord.BirthRecordYear = "1940";

// Getter:

Console.WriteLine($"Birth Record year: {ExampleDeathRecord.BirthRecordYear}");

BirthYear <tt>property</tt>

Summary

Decedent's Year of Birth.

Example

// Setter:

ExampleDeathRecord.BirthYear = 1928;

// Getter:

Console.WriteLine($"Decedent Year of Birth: {ExampleDeathRecord.BirthYear}");

COD1A <tt>property</tt>

Summary

Cause of Death Part I, Line a.

Example

// Setter:

ExampleDeathRecord.COD1A = "Rupture of myocardium";

// Getter:

Console.WriteLine($"Cause: {ExampleDeathRecord.COD1A}");

COD1B <tt>property</tt>

Summary

Cause of Death Part I, Line b.

Example

// Setter:

ExampleDeathRecord.COD1B = "Acute myocardial infarction";

// Getter:

Console.WriteLine($"Cause: {ExampleDeathRecord.COD1B}");

COD1C <tt>property</tt>

Summary

Cause of Death Part I, Line c.

Example

// Setter:

ExampleDeathRecord.COD1C = "Coronary artery thrombosis";

// Getter:

Console.WriteLine($"Cause: {ExampleDeathRecord.COD1C}");

COD1D <tt>property</tt>

Summary

Cause of Death Part I, Line d.

Example

// Setter:

ExampleDeathRecord.COD1D = "Atherosclerotic coronary artery disease";

// Getter:

Console.WriteLine($"Cause: {ExampleDeathRecord.COD1D}");

CausesOfDeath <tt>property</tt>

Summary

Conditions that resulted in the cause of death. Corresponds to part 1 of item 32 of the U.S. Standard Certificate of Death.

Example

// Setter:

Tuple<string, string>[] causes =

{

Tuple.Create("Example Immediate COD", "minutes"),

Tuple.Create("Example Underlying COD 1", "2 hours"),

Tuple.Create("Example Underlying COD 2", "6 months"),

Tuple.Create("Example Underlying COD 3", "15 years")

};

ExampleDeathRecord.CausesOfDeath = causes;

// Getter:

Tuple<string, string>[] causes = ExampleDeathRecord.CausesOfDeath;

foreach (var cause in causes)

{

Console.WriteLine($"Cause: {cause.Item1}, Onset: {cause.Item2}");

}

CertificationRole <tt>property</tt>

Summary

Certification Role.

Example

// Setter:

Dictionary<string, string> role = new Dictionary<string, string>();

role.Add("code", "76899008");

role.Add("system", CodeSystems.SCT);

role.Add("display", "Infectious diseases physician");

ExampleDeathRecord.CertificationRole = role;

// Getter:

Console.WriteLine($"Certification Role: {ExampleDeathRecord.CertificationRole['display']}");

CertificationRoleHelper <tt>property</tt>

Summary

Certification Role Helper.

Example

// Setter:

ExampleDeathRecord.CertificationRoleHelper = ValueSets.CertificationRole.InfectiousDiseasesPhysician;

// Getter:

Console.WriteLine($"Certification Role: {ExampleDeathRecord.CertificationRoleHelper}");

CertifiedTime <tt>property</tt>

Summary

Certified time.

Example

// Setter:

ExampleDeathRecord.CertifiedTime = "2019-01-29T16:48:06-05:00";

// Getter:

Console.WriteLine($"Certified at: {ExampleDeathRecord.CertifiedTime}");

CertifierAddress <tt>property</tt>

Summary

Certifier's Address.

Example

// Setter:

Dictionary<string, string> address = new Dictionary<string, string>();

address.Add("addressLine1", "123 Test Street");

address.Add("addressLine2", "Unit 3");

address.Add("addressCity", "Boston");

address.Add("addressCounty", "Suffolk");

address.Add("addressState", "MA");

address.Add("addressZip", "12345");

address.Add("addressCountry", "US");

ExampleDeathRecord.CertifierAddress = address;

// Getter:

foreach(var pair in ExampleDeathRecord.CertifierAddress)

{

Console.WriteLine($"\tCertifierAddress key: {pair.Key}: value: {pair.Value}");

};

CertifierFamilyName <tt>property</tt>

Summary

Family name of certifier.

Example

// Setter:

ExampleDeathRecord.CertifierFamilyName = "Last";

// Getter:

Console.WriteLine($"Certifier's Last Name: {ExampleDeathRecord.CertifierFamilyName}");

CertifierGivenNames <tt>property</tt>

Summary

Given name(s) of certifier.

Example

// Setter:

string[] names = { "Doctor", "Middle" };

ExampleDeathRecord.CertifierGivenNames = names;

// Getter:

Console.WriteLine($"Certifier Given Name(s): {string.Join(", ", ExampleDeathRecord.CertifierGivenNames)}");

CertifierIdentifier <tt>property</tt>

Summary

Certifier Identifier ** not mapped to IJE **.

Example

// Setter:

Dictionary<string, string> identifier = new Dictionary<string, string>();

identifier.Add("system", "http://hl7.org/fhir/sid/us-npi");

identifier.Add("value", "1234567890");

ExampleDeathRecord.CertifierIdentifier = identifier;

// Getter:

Console.WriteLine($"\tCertifier Identifier: {ExampleDeathRecord.CertifierIdentifier['value']}");

CertifierSuffix <tt>property</tt>

Summary

Certifier's Suffix.

Example

// Setter:

ExampleDeathRecord.CertifierSuffix = "Jr.";

// Getter:

Console.WriteLine($"Certifier Suffix: {ExampleDeathRecord.CertifierSuffix}");

CoderStatus <tt>property</tt>

Summary

Coder Status; TRX field with no IJE mapping

Example

// Setter:

ExampleDeathRecord.CoderStatus = 3;

// Getter:

Console.WriteLine($"Coder STatus {ExampleDeathRecord.CoderStatus}");

ContactRelationship <tt>property</tt>

Summary

The informant of the decedent's death.

Example

// Setter:

Dictionary<string, string> relationship = new Dictionary<string, string>();

relationship.Add("text", "sibling");

SetterDeathRecord.ContactRelationship = relationship;

// Getter:

Console.WriteLine($"Contact's Relationship: {ExampleDeathRecord.ContactRelationship["text"]}");

ContributingConditions <tt>property</tt>

Summary

Significant conditions that contributed to death but did not result in the underlying cause. Corresponds to part 2 of item 32 of the U.S. Standard Certificate of Death.

Example

// Setter:

ExampleDeathRecord.ContributingConditions = "Example Contributing Condition";

// Getter:

Console.WriteLine($"Cause: {ExampleDeathRecord.ContributingConditions}");

DateOfBirth <tt>property</tt>

Summary

Decedent's Date of Birth.

Example

// Setter:

ExampleDeathRecord.DateOfBirth = "1940-02-19";

// Getter:

Console.WriteLine($"Decedent Date of Birth: {ExampleDeathRecord.DateOfBirth}");

DateOfDeath <tt>property</tt>

Summary

Decedent's Date/Time of Death.

Example

// Setter:

ExampleDeathRecord.DateOfDeath = "2018-02-19T16:48:06-05:00";

// Getter:

Console.WriteLine($"Decedent Date of Death: {ExampleDeathRecord.DateOfDeath}");

DateOfDeathPronouncement <tt>property</tt>

Summary

Decedent's Date/Time of Death Pronouncement.

Example

// Setter:

ExampleDeathRecord.DateOfDeathPronouncement = "2018-02-20T16:48:06-05:00";

// Getter:

Console.WriteLine($"Decedent Date of Death Pronouncement: {ExampleDeathRecord.DateOfDeathPronouncement}");

DeathDay <tt>property</tt>

Summary

Decedent's Day of Death.

Example

// Setter:

ExampleDeathRecord.DeathDay = 16;

// Getter:

Console.WriteLine($"Decedent Day of Death: {ExampleDeathRecord.DeathDay}");

DeathLocationAddress <tt>property</tt>

Summary

Location of Death.

Example

// Setter:

Dictionary<string, string> address = new Dictionary<string, string>();

address.Add("addressLine1", "123456789 Test Street");

address.Add("addressLine2", "Unit 3");

address.Add("addressCity", "Boston");

address.Add("addressCounty", "Suffolk");

address.Add("addressState", "MA");

address.Add("addressZip", "12345");

address.Add("addressCountry", "US");

ExampleDeathRecord.DeathLocationAddress = address;

// Getter:

foreach(var pair in ExampleDeathRecord.DeathLocationAddress)

{

Console.WriteLine($"\DeathLocationAddress key: {pair.Key}: value: {pair.Value}");

};

DeathLocationDescription <tt>property</tt>

Summary

Description of Death Location.

Example

// Setter:

ExampleDeathRecord.DeathLocationDescription = "Bedford Cemetery";

// Getter:

Console.WriteLine($"Death Location Description: {ExampleDeathRecord.DeathLocationDescription}");

DeathLocationJurisdiction <tt>property</tt>

Summary

Death Location Jurisdiction.

Example

// Setter:

ExampleDeathRecord.DeathLocationJurisdiction = "MA";

// Getter:

Console.WriteLine($"Death Location Jurisdiction: {ExampleDeathRecord.DeathLocationJurisdiction}");

DeathLocationLatitude <tt>property</tt>

Summary

Lattitude of Death Location.

Example

// Setter:

ExampleDeathRecord.DeathLocationLattitude = "37.88888" ;

// Getter:

Console.WriteLine($"Death Location Lattitude: {ExampleDeathRecord.DeathLocationLattitude}");

DeathLocationLongitude <tt>property</tt>

Summary

Longitude of Death Location.

Example

// Setter:

ExampleDeathRecord.DeathLocationLongitude = "-50.000" ;

// Getter:

Console.WriteLine($"Death Location Longitude: {ExampleDeathRecord.DeathLocationLongitude}");

DeathLocationName <tt>property</tt>

Summary

Name of Death Location.

Example

// Setter:

ExampleDeathRecord.DeathLocationName = "Example Death Location Name";

// Getter:

Console.WriteLine($"Death Location Name: {ExampleDeathRecord.DeathLocationName}");

DeathLocationType <tt>property</tt>

Summary

Type of Death Location

Example

// Setter:

Dictionary<string, string> code = new Dictionary<string, string>();

code.Add("code", "16983000");

code.Add("system", CodeSystems.SCT);

code.Add("display", "Death in hospital");

ExampleDeathRecord.DeathLocationType = code;

// Getter:

Console.WriteLine($"Death Location Type: {ExampleDeathRecord.DeathLocationType['display']}");

DeathLocationTypeHelper <tt>property</tt>

Summary

Type of Death Location Helper

Example

// Setter:

ExampleDeathRecord.DeathLocationTypeHelper = VRDR.ValueSets.PlaceOfDeath.Death_In_Home;

// Getter:

Console.WriteLine($"Death Location Type: {ExampleDeathRecord.DeathLocationTypeHelper}");

DeathMonth <tt>property</tt>

Summary

Decedent's Month of Death.

Example

// Setter:

ExampleDeathRecord.DeathMonth = 6;

// Getter:

Console.WriteLine($"Decedent Month of Death: {ExampleDeathRecord.DeathMonth}");

DeathRecordIdentifier <tt>property</tt>

Summary

Death Record Bundle Identifier, NCHS identifier.

Example

// Getter:

Console.WriteLine($"NCHS identifier: {ExampleDeathRecord.DeathRecordIdentifier}");

DeathTime <tt>property</tt>

Summary

Decedent's Time of Death.

Example

// Setter:

ExampleDeathRecord.DeathTime = "07:15";

// Getter:

Console.WriteLine($"Decedent Time of Death: {ExampleDeathRecord.DeathTime}");

DeathYear <tt>property</tt>

Summary

Decedent's Year of Death.

Example

// Setter:

ExampleDeathRecord.DeathYear = 2018;

// Getter:

Console.WriteLine($"Decedent Year of Death: {ExampleDeathRecord.DeathYear}");

DecedentDispositionMethod <tt>property</tt>

Summary

Decedent's Disposition Method.

Example

// Setter:

Dictionary<string, string> dmethod = new Dictionary<string, string>();

dmethod.Add("code", "449971000124106");

dmethod.Add("system", CodeSystems.SCT);

dmethod.Add("display", "Burial");

ExampleDeathRecord.DecedentDispositionMethod = dmethod;

// Getter:

Console.WriteLine($"Decedent Disposition Method: {ExampleDeathRecord.DecedentDispositionMethod['display']}");

DecedentDispositionMethodHelper <tt>property</tt>

Summary

Decedent's Disposition Method Helper.

Example

// Setter:

ExampleDeathRecord.DecedentDispositionMethodHelper = VRDR.ValueSets.MethodOfDisposition.Burial;

// Getter:

Console.WriteLine($"Decedent Disposition Method: {ExampleDeathRecord.DecedentDispositionMethodHelper}");

DispositionLocationAddress <tt>property</tt>

Summary

Disposition Location Address.

Example

// Setter:

Dictionary<string, string> address = new Dictionary<string, string>();

address.Add("addressLine1", "1234 Test Street");

address.Add("addressLine2", "Unit 3");

address.Add("addressCity", "Boston");

address.Add("addressCounty", "Suffolk");

address.Add("addressState", "MA");

address.Add("addressZip", "12345");

address.Add("addressCountry", "US");

ExampleDeathRecord.DispositionLocationAddress = address;

// Getter:

foreach(var pair in ExampleDeathRecord.DispositionLocationAddress)

{

Console.WriteLine($"\DispositionLocationAddress key: {pair.Key}: value: {pair.Value}");

};

DispositionLocationName <tt>property</tt>

Summary

Name of Disposition Location.

Example

// Setter:

ExampleDeathRecord.DispositionLocationName = "Bedford Cemetery";

// Getter:

Console.WriteLine($"Disposition Location Name: {ExampleDeathRecord.DispositionLocationName}");

EducationLevel <tt>property</tt>

Summary

Decedent's Education Level.

Example

// Setter:

Dictionary<string, string> elevel = new Dictionary<string, string>();

elevel.Add("code", "BA");

elevel.Add("system", CodeSystems.EducationLevel);

elevel.Add("display", "Bachelor’s Degree");

ExampleDeathRecord.EducationLevel = elevel;

// Getter:

Console.WriteLine($"Education Level: {ExampleDeathRecord.EducationLevel['display']}");

EducationLevelEditFlag <tt>property</tt>

Summary

Decedent's Education Level Edit Flag.

Example

// Setter:

Dictionary<string, string> elevel = new Dictionary<string, string>();

elevel.Add("code", "0");

elevel.Add("system", CodeSystems.BypassEditFlag);

elevel.Add("display", "Edit Passed");

ExampleDeathRecord.EducationLevelEditFlag = elevel;

// Getter:

Console.WriteLine($"Education Level Edit Flag: {ExampleDeathRecord.EducationLevelEditFlag['display']}");

EducationLevelEditFlagHelper <tt>property</tt>

Summary

Decedent's Education Level Edit Flag Helper

Example

// Setter:

ExampleDeathRecord.DecedentEducationLevelEditFlag = VRDR.ValueSets.EditBypass01234.EditPassed;

// Getter:

Console.WriteLine($"Decedent's Education Level Edit Flag: {ExampleDeathRecord.EducationLevelHelperEditFlag}");

EducationLevelHelper <tt>property</tt>

Summary

Decedent's Education Level Helper

Example

// Setter:

ExampleDeathRecord.DecedentEducationLevel = VRDR.ValueSets.EducationLevel.Bachelors_Degree;

// Getter:

Console.WriteLine($"Decedent's Education Level: {ExampleDeathRecord.EducationLevelHelper}");

EighthEditedRaceCode <tt>property</tt>

Summary

Eighth Edited Race Code.

Example

// Setter:

Dictionary<string, string> racecode = new Dictionary<string, string>();

racecode.Add("code", "300");

racecode.Add("system", CodeSystems.RaceCode);

racecode.Add("display", "African");

ExampleDeathRecord.EighthEditedRaceCode = racecode;

// Getter:

Console.WriteLine($"Eighth Edited Race Code: {ExampleDeathRecord.EighthEditedRaceCode['display']}");

EighthEditedRaceCodeHelper <tt>property</tt>

Summary

Eighth Edited Race Code Helper

Example

// Setter:

ExampleDeathRecord.EighthEditedRaceCodeHelper = VRDR.ValueSets.RaceCode.African ;

// Getter:

Console.WriteLine($"Eighth Edited Race Code: {ExampleDeathRecord.EighthEditedRaceCodeHelper}");

EmergingIssue1_1 <tt>property</tt>

Summary

Emerging Issue Field Length 1 Number 1

Example

// Setter:

ExampleDeathRecord.EmergingIssue1_1 = "X";

// Getter:

Console.WriteLine($"Emerging Issue Value: {ExampleDeathRecord.EmergingIssue1_1}");

EmergingIssue1_2 <tt>property</tt>

Summary

Emerging Issue Field Length 1 Number 2

Example

// Setter:

ExampleDeathRecord.EmergingIssue1_2 = "X";

// Getter:

Console.WriteLine($"Emerging Issue Value: {ExampleDeathRecord.EmergingIssue1_2}");

EmergingIssue1_3 <tt>property</tt>

Summary

Emerging Issue Field Length 1 Number 3

Example

// Setter:

ExampleDeathRecord.EmergingIssue1_3 = "X";

// Getter:

Console.WriteLine($"Emerging Issue Value: {ExampleDeathRecord.EmergingIssue1_3}");

EmergingIssue1_4 <tt>property</tt>

Summary

Emerging Issue Field Length 1 Number 4

Example

// Setter:

ExampleDeathRecord.EmergingIssue1_4 = "X";

// Getter:

Console.WriteLine($"Emerging Issue Value: {ExampleDeathRecord.EmergingIssue1_4}");

EmergingIssue1_5 <tt>property</tt>

Summary

Emerging Issue Field Length 1 Number 5

Example

// Setter:

ExampleDeathRecord.EmergingIssue1_5 = "X";

// Getter:

Console.WriteLine($"Emerging Issue Value: {ExampleDeathRecord.EmergingIssue1_5}");

EmergingIssue1_6 <tt>property</tt>

Summary

Emerging Issue Field Length 1 Number 6

Example

// Setter:

ExampleDeathRecord.EmergingIssue1_6 = "X";

// Getter:

Console.WriteLine($"Emerging Issue Value: {ExampleDeathRecord.EmergingIssue1_6}");

EmergingIssue20 <tt>property</tt>

Summary

Emerging Issue Field Length 20

Example

// Setter:

ExampleDeathRecord.EmergingIssue20 = "XXXXXXXXXXXXXXXXXXXX";

// Getter:

Console.WriteLine($"Emerging Issue Value: {ExampleDeathRecord.EmergingIssue20}");

EmergingIssue8_1 <tt>property</tt>

Summary

Emerging Issue Field Length 8 Number 1

Example

// Setter:

ExampleDeathRecord.EmergingIssue8_1 = "XXXXXXXX";

// Getter:

Console.WriteLine($"Emerging Issue Value: {ExampleDeathRecord.EmergingIssue8_1}");

EmergingIssue8_2 <tt>property</tt>

Summary

Emerging Issue Field Length 8 Number 2

Example

// Setter:

ExampleDeathRecord.EmergingIssue8_2 = "XXXXXXXX";

// Getter:

Console.WriteLine($"Emerging Issue Value: {ExampleDeathRecord.EmergingIssue8_2}");

EmergingIssue8_3 <tt>property</tt>

Summary

Emerging Issue Field Length 8 Number 3

Example

// Setter:

ExampleDeathRecord.EmergingIssue8_3 = "XXXXXXXX";

// Getter:

Console.WriteLine($"Emerging Issue Value: {ExampleDeathRecord.EmergingIssue8_3}");

EntityAxisCauseOfDeath <tt>property</tt>

Summary

Entity Axis Cause Of Death

Note that record axis codes have an unusual and obscure handling of a Pregnancy flag, for more information see http://build.fhir.org/ig/HL7/vrdr/branches/master/StructureDefinition-vrdr-record-axis-cause-of-death.html#usage>

Example

// Setter:

ExampleDeathRecord.EntityAxisCauseOfDeath = new [] {(LineNumber: 2, Position: 1, Code: "T27.3", ECode: true)};

// Getter:

Console.WriteLine($"First Entity Axis Code: {ExampleDeathRecord.EntityAxisCauseOfDeath.ElementAt(0).Code}");

Ethnicity1 <tt>property</tt>

Summary

Decedent's Ethnicity Hispanic Mexican.

Example

// Setter:

Dictionary<string, string> ethnicity = new Dictionary<string, string>();

ethnicity.Add("code", "Y");

ethnicity.Add("system", CodeSystems.YesNo);

ethnicity.Add("display", "Yes");

ExampleDeathRecord.Ethnicity = ethnicity;

// Getter:

Console.WriteLine($"Ethnicity: {ExampleDeathRecord.Ethnicity1['display']}");

Ethnicity1Helper <tt>property</tt>

Summary

Decedent's Ethnicity 1 Helper

Example

// Setter:

ExampleDeathRecord.EthnicityLevel = VRDR.ValueSets.YesNoUnknown.Yes;

// Getter:

Console.WriteLine($"Decedent's Ethnicity: {ExampleDeathRecord.Ethnicity1Helper}");

Ethnicity2 <tt>property</tt>

Summary

Decedent's Ethnicity Hispanic Puerto Rican.

Example

// Setter:

Dictionary<string, string> ethnicity = new Dictionary<string, string>();

ethnicity.Add("code", "Y");

ethnicity.Add("system", CodeSystems.YesNo);

ethnicity.Add("display", "Yes");

ExampleDeathRecord.Ethnicity2 = ethnicity;

// Getter:

Console.WriteLine($"Ethnicity: {ExampleDeathRecord.Ethnicity2['display']}");

Ethnicity2Helper <tt>property</tt>

Summary

Decedent's Ethnicity 2 Helper

Example

// Setter:

ExampleDeathRecord.Ethnicity2Helper = "Y";

// Getter:

Console.WriteLine($"Decedent's Ethnicity: {ExampleDeathRecord.Ethnicity1Helper}");

Ethnicity3 <tt>property</tt>

Summary

Decedent's Ethnicity Hispanic Cuban.

Example

// Setter:

Dictionary<string, string> ethnicity = new Dictionary<string, string>();

ethnicity.Add("code", "Y");

ethnicity.Add("system", CodeSystems.YesNo);

ethnicity.Add("display", "Yes");

ExampleDeathRecord.Ethnicity3 = ethnicity;

// Getter:

Console.WriteLine($"Ethnicity: {ExampleDeathRecord.Ethnicity3['display']}");

Ethnicity3Helper <tt>property</tt>

Summary

Decedent's Ethnicity 3 Helper

Example

// Setter:

ExampleDeathRecord.Ethnicity3Helper = "Y";

// Getter:

Console.WriteLine($"Decedent's Ethnicity: {ExampleDeathRecord.Ethnicity3Helper}");

Ethnicity4 <tt>property</tt>

Summary

Decedent's Ethnicity Hispanic Other.

Example

// Setter:

Dictionary<string, string> ethnicity = new Dictionary<string, string>();

ethnicity.Add("code", "Y");

ethnicity.Add("system", CodeSystems.YesNo);

ethnicity.Add("display", "Yes");

ExampleDeathRecord.Ethnicity4 = ethnicity;

// Getter:

Console.WriteLine($"Ethnicity: {ExampleDeathRecord.Ethnicity4['display']}");

Ethnicity4Helper <tt>property</tt>

Summary

Decedent's Ethnicity 4 Helper

Example

// Setter:

ExampleDeathRecord.Ethnicity4Helper = "Y";

// Getter:

Console.WriteLine($"Decedent's Ethnicity: {ExampleDeathRecord.Ethnicity4Helper}");

EthnicityLiteral <tt>property</tt>

Summary

Decedent's Ethnicity Hispanic Literal.

Example

// Setter:

ExampleDeathRecord.EthnicityLiteral = ethnicity;

// Getter:

Console.WriteLine($"Ethnicity: {ExampleDeathRecord.Ethnicity4['display']}");

ExaminerContacted <tt>property</tt>

Summary

Examiner Contacted.

Example

// Setter:

Dictionary<string, string> ec = new Dictionary<string, string>();

within.Add("code", "Y");

within.Add("system", CodeSystems.PH_YesNo_HL7_2x);

within.Add("display", "Yes");

ExampleDeathRecord.ExaminerContacted = ec;

// Getter:

Console.WriteLine($"Examiner Contacted: {ExampleDeathRecord.ExaminerContacted['display']}");

ExaminerContactedHelper <tt>property</tt>

Summary

Examiner Contacted Helper. This is a conenience method, to access the code use ExaminerContacted instead.

Example

// Setter:

ExampleDeathRecord.ExaminerContactedHelper = "N"

// Getter:

Console.WriteLine($"Examiner Contacted: {ExampleDeathRecord.ExaminerContactedHelper}");

FamilyName <tt>property</tt>

Summary

Decedent's Family Name.

Example

// Setter:

ExampleDeathRecord.FamilyName = "Last";

// Getter:

Console.WriteLine($"Decedent's Last Name: {ExampleDeathRecord.FamilyName}");

FatherFamilyName <tt>property</tt>

Summary

Family name of decedent's father.

Example

// Setter:

ExampleDeathRecord.FatherFamilyName = "Last";

// Getter:

Console.WriteLine($"Father's Last Name: {ExampleDeathRecord.FatherFamilyName}");

FatherGivenNames <tt>property</tt>

Summary

Given name(s) of decedent's father.

Example

// Setter:

string[] names = { "Dad", "Middle" };

ExampleDeathRecord.FatherGivenNames = names;

// Getter:

Console.WriteLine($"Father Given Name(s): {string.Join(", ", ExampleDeathRecord.FatherGivenNames)}");

FatherSuffix <tt>property</tt>

Summary

Father's Suffix.

Example

// Setter:

ExampleDeathRecord.FatherSuffix = "Jr.";

// Getter:

Console.WriteLine($"Father Suffix: {ExampleDeathRecord.FatherSuffix}");

FifthEditedRaceCode <tt>property</tt>

Summary

Fifth Edited Race Code.

Example

// Setter:

Dictionary<string, string> racecode = new Dictionary<string, string>();

racecode.Add("code", "300");

racecode.Add("system", CodeSystems.RaceCode);

racecode.Add("display", "African");

ExampleDeathRecord.FifthEditedRaceCode = racecode;

// Getter:

Console.WriteLine($"Fifth Edited Race Code: {ExampleDeathRecord.FifthEditedRaceCode['display']}");

FifthEditedRaceCodeHelper <tt>property</tt>

Summary

Fifth Edited Race Code Helper

Example

// Setter:

ExampleDeathRecord.FifthEditedRaceCodeHelper = VRDR.ValueSets.RaceCode.African ;

// Getter:

Console.WriteLine($"Fifth Edited Race Code: {ExampleDeathRecord.FifthEditedRaceCodeHelper}");

FilingFormat <tt>property</tt>

Summary

Filing Format.

Example

// Setter:

Dictionary<string, string> format = new Dictionary<string, string>();

format.Add("code", ValueSets.FilingFormat.electronic);

format.Add("system", CodeSystems.FilingFormat);

format.Add("display", "Electronic");

ExampleDeathRecord.FilingFormat = format;

// Getter:

Console.WriteLine($"Filed method: {ExampleDeathRecord.FilingFormat}");

FilingFormatHelper <tt>property</tt>

Summary

Filing Format Helper.

Example

// Setter:

ExampleDeathRecord.FilingFormatHelper = ValueSets.FilingFormat.Electronic;

// Getter:

Console.WriteLine($"Filing Format: {ExampleDeathRecord.FilingFormatHelper}");

FirstAmericanIndianRaceCode <tt>property</tt>

Summary

First American Indian Race Code.

Example

// Setter:

Dictionary<string, string> racecode = new Dictionary<string, string>();

racecode.Add("code", "300");

racecode.Add("system", CodeSystems.RaceCode);

racecode.Add("display", "African");

ExampleDeathRecord.FirstAmericanIndianRaceCode = racecode;

// Getter:

Console.WriteLine($"First American Indian Race Code: {ExampleDeathRecord.FirstAmericanIndianRaceCode['display']}");

FirstAmericanIndianRaceCodeHelper <tt>property</tt>

Summary

First American Indian Race Code Helper

Example

// Setter:

ExampleDeathRecord.FirstAmericanIndianRaceCodeHelper = VRDR.ValueSets.RaceCode.African ;

// Getter:

Console.WriteLine($"First American Indian Race Code: {ExampleDeathRecord.FirstAmericanIndianRaceCodeHelper}");

FirstEditedRaceCode <tt>property</tt>

Summary

First Edited Race Code.

Example

// Setter:

Dictionary<string, string> racecode = new Dictionary<string, string>();

racecode.Add("code", "300");

racecode.Add("system", CodeSystems.RaceCode);

racecode.Add("display", "African");

ExampleDeathRecord.FirstEditedRaceCode = racecode;

// Getter:

Console.WriteLine($"First Edited Race Code: {ExampleDeathRecord.FirstEditedRaceCode['display']}");

FirstEditedRaceCodeHelper <tt>property</tt>

Summary

First Edited Race Code Helper

Example

// Setter:

ExampleDeathRecord.FirstEditedRaceCodeHelper = VRDR.ValueSets.RaceCode.African ;

// Getter:

Console.WriteLine($"First Edited Race Code: {ExampleDeathRecord.FirstEditedRaceCodeHelper}");

FirstOtherAsianRaceCode <tt>property</tt>

Summary

First Other Asian Race Code.

Example

// Setter:

Dictionary<string, string> racecode = new Dictionary<string, string>();

racecode.Add("code", "300");

racecode.Add("system", CodeSystems.RaceCode);

racecode.Add("display", "African");

ExampleDeathRecord.FirstOtherAsianRaceCode = racecode;

// Getter:

Console.WriteLine($"First Other Asian Race Code: {ExampleDeathRecord.FirstOtherAsianRaceCode['display']}");

FirstOtherAsianRaceCodeHelper <tt>property</tt>

Summary

First Other Asian Race Code Helper

Example

// Setter:

ExampleDeathRecord.FirstOtherAsianRaceCodeHelper = VRDR.ValueSets.RaceCode.African ;

// Getter:

Console.WriteLine($"First Other Asian Race Code: {ExampleDeathRecord.FirstOtherAsianRaceCodeHelper}");

FirstOtherPacificIslanderRaceCode <tt>property</tt>

Summary

First Other Pacific Islander Race Code.

Example

// Setter:

Dictionary<string, string> racecode = new Dictionary<string, string>();

racecode.Add("code", "300");

racecode.Add("system", CodeSystems.RaceCode);

racecode.Add("display", "African");

ExampleDeathRecord.FirstOtherPacificIslanderRaceCode = racecode;

// Getter:

Console.WriteLine($"First Other Pacific Islander Race Code: {ExampleDeathRecord.FirstOtherPacificIslanderRaceCode['display']}");

FirstOtherPacificIslanderRaceCodeHelper <tt>property</tt>

Summary

First Other Pacific Islander Race Code Helper

Example

// Setter:

ExampleDeathRecord.FirstOtherPacificIslanderRaceCodeHelper = VRDR.ValueSets.RaceCode.African ;

// Getter:

Console.WriteLine($"First Other Pacific Islander Race Code: {ExampleDeathRecord.FirstOtherPacificIslanderRaceCodeHelper}");

FirstOtherRaceCode <tt>property</tt>

Summary

First Other Race Code.

Example

// Setter:

Dictionary<string, string> racecode = new Dictionary<string, string>();

racecode.Add("code", "300");

racecode.Add("system", CodeSystems.RaceCode);

racecode.Add("display", "African");

ExampleDeathRecord.FirstOtherRaceCode = racecode;

// Getter:

Console.WriteLine($"First Other Race Code: {ExampleDeathRecord.FirstOtherRaceCode['display']}");

FirstOtherRaceCodeHelper <tt>property</tt>

Summary

First Other Race Code Helper

Example

// Setter:

ExampleDeathRecord.FirstOtherRaceCodeHelper = VRDR.ValueSets.RaceCode.African ;

// Getter:

Console.WriteLine($"First Other Race Code: {ExampleDeathRecord.FirstOtherRaceCodeHelper}");

FourthEditedRaceCode <tt>property</tt>

Summary

Fourth Edited Race Code.

Example

// Setter:

Dictionary<string, string> racecode = new Dictionary<string, string>();

racecode.Add("code", "300");

racecode.Add("system", CodeSystems.RaceCode);

racecode.Add("display", "African");

ExampleDeathRecord.FourthEditedRaceCode = racecode;

// Getter:

Console.WriteLine($"Fourth Edited Race Code: {ExampleDeathRecord.FourthEditedRaceCode['display']}");

FourthEditedRaceCodeHelper <tt>property</tt>

Summary

Fourth Edited Race Code Helper

Example

// Setter:

ExampleDeathRecord.FourthEditedRaceCodeHelper = VRDR.ValueSets.RaceCode.African ;

// Getter:

Console.WriteLine($"Fourth Edited Race Code: {ExampleDeathRecord.FourthEditedRaceCodeHelper}");

FuneralHomeAddress <tt>property</tt>

Summary

Funeral Home Address.

Example

// Setter:

Dictionary<string, string> address = new Dictionary<string, string>();

address.Add("addressLine1", "1234 Test Street");

address.Add("addressLine2", "Unit 3");

address.Add("addressCity", "Boston");

address.Add("addressCounty", "Suffolk");

address.Add("addressState", "MA");

address.Add("addressZip", "12345");

address.Add("addressCountry", "US");

ExampleDeathRecord.FuneralHomeAddress = address;

// Getter:

foreach(var pair in ExampleDeathRecord.FuneralHomeAddress)

{

Console.WriteLine($"\FuneralHomeAddress key: {pair.Key}: value: {pair.Value}");

};

FuneralHomeName <tt>property</tt>

Summary

Name of Funeral Home.

Example

// Setter:

ExampleDeathRecord.FuneralHomeName = "Smith Funeral Home";

// Getter:

Console.WriteLine($"Funeral Home Name: {ExampleDeathRecord.FuneralHomeName}");

GivenNames <tt>property</tt>

Summary

Decedent's Legal Name - Given. Middle name should be the last entry.

Example

// Setter:

string[] names = { "Example", "Something", "Middle" };

ExampleDeathRecord.GivenNames = names;

// Getter:

Console.WriteLine($"Decedent Given Name(s): {string.Join(", ", ExampleDeathRecord.GivenNames)}");

HispanicCode <tt>property</tt>

Summary

Hispanic Code.

Example

// Setter:

Dictionary<string, string> racecode = new Dictionary<string, string>();

racecode.Add("code", "300");

racecode.Add("system", CodeSystems.RaceCode);

racecode.Add("display", "African");

ExampleDeathRecord.HispanicCode = racecode;

// Getter:

Console.WriteLine($"Hispanic Code: {ExampleDeathRecord.HispanicCode['display']}");

HispanicCodeForLiteral <tt>property</tt>

Summary

Hispanic Code For Literal.

Example

// Setter:

Dictionary<string, string> racecode = new Dictionary<string, string>();

racecode.Add("code", "300");

racecode.Add("system", CodeSystems.RaceCode);

racecode.Add("display", "African");

ExampleDeathRecord.HispanicCodeForLiteral = racecode;

// Getter:

Console.WriteLine($"Hispanic Code For Literal: {ExampleDeathRecord.HispanicCodeForLiteral['display']}");

HispanicCodeForLiteralHelper <tt>property</tt>

Summary

Hispanic Code For Literal Helper

Example

// Setter:

ExampleDeathRecord.HispanicCodeForLiteralHelper = VRDR.ValueSets.RaceCode.African ;

// Getter:

Console.WriteLine($"Hispanic Code For Literal: {ExampleDeathRecord.HispanicCodeForLiteralHelper}");

HispanicCodeHelper <tt>property</tt>

Summary

Hispanic Code Helper

Example

// Setter:

ExampleDeathRecord.HispanicCodeHelper = VRDR.ValueSets.RaceCode.African ;

// Getter:

Console.WriteLine($"Hispanic Code: {ExampleDeathRecord.HispanicCodeHelper}");

INTERVAL1A <tt>property</tt>

Summary

Cause of Death Part I Interval, Line a.

Example

// Setter:

ExampleDeathRecord.INTERVAL1A = "Minutes";

// Getter:

Console.WriteLine($"Interval: {ExampleDeathRecord.INTERVAL1A}");

INTERVAL1B <tt>property</tt>

Summary

Cause of Death Part I Interval, Line b.

Example

// Setter:

ExampleDeathRecord.INTERVAL1B = "6 days";

// Getter:

Console.WriteLine($"Interval: {ExampleDeathRecord.INTERVAL1B}");

INTERVAL1C <tt>property</tt>

Summary

Cause of Death Part I Interval, Line c.

Example

// Setter:

ExampleDeathRecord.INTERVAL1C = "5 years";

// Getter:

Console.WriteLine($"Interval: {ExampleDeathRecord.INTERVAL1C}");

INTERVAL1D <tt>property</tt>

Summary

Cause of Death Part I Interval, Line d.

Example

// Setter:

ExampleDeathRecord.INTERVAL1D = "7 years";

// Getter:

Console.WriteLine($"Interval: {ExampleDeathRecord.INTERVAL1D}");

Identifier <tt>property</tt>

Summary

Death Record Identifier, Death Certificate Number.

Example

// Setter:

ExampleDeathRecord.Identifier = "42";

// Getter:

Console.WriteLine($"Death Certificate Number: {ExampleDeathRecord.Identifier}");

InjuryAtWork <tt>property</tt>

Summary

Injury At Work?

Example

// Setter:

Dictionary<string, string> code = new Dictionary<string, string>();

code.Add("code", "N");

code.Add("system", CodeSystems.YesNo);

code.Add("display", "No");

ExampleDeathRecord.InjuryAtWork = code;

// Getter:

Console.WriteLine($"Injury At Work?: {ExampleDeathRecord.InjuryAtWork['display']}");

InjuryAtWorkHelper <tt>property</tt>

Summary

Injury At Work Helper This is a convenience method, to access the code use the InjuryAtWork property instead.

Example

// Setter:

ExampleDeathRecord.InjuryAtWorkHelper = "Y""; // Getter: Console.WriteLine($"Injury At Work? : {ExampleDeathRecord.InjuryAtWorkHelper}");

InjuryDate <tt>property</tt>

Summary

Date/Time of Injury.

Example

// Setter:

ExampleDeathRecord.InjuryDate = "2018-02-19T16:48:06-05:00";

// Getter:

Console.WriteLine($"Date of Injury: {ExampleDeathRecord.InjuryDate}");

InjuryDay <tt>property</tt>

Summary

Decedent's Day of Injury.

Example

// Setter:

ExampleDeathRecord.InjuryDay = 22;

// Getter:

Console.WriteLine($"Decedent Day of Injury: {ExampleDeathRecord.InjuryDay}");

InjuryDescription <tt>property</tt>

Summary

Description of Injury.

Example

// Setter:

ExampleDeathRecord.InjuryDescription = "drug toxicity";

// Getter:

Console.WriteLine($"Injury Description: {ExampleDeathRecord.InjuryDescription}");

InjuryLocationAddress <tt>property</tt>

Summary

Location of Injury.

Example

// Setter:

Dictionary<string, string> address = new Dictionary<string, string>();

address.Add("addressLine1", "123456 Test Street");

address.Add("addressLine2", "Unit 3");

address.Add("addressCity", "Boston");

address.Add("addressCounty", "Suffolk");

address.Add("addressState", "MA");

address.Add("addressZip", "12345");

address.Add("addressCountry", "US");

ExampleDeathRecord.InjuryLocationAddress = address;

// Getter:

foreach(var pair in ExampleDeathRecord.InjuryLocationAddress)

{

Console.WriteLine($"\InjuryLocationAddress key: {pair.Key}: value: {pair.Value}");

};

InjuryLocationLatitude <tt>property</tt>

Summary

Lattitude of Injury Location.

Example

// Setter:

ExampleDeathRecord.InjuryLocationLattitude = "37.88888" ;

// Getter:

Console.WriteLine($"Injury Location Lattitude: {ExampleDeathRecord.InjuryLocationLattitude}");

InjuryLocationLongitude <tt>property</tt>

Summary

Longitude of Injury Location.

Example

// Setter:

ExampleDeathRecord.InjuryLocationLongitude = "-50.000" ;

// Getter:

Console.WriteLine($"Injury Location Longitude: {ExampleDeathRecord.InjuryLocationLongitude}");

InjuryLocationName <tt>property</tt>

Summary

Name of Injury Location.

Example

// Setter:

ExampleDeathRecord.InjuryLocationName = "Bedford Cemetery";

// Getter:

Console.WriteLine($"Injury Location Name: {ExampleDeathRecord.InjuryLocationName}");

InjuryMonth <tt>property</tt>

Summary

Decedent's Month of Injury.

Example

// Setter:

ExampleDeathRecord.InjuryMonth = 7;

// Getter:

Console.WriteLine($"Decedent Month of Injury: {ExampleDeathRecord.InjuryMonth}");

InjuryPlaceDescription <tt>property</tt>

Summary

Place of Injury Description.

Example

// Setter:

ExampleDeathRecord.InjuryPlaceDescription = "At home, in the kitchen";

// Getter:

Console.WriteLine($"Place of Injury Description: {ExampleDeathRecord.InjuryPlaceDescription}");

InjuryTime <tt>property</tt>

Summary

Decedent's Time of Injury.

Example

// Setter:

ExampleDeathRecord.InjuryTime = "07:15";

// Getter:

Console.WriteLine($"Decedent Time of Injury: {ExampleDeathRecord.InjuryTime}");

InjuryYear <tt>property</tt>

Summary

Decedent's Year of Injury.

Example

// Setter:

ExampleDeathRecord.InjuryYear = 2018;

// Getter:

Console.WriteLine($"Decedent Year of Injury: {ExampleDeathRecord.InjuryYear}");

IntentionalReject <tt>property</tt>

Summary

Intentional Reject

Example

// Setter:

Dictionary<string, string> reject = new Dictionary<string, string>();

format.Add("code", ValueSets.FilingFormat.electronic);

format.Add("system", CodeSystems.IntentionalReject);

format.Add("display", "Reject1");

ExampleDeathRecord.IntentionalReject = "reject";

// Getter:

Console.WriteLine($"Intentional Reject {ExampleDeathRecord.IntentionalReject}");

IntentionalRejectHelper <tt>property</tt>

Summary

Intentional Reject Helper.

Example

// Setter:

ExampleDeathRecord.IntentionalRejectHelper = ValueSets.IntentionalReject.Not_Rejected;

// Getter:

Console.WriteLine($"Intentional Reject Code: {ExampleDeathRecord.IntentionalRejectHelper}");

MaidenName <tt>property</tt>

Summary

Decedent's Maiden Name.

Example

// Setter:

ExampleDeathRecord.MaidenName = "Last";

// Getter:

Console.WriteLine($"Decedent's Maiden Name: {ExampleDeathRecord.MaidenName}");

ManUnderlyingCOD <tt>property</tt>

Summary

Decedent's Manual Underlying Cause of Death

Example

// Setter:

ExampleDeathRecord.ManUnderlyingCOD = "I13.1";

// Getter:

Console.WriteLine($"Decedent's Manual Underlying Cause of Death: {ExampleDeathRecord.ManUnderlyingCOD}");

MannerOfDeathType <tt>property</tt>

Summary

Manner of Death Type.

Example

// Setter:

Dictionary<string, string> manner = new Dictionary<string, string>();

manner.Add("code", "7878000");

manner.Add("system", "");

manner.Add("display", "Accidental death");

ExampleDeathRecord.MannerOfDeathType = manner;

// Getter:

Console.WriteLine($"Manner Of Death Type: {ExampleDeathRecord.MannerOfDeathType['display']}");

MannerOfDeathTypeHelper <tt>property</tt>

Summary

Manner of Death Type Helper

Example

// Setter:

ExampleDeathRecord.MannerOfDeathTypeHelper = MannerOfDeath.Natural;

// Getter:

Console.WriteLine($"Manner Of Death Type: {ExampleDeathRecord.MannerOfDeathTypeHelper}");

MaritalStatus <tt>property</tt>

Summary

The marital status of the decedent at the time of death.

Example

// Setter:

Dictionary<string, string> code = new Dictionary<string, string>();

code.Add("code", "S");

code.Add("system", "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus");

code.Add("display", "Never Married");

ExampleDeathRecord.MaritalStatus = code;

// Getter:

Console.WriteLine($"Marital status: {ExampleDeathRecord.MaritalStatus["display"]}");

MaritalStatusEditFlag <tt>property</tt>

Summary

The marital status edit flag.

Example

// Setter:

Dictionary<string, string> code = new Dictionary<string, string>();

code.Add("code", "S");

code.Add("system", "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus");

code.Add("display", "Never Married");

ExampleDeathRecord.MaritalStatus = code;

// Getter:

Console.WriteLine($"Marital status: {ExampleDeathRecord.MaritalStatus["display"]}");

MaritalStatusEditFlagHelper <tt>property</tt>

Summary

The marital status edit flag helper method.

Example

// Setter:

ExampleDeathRecord.MaritalStatusEditFlagHelper = ValueSets.EditBypass0124.0;

// Getter:

Console.WriteLine($"Marital status: {ExampleDeathRecord.MaritalStatusEditFlagHelper}");

MaritalStatusHelper <tt>property</tt>

Summary

The marital status of the decedent at the time of death helper method.

Example

// Setter:

ExampleDeathRecord.MaritalStatusHelper = ValueSets.MaritalStatus.NeverMarried;

// Getter:

Console.WriteLine($"Marital status: {ExampleDeathRecord.MaritalStatusHelper}");

MaritalStatusLiteral <tt>property</tt>

Summary

The literal text string of the marital status of the decedent at the time of death.

Example

// Setter:

ExampleDeathRecord.MaritalStatusLiteral = "Single";

// Getter:

Console.WriteLine($"Marital status: {ExampleDeathRecord.MaritalStatusLiteral}");

MilitaryService <tt>property</tt>

Summary

Decedent's Military Service.

Example

// Setter:

Dictionary<string, string> mserv = new Dictionary<string, string>();

mserv.Add("code", "Y");

mserv.Add("system", CodeSystems.PH_YesNo_HL7_2x);

mserv.Add("display", "Yes");

ExampleDeathRecord.MilitaryService = uind;

// Getter:

Console.WriteLine($"Military Service: {ExampleDeathRecord.MilitaryService['display']}");

MilitaryServiceHelper <tt>property</tt>

Summary

Decedent's Military Service. This is a helper method, to obtain the code use the MilitaryService property instead.

Example

// Setter:

ExampleDeathRecord.MilitaryServiceHelper = "Y";

// Getter:

Console.WriteLine($"Military Service: {ExampleDeathRecord.MilitaryServiceHelper}");

MotherGivenNames <tt>property</tt>

Summary

Given name(s) of decedent's mother.

Example

// Setter:

string[] names = { "Mom", "Middle" };

ExampleDeathRecord.MotherGivenNames = names;

// Getter:

Console.WriteLine($"Mother Given Name(s): {string.Join(", ", ExampleDeathRecord.MotherGivenNames)}");

MotherMaidenName <tt>property</tt>

Summary

Maiden name of decedent's mother.

Example

// Setter:

ExampleDeathRecord.MotherMaidenName = "Last";

// Getter:

Console.WriteLine($"Mother's Maiden Name: {ExampleDeathRecord.MotherMaidenName}");

MotherSuffix <tt>property</tt>

Summary

Mother's Suffix.

Example

// Setter:

ExampleDeathRecord.MotherSuffix = "Jr.";

// Getter:

Console.WriteLine($"Mother Suffix: {ExampleDeathRecord.MotherSuffix}");

PlaceOfBirth <tt>property</tt>

Summary

Decedent's Place Of Birth.

Example

// Setter:

Dictionary<string, string> address = new Dictionary<string, string>();

address.Add("addressLine1", "123 Test Street");

address.Add("addressLine2", "Unit 3");

address.Add("addressCity", "Boston");

address.Add("addressCounty", "Suffolk");

address.Add("addressState", "MA");

address.Add("addressZip", "12345");

address.Add("addressCountry", "US");

SetterDeathRecord.PlaceOfBirth = address;

// Getter:

Console.WriteLine($"State where decedent was born: {ExampleDeathRecord.PlaceOfBirth["placeOfBirthState"]}");

PlaceOfInjury <tt>property</tt>

Summary

Place of Injury.

Example

// Setter:

Dictionary<string, string> elevel = new Dictionary<string, string>();

elevel.Add("code", "LA14084-0");

elevel.Add("system", CodeSystems.LOINC);

elevel.Add("display", "Home");

ExampleDeathRecord.PlaceOfInjury = elevel;

// Getter:

Console.WriteLine($"PlaceOfInjury: {ExampleDeathRecord.PlaceOfInjury['display']}");

PlaceOfInjuryHelper <tt>property</tt>

Summary

Decedent's Place of Injury Helper

Example

// Setter:

ExampleDeathRecord.PlaceOfInjuryHelper = ValueSets.PlaceOfInjury.Home;

// Getter:

Console.WriteLine($"Place of Injury: {ExampleDeathRecord.PlaceOfInjuryHelper}");

PregnancyStatus <tt>property</tt>

Summary

Pregnancy Status At Death.

Example

// Setter:

Dictionary<string, string> code = new Dictionary<string, string>();

code.Add("code", "1");

code.Add("system", VRDR.CodeSystems.PregnancyStatus);

code.Add("display", "Not pregnant within past year");

ExampleDeathRecord.PregnancyObs = code;

// Getter:

Console.WriteLine($"Pregnancy Status: {ExampleDeathRecord.PregnancyObs['display']}");

PregnancyStatusEditFlag <tt>property</tt>

Summary

Decedent's Pregnancy Status at Death Edit Flag.

Example

// Setter:

Dictionary<string, string> elevel = new Dictionary<string, string>();

elevel.Add("code", "0");

elevel.Add("system", CodeSystems.BypassEditFlag);

elevel.Add("display", "Edit Passed");

ExampleDeathRecord.PregnancyStatusEditFlag = elevel;

// Getter:

Console.WriteLine($"Pregnancy Status Edit Flag: {ExampleDeathRecord.PregnancyStatusEditFlag['display']}");

PregnancyStatusEditFlagHelper <tt>property</tt>

Summary

Decedent's Pregnancy Status Edit Flag Helper

Example

// Setter:

ExampleDeathRecord.DecedentPregnancyStatusEditFlag = VRDR.ValueSets.EditBypass012.EditPassed;

// Getter:

Console.WriteLine($"Decedent's Pregnancy Status Edit Flag: {ExampleDeathRecord.PregnancyStatusHelperEditFlag}");

PregnancyStatusHelper <tt>property</tt>

Summary

Pregnancy Status At Death Helper.

Example

// Setter:

ExampleDeathRecord.PregnancyStatusHelper = ValueSets.PregnancyStatus.Not_Pregnant_Within_Past_Year;

// Getter:

Console.WriteLine($"Pregnancy Status: {ExampleDeathRecord.PregnancyStatusHelper}");

Race <tt>property</tt>

Summary

Decedent's Race values.

Example

// Setter:

ExampleDeathRecord.Race = {NvssRace.BlackOrAfricanAmerican, "Y"};

// Getter:

string boaa = ExampleDeathRecord.RaceBlackOfAfricanAmerican;

RaceMissingValueReason <tt>property</tt>

Summary

Decedent's Race MissingValueReason.

Example

// Setter:

Dictionary<string, string> mvr = new Dictionary<string, string>();

mvr.Add("code", "R");

mvr.Add("system", CodeSystems.MissingValueReason);

mvr.Add("display", "Refused");

ExampleDeathRecord.RaceMissingValueReason = mvr;

// Getter:

Console.WriteLine($"Missing Race: {ExampleDeathRecord.RaceMissingValueReason['display']}");

RaceMissingValueReasonHelper <tt>property</tt>

Summary

Decedent's RaceMissingValueReason

Example

// Setter:

ExampleDeathRecord.RaceMissingValueReasonHelper = VRDR.ValueSets.RaceMissingValueReason.R;

// Getter:

Console.WriteLine($"Decedent's RaceMissingValueReason: {ExampleDeathRecord.RaceMissingValueReasonHelper}");

RaceRecode40 <tt>property</tt>

Summary

Race Recode 40.

Example

// Setter:

Dictionary<string, string> racecode = new Dictionary<string, string>();

racecode.Add("code", "09");

racecode.Add("system", CodeSystems.RaceRecode40CS);

racecode.Add("display", "Vietnamiese");

ExampleDeathRecord.RaceRecode40 = racecode;

// Getter:

Console.WriteLine($"RaceRecode40: {ExampleDeathRecord.RaceRecode40['display']}");

RaceRecode40Helper <tt>property</tt>

Summary

Race Recode 40 Helper

Example

// Setter:

ExampleDeathRecord.RaceRecode40Helper = VRDR.ValueSets.RaceRecode40.AIAN ;

// Getter:

Console.WriteLine($"Race Recode 40: {ExampleDeathRecord.RaceRecode40Helper}");

ReceiptDate <tt>property</tt>

Summary

Receipt Date.

Example

// Setter:

ExampleDeathRecord.ReceiptDate = "2018-02-19";

// Getter:

Console.WriteLine($"Receipt Date: {ExampleDeathRecord.ReceiptDate}");

ReceiptDay <tt>property</tt>

Summary

The day NCHS received the death record.

Example

// Setter:

ExampleDeathRecord.ReceiptDay = 13

// Getter:

Console.WriteLine($"Receipt Day: {ExampleDeathRecord.ReceiptDay}");

ReceiptMonth <tt>property</tt>

Summary

The month NCHS received the death record.

Example

// Setter:

ExampleDeathRecord.ReceiptMonth = 11

// Getter:

Console.WriteLine($"Receipt Month: {ExampleDeathRecord.ReceiptMonth}");

ReceiptYear <tt>property</tt>

Summary

The year NCHS received the death record.

Example

// Setter:

ExampleDeathRecord.ReceiptYear = 2022

// Getter:

Console.WriteLine($"Receipt Year: {ExampleDeathRecord.ReceiptYear}");

RecordAxisCauseOfDeath <tt>property</tt>

Summary

Record Axis Cause Of Death

Example

// Setter:

Tuple<string, string, string>[] eac = new Tuple<string, string, string>{Tuple.Create("position", "code", "pregnancy")}

ExampleDeathRecord.RecordAxisCauseOfDeath = new [] { (Position: 1, Code: "T27.3", Pregnancy: true) };

// Getter:

Console.WriteLine($"First Record Axis Code: {ExampleDeathRecord.RecordAxisCauseOfDeath.ElememtAt(0).Code}");

RegisteredTime <tt>property</tt>

Summary

Registered time.

Example

// Setter:

ExampleDeathRecord.RegisteredTime = "2019-01-29T16:48:06-05:00";

// Getter:

Console.WriteLine($"Registered at: {ExampleDeathRecord.RegisteredTime}");

ReplaceStatus <tt>property</tt>

Summary

Replace Status.

Example

// Setter:

Dictionary<string, string> replace = new Dictionary<string, string>();

replace.Add("code", "original");

replace.Add("system", CodeSystems.ReplaceStatus);

replace.Add("display", "original");

ExampleDeathRecord.ReplaceStatus = replace;

// Getter:

Console.WriteLine($"Filed method: {ExampleDeathRecord.ReplaceStatus}");

ReplaceStatusHelper <tt>property</tt>

Summary

Replace Status Helper.

Example

// Setter:

ExampleDeathRecord.ReplaceStatusHelper = ValueSets.ReplaceStatus.Original_Record;

// Getter:

Console.WriteLine($"ReplaceStatus: {ExampleDeathRecord.ReplaceStatusHelper}");

Residence <tt>property</tt>

Summary

Decedent's Residence.

Example

// Setter:

Dictionary<string, string> address = new Dictionary<string, string>();

address.Add("addressLine1", "123 Test Street");

address.Add("addressLine2", "Unit 3");

address.Add("addressCity", "Boston");

address.Add("addressCityC", "1234");

address.Add("addressCounty", "Suffolk");

address.Add("addressState", "MA");

address.Add("addressZip", "12345");

address.Add("addressCountry", "US");

SetterDeathRecord.Residence = address;

(addressStnum, 6)

// Getter:

Console.WriteLine($"State of residence: {ExampleDeathRecord.Residence["addressState"]}");

ResidenceWithinCityLimits <tt>property</tt>

Summary

Decedent's residence is/is not within city limits.

Example

// Setter:

Dictionary<string, string> within = new Dictionary<string, string>();

within.Add("code", "Y");

within.Add("system", CodeSystems.PH_YesNo_HL7_2x);

within.Add("display", "Yes");

SetterDeathRecord.ResidenceWithinCityLimits = within;

// Getter:

Console.WriteLine($"Residence within city limits: {ExampleDeathRecord.ResidenceWithinCityLimits['display']}");

ResidenceWithinCityLimitsHelper <tt>property</tt>

Summary

Residence Within City Limits Helper

Example

// Setter:

ExampleDeathRecord.ResidenceWithinCityLimitsHelper = VRDR.ValueSets.YesNoUnknown.Y;

// Getter:

Console.WriteLine($"Decedent's Residence within city limits: {ExampleDeathRecord.ResidenceWithinCityLimitsHelper}");

SSN <tt>property</tt>

Summary

Decedent's Social Security Number.

Example

// Setter:

ExampleDeathRecord.SSN = "12345678";

// Getter:

Console.WriteLine($"Decedent Suffix: {ExampleDeathRecord.SSN}");

SecondAmericanIndianRaceCode <tt>property</tt>

Summary

Second American Indian Race Code.

Example

// Setter:

Dictionary<string, string> racecode = new Dictionary<string, string>();

racecode.Add("code", "300");

racecode.Add("system", CodeSystems.RaceCode);

racecode.Add("display", "African");

ExampleDeathRecord.SecondAmericanIndianRaceCode = racecode;

// Getter:

Console.WriteLine($"Second American Indian Race Code: {ExampleDeathRecord.SecondAmericanIndianRaceCode['display']}");

SecondAmericanIndianRaceCodeHelper <tt>property</tt>

Summary

Second American Indian Race Code Helper

Example

// Setter:

ExampleDeathRecord.SecondAmericanIndianRaceCodeHelper = VRDR.ValueSets.RaceCode.African ;

// Getter:

Console.WriteLine($"Second American Indian Race Code: {ExampleDeathRecord.SecondAmericanIndianRaceCodeHelper}");

SecondEditedRaceCode <tt>property</tt>

Summary

Second Edited Race Code.

Example

// Setter:

Dictionary<string, string> racecode = new Dictionary<string, string>();

racecode.Add("code", "300");

racecode.Add("system", CodeSystems.RaceCode);

racecode.Add("display", "African");

ExampleDeathRecord.SecondEditedRaceCode = racecode;

// Getter:

Console.WriteLine($"Second Edited Race Code: {ExampleDeathRecord.SecondEditedRaceCode['display']}");

SecondEditedRaceCodeHelper <tt>property</tt>

Summary

Second Edited Race Code Helper

Example

// Setter:

ExampleDeathRecord.SecondEditedRaceCodeHelper = VRDR.ValueSets.RaceCode.African ;

// Getter:

Console.WriteLine($"Second Edited Race Code: {ExampleDeathRecord.SecondEditedRaceCodeHelper}");

SecondOtherAsianRaceCode <tt>property</tt>

Summary

Second Other Asian Race Code.

Example

// Setter:

Dictionary<string, string> racecode = new Dictionary<string, string>();

racecode.Add("code", "300");

racecode.Add("system", CodeSystems.RaceCode);

racecode.Add("display", "African");

ExampleDeathRecord.SecondOtherAsianRaceCode = racecode;

// Getter:

Console.WriteLine($"Second Other Asian Race Code: {ExampleDeathRecord.SecondOtherAsianRaceCode['display']}");

SecondOtherAsianRaceCodeHelper <tt>property</tt>

Summary

Second Other Asian Race Code Helper

Example

// Setter:

ExampleDeathRecord.SecondOtherAsianRaceCodeHelper = VRDR.ValueSets.RaceCode.African ;

// Getter:

Console.WriteLine($"Second Other Asian Race Code: {ExampleDeathRecord.SecondOtherAsianRaceCodeHelper}");

SecondOtherPacificIslanderRaceCode <tt>property</tt>

Summary

Second Other Pacific Islander Race Code.

Example

// Setter:

Dictionary<string, string> racecode = new Dictionary<string, string>();

racecode.Add("code", "300");

racecode.Add("system", CodeSystems.RaceCode);

racecode.Add("display", "African");

ExampleDeathRecord.SecondOtherPacificIslanderRaceCode = racecode;

// Getter:

Console.WriteLine($"Second Other Pacific Islander Race Code: {ExampleDeathRecord.SecondOtherPacificIslanderRaceCode['display']}");

SecondOtherPacificIslanderRaceCodeHelper <tt>property</tt>

Summary

Second Other Pacific Islander Race Code Helper

Example

// Setter:

ExampleDeathRecord.SecondOtherPacificIslanderRaceCodeHelper = VRDR.ValueSets.RaceCode.African ;

// Getter:

Console.WriteLine($"Second Other Pacific Islander Race Code: {ExampleDeathRecord.SecondOtherPacificIslanderRaceCodeHelper}");

SecondOtherRaceCode <tt>property</tt>

Summary

Second Other Race Code.

Example

// Setter:

Dictionary<string, string> racecode = new Dictionary<string, string>();

racecode.Add("code", "300");

racecode.Add("system", CodeSystems.RaceCode);

racecode.Add("display", "African");

ExampleDeathRecord.SecondOtherRaceCode = racecode;

// Getter:

Console.WriteLine($"Second Other Race Code: {ExampleDeathRecord.SecondOtherRaceCode['display']}");

SecondOtherRaceCodeHelper <tt>property</tt>

Summary

Second Other Race Code Helper

Example

// Setter:

ExampleDeathRecord.SecondOtherRaceCodeHelper = VRDR.ValueSets.RaceCode.African ;

// Getter:

Console.WriteLine($"Second Other Race Code: {ExampleDeathRecord.SecondOtherRaceCodeHelper}");

SeventhEditedRaceCode <tt>property</tt>

Summary

Seventh Edited Race Code.

Example

// Setter:

Dictionary<string, string> racecode = new Dictionary<string, string>();

racecode.Add("code", "300");

racecode.Add("system", CodeSystems.RaceCode);

racecode.Add("display", "African");

ExampleDeathRecord.SeventhEditedRaceCode = racecode;

// Getter:

Console.WriteLine($"Seventh Edited Race Code: {ExampleDeathRecord.SeventhEditedRaceCode['display']}");

SeventhEditedRaceCodeHelper <tt>property</tt>

Summary

Seventh Edited Race Code Helper

Example

// Setter:

ExampleDeathRecord.SeventhEditedRaceCodeHelper = VRDR.ValueSets.RaceCode.African ;

// Getter:

Console.WriteLine($"Seventh Edited Race Code: {ExampleDeathRecord.SeventhEditedRaceCodeHelper}");

SexAtDeath <tt>property</tt>

Summary

Decedent's Sex at Death.

Example

// Setter:

Dictionary<string, string> sex = new Dictionary<string, string>();

sex.Add("code", "female");

sex.Add("system", "http://hl7.org/fhir/administrative-gender");

sex.Add("display", "female");

ExampleDeathRecord.SexAtDeath = sex;

// Getter:

Console.WriteLine($"Sex at Time of Death: {ExampleDeathRecord.SexAtDeath}");

SexAtDeathHelper <tt>property</tt>

Summary

Decedent's Sex At Death Helper

Example

// Setter:

ExampleDeathRecord.SexAtDeathHelper = VRDR.ValueSets.AdministrativeGender.Male;

// Getter:

Console.WriteLine($"Decedent's SexAtDeathHelper: {ExampleDeathRecord.SexAtDeathHelper}");

ShipmentNumber <tt>property</tt>

Summary

Shipment Number; TRX field with no IJE mapping

Example

// Setter:

ExampleDeathRecord.ShipmentNumber = "abc123""; // Getter: Console.WriteLine($"Shipment Number{ExampleDeathRecord.ShipmentNumber}");

SixthEditedRaceCode <tt>property</tt>

Summary

Sixth Edited Race Code.

Example

// Setter:

Dictionary<string, string> racecode = new Dictionary<string, string>();

racecode.Add("code", "300");

racecode.Add("system", CodeSystems.RaceCode);

racecode.Add("display", "African");

ExampleDeathRecord.SixthEditedRaceCode = racecode;

// Getter:

Console.WriteLine($"Sixth Edited Race Code: {ExampleDeathRecord.SixthEditedRaceCode['display']}");

SixthEditedRaceCodeHelper <tt>property</tt>

Summary

Sixth Edited Race Code Helper

Example

// Setter:

ExampleDeathRecord.SixthEditedRaceCodeHelper = VRDR.ValueSets.RaceCode.African ;

// Getter:

Console.WriteLine($"Sixth Edited Race Code: {ExampleDeathRecord.SixthEditedRaceCodeHelper}");

SpouseAlive <tt>property</tt>

Summary

Spouse Alive.

Example

// Setter:

Dictionary<string, string> code = new Dictionary<string, string>();

code.Add("code", "Y");

code.Add("system", "http://terminology.hl7.org/CodeSystem/v2-0136");

code.Add("display", "Yes");

ExampleDeathRecord.SpouseAlive = code;

// Getter:

Console.WriteLine($"Marital status: {ExampleDeathRecord.SpouseAlive["display"]}");

SpouseAliveHelper <tt>property</tt>

Summary

Decedent's SpouseAlive

Example

// Setter:

ExampleDeathRecord.SpouseAliveHelper = VRDR.ValueSets.YesNoUnknownNotApplicable.Y;

// Getter:

Console.WriteLine($"Decedent's Spouse Alive: {ExampleDeathRecord.SpouseAliveHelper}");

SpouseFamilyName <tt>property</tt>

Summary

Family name of decedent's spouse.

Example

// Setter:

ExampleDeathRecord.SpouseFamilyName = "Last";

// Getter:

Console.WriteLine($"Spouse's Last Name: {ExampleDeathRecord.SpouseFamilyName}");

SpouseGivenNames <tt>property</tt>

Summary

Given name(s) of decedent's spouse.

Example

// Setter:

string[] names = { "Spouse", "Middle" };

ExampleDeathRecord.SpouseGivenNames = names;

// Getter:

Console.WriteLine($"Spouse Given Name(s): {string.Join(", ", ExampleDeathRecord.SpouseGivenNames)}");

SpouseMaidenName <tt>property</tt>

Summary

Spouse's Maiden Name.

Example

// Setter:

ExampleDeathRecord.SpouseSuffix = "Jr.";

// Getter:

Console.WriteLine($"Spouse Suffix: {ExampleDeathRecord.SpouseSuffix}");

SpouseSuffix <tt>property</tt>

Summary

Spouse's Suffix.

Example

// Setter:

ExampleDeathRecord.SpouseSuffix = "Jr.";

// Getter:

Console.WriteLine($"Spouse Suffix: {ExampleDeathRecord.SpouseSuffix}");

StateLocalIdentifier1 <tt>property</tt>

Summary

State Local Identifier1.

Example

// Setter:

ExampleDeathRecord.StateLocalIdentifier1 = "MA";

// Getter:

Console.WriteLine($"State local identifier: {ExampleDeathRecord.StateLocalIdentifier1}");

StateLocalIdentifier2 <tt>property</tt>

Summary

State Local Identifier2.

Example

// Setter:

ExampleDeathRecord.StateLocalIdentifier2 = "YC";

// Getter:

Console.WriteLine($"State local identifier: {ExampleDeathRecord.StateLocalIdentifier1}");

StateSpecific <tt>property</tt>

Summary

State Specific Data.

Example

// Setter:

ExampleDeathRecord.StateSpecific = "Data";

// Getter:

Console.WriteLine($"State Specific Data: {ExampleDeathRecord.StateSpecific}");

Suffix <tt>property</tt>

Summary

Decedent's Suffix.

Example

// Setter:

ExampleDeathRecord.Suffix = "Jr.";

// Getter:

Console.WriteLine($"Decedent Suffix: {ExampleDeathRecord.Suffix}");

SurgeryDate <tt>property</tt>

Summary

Decedent's Surgery Date.

Example

// Setter:

ExampleDeathRecord.SurgeryDate = "2018-02-19";

// Getter:

Console.WriteLine($"Decedent Surgery Date: {ExampleDeathRecord.SurgeryDate}");

SurgeryDay <tt>property</tt>

Summary

Decedent's Day of Surgery.

Example

// Setter:

ExampleDeathRecord.SurgeryDay = 16;

// Getter:

Console.WriteLine($"Decedent Day of Surgery: {ExampleDeathRecord.SurgeryDay}");

SurgeryMonth <tt>property</tt>

Summary

Decedent's Month of Surgery.

Example

// Setter:

ExampleDeathRecord.SurgeryMonth = 6;

// Getter:

Console.WriteLine($"Decedent Month of Surgery: {ExampleDeathRecord.SurgeryMonth}");

SurgeryYear <tt>property</tt>

Summary

Decedent's Year of Surgery.

Example

// Setter:

ExampleDeathRecord.SurgeryYear = 2018;

// Getter:

Console.WriteLine($"Decedent Year of Surgery: {ExampleDeathRecord.SurgeryYear}");

ThirdEditedRaceCode <tt>property</tt>

Summary

Third Edited Race Code.

Example

// Setter:

Dictionary<string, string> racecode = new Dictionary<string, string>();

racecode.Add("code", "300");

racecode.Add("system", CodeSystems.RaceCode);

racecode.Add("display", "African");

ExampleDeathRecord.ThirdEditedRaceCode = racecode;

// Getter:

Console.WriteLine($"Third Edited Race Code: {ExampleDeathRecord.ThirdEditedRaceCode['display']}");

ThirdEditedRaceCodeHelper <tt>property</tt>

Summary

Third Edited Race Code Helper

Example

// Setter:

ExampleDeathRecord.ThirdEditedRaceCodeHelper = VRDR.ValueSets.RaceCode.African ;

// Getter:

Console.WriteLine($"Third Edited Race Code: {ExampleDeathRecord.ThirdEditedRaceCodeHelper}");

TobaccoUse <tt>property</tt>

Summary

Tobacco Use Contributed To Death.

Example

// Setter:

Dictionary<string, string> code = new Dictionary<string, string>();

code.Add("code", "373066001");

code.Add("system", CodeSystems.SCT);

code.Add("display", "Yes");

ExampleDeathRecord.TobaccoUse = code;

// Getter:

Console.WriteLine($"Tobacco Use: {ExampleDeathRecord.TobaccoUse['display']}");

TobaccoUseHelper <tt>property</tt>

Summary

Tobacco Use Helper. This is a convenience method, to access the code use TobaccoUse instead.

Example

// Setter:

ExampleDeathRecord.TobaccoUseHelper = "N";

// Getter:

Console.WriteLine($"Tobacco Use: {ExampleDeathRecord.TobaccoUseHelper}");

TransaxConversion <tt>property</tt>

Summary

Transax Conversion Flag

Example

// Setter:

Dictionary<string, string> tcf = new Dictionary<string, string>();

tcf.Add("code", "3");

tcf.Add("system", CodeSystems.TransaxConversion);

tcf.Add("display", "Conversion using non-ambivalent table entries");

ExampleDeathRecord.TransaxConversion = tcf;

// Getter:

Console.WriteLine($"Transax Conversion Code: {ExampleDeathRecord.TransaxConversion}");

TransaxConversionHelper <tt>property</tt>

Summary

TransaxConversion Helper.

Example

// Setter:

ExampleDeathRecord.TransaxConversionHelper = ValueSets.TransaxConversion.Conversion_Using_Non_Ambivalent_Table_Entries;

// Getter:

Console.WriteLine($"Filing Format: {ExampleDeathRecord.TransaxConversionHelper}");

TransportationRole <tt>property</tt>

Summary

Transportation Role in death.

Example

// Setter:

Dictionary<string, string> code = new Dictionary<string, string>();

code.Add("code", "257500003");

code.Add("system", CodeSystems.SCT);

code.Add("display", "Passenger");

ExampleDeathRecord.TransportationRole = code;

// Getter:

Console.WriteLine($"Transportation Role: {ExampleDeathRecord.TransportationRole['display']}");

TransportationRoleHelper <tt>property</tt>

Summary

Transportation Role in death helper.

Example

// Setter:

ExampleDeathRecord.TransportationRoleHelper = VRDR.TransportationRoles.Passenger;

// Getter:

Console.WriteLine($"Transportation Role: {ExampleDeathRecord.TransportationRoleHelper");

UsualIndustry <tt>property</tt>

Summary

Decedent's Usual Industry (Text).

Example

// Setter:

ExampleDeathRecord.UsualIndustry = "Accounting";

// Getter:

Console.WriteLine($"Usual Industry: {ExampleDeathRecord.UsualIndustry}");

UsualOccupation <tt>property</tt>

Summary

Decedent's Usual Occupation.

Example

// Setter:

ExampleDeathRecord.UsualOccupation = "Biomedical engineering";

// Getter:

Console.WriteLine($"Usual Occupation: {ExampleDeathRecord.UsualOccupation}");

GetBundle() <tt>method</tt>

Summary

Helper method to return a the bundle.

Returns

a FHIR Bundle

Parameters

This method has no parameters.

GetCauseOfDeathCodedContentBundle() <tt>method</tt>

Summary

Helper method to return the subset of this record that makes up a CauseOfDeathCodedContent bundle.

Returns

a new FHIR Bundle

Parameters

This method has no parameters.

GetDeathCertificateDocumentBundle() <tt>method</tt>

Summary

Helper method to return the bundle that makes up a CauseOfDeathCodedContent bundle. This is actually the complete DeathRecord Bundle accessible via a method name that aligns with the other specific GetBundle methods (GetCauseOfDeathCodedContentBundle and GetDemographicCodedContentBundle).

Returns

a FHIR Bundle

Parameters

This method has no parameters.

GetDemographicCodedContentBundle() <tt>method</tt>

Summary

Helper method to return the subset of this record that makes up a DemographicCodedContent bundle.

Returns

a new FHIR Bundle

Parameters

This method has no parameters.

ToDescription() <tt>method</tt>

Summary

Returns a JSON encoded structure that maps to the various property annotations found in the DeathRecord class. This is useful for scenarios where you may want to display the data in user interfaces.

Returns

a string representation of this Death Record in a descriptive format.

Parameters

This method has no parameters.

ToJSON() <tt>method</tt>

Summary

Helper method to return a JSON string representation of this Death Record.

Returns

a string representation of this Death Record in JSON format

Parameters

This method has no parameters.

ToJson() <tt>method</tt>

Summary

Helper method to return a JSON string representation of this Death Record.

Returns

a string representation of this Death Record in JSON format

Parameters

This method has no parameters.

ToXML() <tt>method</tt>

Summary

Helper method to return a XML string representation of this Death Record.

Returns

a string representation of this Death Record in XML format

Parameters

This method has no parameters.

ToXml() <tt>method</tt>

Summary

Helper method to return a XML string representation of this Death Record.

Returns

a string representation of this Death Record in XML format

Parameters

This method has no parameters.

IJEMortality <tt>type</tt>

Namespace

VRDR

Summary

A "wrapper" class to convert between a FHIR based DeathRecord and a record in IJE Mortality format. Each property of this class corresponds exactly with a field in the IJE Mortality format. The getters convert from the embedded FHIR based DeathRecord to the IJE format for a specific field, and the setters convert from IJE format for a specific field and set that value on the embedded FHIR based DeathRecord.

#ctor() <tt>constructor</tt>

Summary

Constructor that takes a DeathRecord.

Parameters

This constructor has no parameters.

#ctor() <tt>constructor</tt>

Summary

Constructor that takes an IJE string and builds a corresponding internal DeathRecord.

Parameters

This constructor has no parameters.

#ctor() <tt>constructor</tt>

Summary

Constructor that creates a completely empty record for constructing records using the IJE properties.

Parameters

This constructor has no parameters.

dataLookup <tt>constants</tt>

Summary

IJE data lookup helper. Thread-safe singleton!

mre <tt>constants</tt>

Summary

Utility location to provide support for setting MRE-only fields that have no mapping in IJE when creating coding response records

record <tt>constants</tt>

Summary

FHIR based death record.

trx <tt>constants</tt>

Summary

Utility location to provide support for setting TRX-only fields that have no mapping in IJE when creating coding response records

validationErrors <tt>constants</tt>

Summary

Validation errors encountered while converting a record

ACME_UC <tt>property</tt>

Summary

ACME Underlying Cause

ADDRESS_D <tt>property</tt>

Summary

Long String address for place of death

ADDRESS_R <tt>property</tt>

Summary

Long string address for decedent's place of residence same as above but allows states to choose the way they capture information.

AGE <tt>property</tt>

Summary

Decedent's Age–Units

AGETYPE <tt>property</tt>

Summary

Decedent's Age–Type

AGE_BYPASS <tt>property</tt>

Summary

Decedent's Age–Edit Flag

ALIAS <tt>property</tt>

Summary

Decedent's Legal Name–Alias

ARMEDF <tt>property</tt>

Summary

Decedent ever served in Armed Forces?

AUTOP <tt>property</tt>

Summary

Was Autopsy performed

AUTOPF <tt>property</tt>

Summary

Were Autopsy Findings Available to Complete the Cause of Death?

AUXNO <tt>property</tt>

Summary

Auxiliary State file number

AUXNO2 <tt>property</tt>

Summary

Auxiliary State file number

BCNO <tt>property</tt>

Summary

Infant Death/Birth Linking - birth certificate number

BLANK1 <tt>property</tt>

Summary

For possible future change in transax

BLANK2 <tt>property</tt>

Summary

Blank for future expansion

BLANK3 <tt>property</tt>

Summary

Blank for Jurisdictional Use Only

BPLACE_CNT <tt>property</tt>

Summary

Birthplace–Country

BPLACE_ST <tt>property</tt>

Summary

State, U.S. Territory or Canadian Province of Birth - code

BSTATE <tt>property</tt>

Summary

Infant Death/Birth Linking - Birth state

CERTADDRESS <tt>property</tt>

Summary

Long string address for Certifier same as above but allows states to choose the way they capture information.

CERTCITYTEXT <tt>property</tt>

Summary

Certifier - City or Town name

CERTDATE <tt>property</tt>

Summary

Certifier Date Signed

CERTFIRST <tt>property</tt>

Summary

Certifier's First Name

CERTL <tt>property</tt>

Summary

Title of Certifier

CERTLAST <tt>property</tt>

Summary

Certifier's Last Name

CERTMIDDLE <tt>property</tt>

Summary

Certifier's Middle Name

CERTPOSTDIR <tt>property</tt>

Summary

Certifier - Post Directional

CERTPREDIR <tt>property</tt>

Summary

Certifier - Pre Directional

CERTSTATE <tt>property</tt>

Summary

State, U.S. Territory or Canadian Province of Certifier - literal

CERTSTATECD <tt>property</tt>

Summary

State, U.S. Territory or Canadian Province of Certifier - code

CERTSTNUM <tt>property</tt>

Summary

Certifier - Street number

CERTSTRDESIG <tt>property</tt>

Summary

Certifier - Street designator

CERTSTRNAME <tt>property</tt>

Summary

Certifier - Street name

CERTSUFFIX <tt>property</tt>

Summary

Certifier's Suffix Name

CERTUNITNUM <tt>property</tt>

Summary

Certifier - Unit or apt number

CERTZIP <tt>property</tt>

Summary

Certifier - Zip

CITYC <tt>property</tt>

Summary

Decedent's Residence–City

CITYCODE_D <tt>property</tt>

Summary

Place of death. City FIPS code

CITYCODE_I <tt>property</tt>

Summary

Town/city of Injury code

CITYTEXT_D <tt>property</tt>

Summary

Place of death. City or Town name

CITYTEXT_I <tt>property</tt>

Summary

Town/city of Injury - literal

CITYTEXT_R <tt>property</tt>

Summary

Decedent's Residence - City or Town name

COD <tt>property</tt>

Summary

County of Death Occurrence

COD1A <tt>property</tt>

Summary

Cause of Death Part I Line a

COD1B <tt>property</tt>

Summary

Cause of Death Part I Line b

COD1C <tt>property</tt>

Summary

Cause of Death Part I Line c

COD1D <tt>property</tt>

Summary

Cause of Death Part I Line d

COUNTRYC <tt>property</tt>

Summary

Decedent's Residence–Country

COUNTRYTEXT_R <tt>property</tt>

Summary

Decedent's Residence - COUNTRY name

COUNTYC <tt>property</tt>

Summary

Decedent's Residence–County

COUNTYCODE_I <tt>property</tt>

Summary

County of Injury code

COUNTYTEXT_D <tt>property</tt>

Summary

Place of death. County of Death

COUNTYTEXT_I <tt>property</tt>

Summary

County of Injury - literal

COUNTYTEXT_R <tt>property</tt>

Summary

Decedent's Residence - County

DBPLACECITY <tt>property</tt>

Summary

Decedent's Birth Place City - Literal

DBPLACECITYCODE <tt>property</tt>

Summary

Decedent's Birth Place City - Code

DDADF <tt>property</tt>

Summary

Father's First Name

DDADMID <tt>property</tt>

Summary

Father's Middle Name

DEDUC <tt>property</tt>

Summary

Decedent's Education

DEDUC_BYPASS <tt>property</tt>

Summary

Decedent's Education–Edit Flag

DETHNIC1 <tt>property</tt>

Summary

Decedent of Hispanic Origin?–Mexican

DETHNIC2 <tt>property</tt>

Summary

Decedent of Hispanic Origin?–Puerto Rican

DETHNIC3 <tt>property</tt>

Summary

Decedent of Hispanic Origin?–Cuban

DETHNIC4 <tt>property</tt>

Summary

Decedent of Hispanic Origin?–Other

DETHNIC5 <tt>property</tt>

Summary

Decedent of Hispanic Origin?–Other, Literal

DETHNIC5C <tt>property</tt>

Summary

Hispanic Code for Literal

DETHNICE <tt>property</tt>

Summary

Hispanic

DINSTI <tt>property</tt>

Summary

Death Institution name

DISP <tt>property</tt>

Summary

Method of Disposition

DISPCITY <tt>property</tt>

Summary

Disposition City - Literal

DISPCITYCODE <tt>property</tt>

Summary

Disposition City - Code

DISPSTATE <tt>property</tt>

Summary

Disposition State or Territory - Literal

DISPSTATECD <tt>property</tt>

Summary

State, U.S. Territory or Canadian Province of Disposition - code

DMAIDEN <tt>property</tt>

Summary

Decedent's Maiden Name

DMIDDLE <tt>property</tt>

Summary

Middle Name of Decedent

DMOMF <tt>property</tt>

Summary

Mother's First Name

DMOMMDN <tt>property</tt>

Summary

Mother's Maiden Surname

DMOMMID <tt>property</tt>

Summary

Mother's Middle Name

DOB_DY <tt>property</tt>

Summary

Date of Birth–Day

DOB_MO <tt>property</tt>

Summary

Date of Birth–Month

DOB_YR <tt>property</tt>

Summary

Date of Birth–Year

DOD_DY <tt>property</tt>

Summary

Date of Death–Day

DOD_MO <tt>property</tt>

Summary

Date of Death–Month

DOD_YR <tt>property</tt>

Summary

Date of Death–Year

DOI_DY <tt>property</tt>

Summary

Date of injury–day

DOI_MO <tt>property</tt>

Summary

Date of injury–month

DOI_YR <tt>property</tt>

Summary

Date of injury–year

DOR_DY <tt>property</tt>

Summary

Date of Registration–Day

DOR_MO <tt>property</tt>

Summary

Date of Registration–Month

DOR_YR <tt>property</tt>

Summary

Date of Registration–Year

DPLACE <tt>property</tt>

Summary

Place of Death

DSTATE <tt>property</tt>

Summary

State, U.S. Territory or Canadian Province of Death - code

DTHCOUNTRY <tt>property</tt>

Summary

Country of Death - Literal

DTHCOUNTRYCD <tt>property</tt>

Summary

Country of Death - Code

EAC <tt>property</tt>

Summary

Entity-axis codes

FATHERSUFFIX <tt>property</tt>

Summary

Father's Suffix

FILEDATE <tt>property</tt>

Summary

Date Filed

FILENO <tt>property</tt>

Summary

Certificate Number

FILLER2 <tt>property</tt>

Summary

FILLER 2 for expansion

FLNAME <tt>property</tt>

Summary

Father's Surname

FUNCITYTEXT <tt>property</tt>

Summary

Funeral Facility - City or Town name

FUNFACADDRESS <tt>property</tt>

Summary

Long string address for Funeral Facility same as above but allows states to choose the way they capture information.

FUNFACNAME <tt>property</tt>

Summary

Funeral Facility Name

FUNFACPREDIR <tt>property</tt>

Summary

Funeral Facility - Pre Directional

FUNFACSTNUM <tt>property</tt>

Summary

Funeral Facility - Street number

FUNFACSTRDESIG <tt>property</tt>

Summary

Funeral Facility - Street designator

FUNFACSTRNAME <tt>property</tt>

Summary

Funeral Facility - Street name

FUNPOSTDIR <tt>property</tt>

Summary

Funeral Facility - Post Directional

FUNSTATE <tt>property</tt>

Summary

State, U.S. Territory or Canadian Province of Funeral Facility - literal

FUNSTATECD <tt>property</tt>

Summary

State, U.S. Territory or Canadian Province of Funeral Facility - code

FUNUNITNUM <tt>property</tt>

Summary

Funeral Facility - Unit or apt number

FUNZIP <tt>property</tt>

Summary

Funeral Facility - ZIP

GNAME <tt>property</tt>

Summary

Decedent's Legal Name–Given

HISPOLDC <tt>property</tt>

Summary

Hispanic - old NCHS single ethnicity codes

HISPSTSP <tt>property</tt>

Summary

Hispanic Origin - Specify

HOWINJ <tt>property</tt>

Summary

Describe How Injury Occurred

IDOB_YR <tt>property</tt>

Summary

Infant Death/Birth Linking - year of birth

INACT <tt>property</tt>

Summary

Activity at time of death (computer generated)

INDUST <tt>property</tt>

Summary

Industry – Literal (OPTIONAL)

INDUSTC <tt>property</tt>

Summary

Industry – Code

INDUSTC4 <tt>property</tt>

Summary

Industry – 4 digit Code (OPTIONAL)

INFORMRELATE <tt>property</tt>

Summary

Informant's Relationship

INJPL <tt>property</tt>

Summary

Place of Injury (computer generated)

INTERVAL1A <tt>property</tt>

Summary

Cause of Death Part I Interval, Line a

INTERVAL1B <tt>property</tt>

Summary

Cause of Death Part I Interval, Line b

INTERVAL1C <tt>property</tt>

Summary

Cause of Death Part I Interval, Line c

INTERVAL1D <tt>property</tt>

Summary

Cause of Death Part I Interval, Line d

INT_REJ <tt>property</tt>

Summary

Intentional Reject

LAT_D <tt>property</tt>

Summary

Place of Death. Latitude

LAT_I <tt>property</tt>

Summary

Place of injury. Latitude

LIMITS <tt>property</tt>

Summary

Decedent's Residence–Inside City Limits

LNAME <tt>property</tt>

Summary

Decedent's Legal Name–Last

LONG_D <tt>property</tt>

Summary

Place of death. Longitude

LONG_I <tt>property</tt>

Summary

Place of injury. Longitude

MANNER <tt>property</tt>

Summary

Manner of Death

MAN_UC <tt>property</tt>

Summary

Manual Underlying Cause

MARITAL <tt>property</tt>

Summary

Marital Status

MARITAL_BYPASS <tt>property</tt>

Summary

Marital Status–Edit Flag

MARITAL_DESCRIP <tt>property</tt>

Summary

Marital Descriptor

MFILED <tt>property</tt>

Summary

Source flag: paper/electronic

MNAME <tt>property</tt>

Summary

Decedent's Legal Name–Middle

MOTHERSSUFFIX <tt>property</tt>

Summary

Mother's Suffix

NCHSBRIDGE <tt>property</tt>

Summary

Bridged Race

OCCUP <tt>property</tt>

Summary

Occupation – Literal (OPTIONAL)

OCCUPC <tt>property</tt>

Summary

Occupation – Code

OCCUPC4 <tt>property</tt>

Summary

Occupation – 4 digit Code (OPTIONAL)

OLDEDUC <tt>property</tt>

Summary

Old NCHS education code if collected - receiving state will recode as they prefer

OTHERCONDITION <tt>property</tt>

Summary

Cause of Death Part II

PLACE1_1 <tt>property</tt>

Summary

Blank for One-Byte Field 1

PLACE1_2 <tt>property</tt>

Summary

Blank for One-Byte Field 2

PLACE1_3 <tt>property</tt>

Summary

Blank for One-Byte Field 3

PLACE1_4 <tt>property</tt>

Summary

Blank for One-Byte Field 4

PLACE1_5 <tt>property</tt>

Summary

Blank for One-Byte Field 5

PLACE1_6 <tt>property</tt>

Summary

Blank for One-Byte Field 6

PLACE20 <tt>property</tt>

Summary

Blank for Twenty-Byte Field

PLACE8_1 <tt>property</tt>

Summary

Blank for Eight-Byte Field 1

PLACE8_2 <tt>property</tt>

Summary

Blank for Eight-Byte Field 2

PLACE8_3 <tt>property</tt>

Summary

Blank for Eight-Byte Field 3

POILITRL <tt>property</tt>

Summary

Place of Injury- literal

POSTDIR_D <tt>property</tt>

Summary

Place of death. Post Directional

POSTDIR_R <tt>property</tt>

Summary

Post Directional

PPDATESIGNED <tt>property</tt>

Summary

Person Pronouncing Date Signed

PPTIME <tt>property</tt>

Summary

Person Pronouncing Time Pronounced

PREDIR_D <tt>property</tt>

Summary

Place of death. Pre Directional

PREDIR_R <tt>property</tt>

Summary

Pre directional

PREG <tt>property</tt>

Summary

Pregnancy

PREG_BYPASS <tt>property</tt>

Summary

If Female–Edit Flag: From EDR only

RAC <tt>property</tt>

Summary

Record-axis codes

RACE1 <tt>property</tt>

Summary

Decedent's Race–White

RACE10 <tt>property</tt>

Summary

Decedent's Race–Other Asian

RACE11 <tt>property</tt>

Summary

Decedent's Race–Native Hawaiian

RACE12 <tt>property</tt>

Summary

Decedent's Race–Guamanian or Chamorro

RACE13 <tt>property</tt>

Summary

Decedent's Race–Samoan

RACE14 <tt>property</tt>

Summary

Decedent's Race–Other Pacific Islander

RACE15 <tt>property</tt>

Summary

Decedent's Race–Other

RACE16 <tt>property</tt>

Summary

Decedent's Race–First American Indian or Alaska Native Literal

RACE16C <tt>property</tt>

Summary

First American Indian Code

RACE17 <tt>property</tt>

Summary

Decedent's Race–Second American Indian or Alaska Native Literal

RACE17C <tt>property</tt>

Summary

Second American Indian Code

RACE18 <tt>property</tt>

Summary

Decedent's Race–First Other Asian Literal

RACE18C <tt>property</tt>

Summary

First Other Asian Code

RACE19 <tt>property</tt>

Summary

Decedent's Race–Second Other Asian Literal

RACE19C <tt>property</tt>

Summary

Second Other Asian Code

RACE1E <tt>property</tt>

Summary

First Edited Code

RACE2 <tt>property</tt>

Summary

Decedent's Race–Black or African American

RACE20 <tt>property</tt>

Summary

Decedent's Race–First Other Pacific Islander Literal

RACE20C <tt>property</tt>

Summary

First Other Pacific Islander Code

RACE21 <tt>property</tt>

Summary

Decedent's Race–Second Other Pacific Islander Literalr

RACE21C <tt>property</tt>

Summary

Second Other Pacific Islander Code

RACE22 <tt>property</tt>

Summary

Decedent's Race–First Other Literal

RACE22C <tt>property</tt>

Summary

First Other Race Code

RACE23 <tt>property</tt>

Summary

Decedent's Race–Second Other Literal

RACE23C <tt>property</tt>

Summary

Second Other Race Code

RACE2E <tt>property</tt>

Summary

Second Edited Code

RACE3 <tt>property</tt>

Summary

Decedent's Race–American Indian or Alaska Native

RACE3E <tt>property</tt>

Summary

Third Edited Code

RACE4 <tt>property</tt>

Summary

Decedent's Race–Asian Indian

RACE4E <tt>property</tt>

Summary

Fourth Edited Code

RACE5 <tt>property</tt>

Summary

Decedent's Race–Chinese

RACE5E <tt>property</tt>

Summary

Fifth Edited Code

RACE6 <tt>property</tt>

Summary

Decedent's Race–Filipino

RACE6E <tt>property</tt>

Summary

Sixth Edited Code

RACE7 <tt>property</tt>

Summary

Decedent's Race–Japanese

RACE7E <tt>property</tt>

Summary

Seventh Edited Code

RACE8 <tt>property</tt>

Summary

Decedent's Race–Korean

RACE8E <tt>property</tt>

Summary

Eighth Edited Code

RACE9 <tt>property</tt>

Summary

Decedent's Race–Vietnamese

RACEOLDC <tt>property</tt>

Summary

Race - old NCHS single race codes

RACESTSP <tt>property</tt>

Summary

Race - Specify

RACE_MVR <tt>property</tt>

Summary

Decedent's Race–Missing

REFERRED <tt>property</tt>

Summary

Was case Referred to Medical Examiner/Coroner?

REPLACE <tt>property</tt>

Summary

Replacement Record – suggested codes

RESCON <tt>property</tt>

Summary

Old NCHS residence city/county combo code

RESSTATE <tt>property</tt>

Summary

Old NCHS residence state code

R_DY <tt>property</tt>

Summary

Receipt date – Day

R_MO <tt>property</tt>

Summary

Receipt date – Month

R_YR <tt>property</tt>

Summary

Receipt date – Year

SEX <tt>property</tt>

Summary

Sex

SEX_BYPASS <tt>property</tt>

Summary

Sex–Edit Flag

SPOUSEF <tt>property</tt>

Summary

Spouse's First Name

SPOUSEL <tt>property</tt>

Summary

Husband's Surname/Wife's Maiden Last Name

SPOUSELV <tt>property</tt>

Summary

Decedent's spouse living at decedent's DOD?

SPOUSEMIDNAME <tt>property</tt>

Summary

Spouse's Middle Name

SPOUSESUFFIX <tt>property</tt>

Summary

Spouse's Suffix

SSADATETRANS <tt>property</tt>

Summary

SSA Date of State Transmission

SSADATEVER <tt>property</tt>

Summary

SSA Date of SSN Verification

SSADTHCODE <tt>property</tt>

Summary

SSA State Source of Death

SSAFOREIGN <tt>property</tt>

Summary

SSA Foreign Country Indicator

SSAVERIFY <tt>property</tt>

Summary

SSA EDR Verify Code

SSN <tt>property</tt>

Summary

Social Security Number

STATEBTH <tt>property</tt>

Summary

State, U.S. Territory or Canadian Province of Birth - literal

STATEC <tt>property</tt>

Summary

State, U.S. Territory or Canadian Province of Decedent's residence - code

STATECODE_I <tt>property</tt>

Summary

State, U.S. Territory or Canadian Province of Injury - code

STATESP <tt>property</tt>

Summary

State Specific Data

STATETEXT_D <tt>property</tt>

Summary

Place of death. State name literal

STATETEXT_R <tt>property</tt>

Summary

Decedent's Residence - State name

STDESIG_D <tt>property</tt>

Summary

Place of death. Street designator

STDESIG_R <tt>property</tt>

Summary

Street designator

STINJURY <tt>property</tt>

Summary

State, U.S. Territory or Canadian Province of Injury - literal

STNAME_D <tt>property</tt>

Summary

Place of death. Street name

STNAME_R <tt>property</tt>

Summary

Street name

STNUM_D <tt>property</tt>

Summary

Place of death. Street number

STNUM_R <tt>property</tt>

Summary

Place of death. City FIPS code

SUFF <tt>property</tt>

Summary

Decedent's Legal Name–Suffix

SUR_DY <tt>property</tt>

Summary

Surgery Date–day

SUR_MO <tt>property</tt>

Summary

Surgery Date–month

SUR_YR <tt>property</tt>

Summary

Surgery Date–year

SYS_REJ <tt>property</tt>

Summary

Acme System Reject Codes

TOBAC <tt>property</tt>

Summary

Did Tobacco Use Contribute to Death?

TOD <tt>property</tt>

Summary

Time of Death

TOI_HR <tt>property</tt>

Summary

Time of injury

TOI_UNIT <tt>property</tt>

Summary

Time of Injury Unit

TRANSPRT <tt>property</tt>

Summary

If Transportation Accident, Specify

TRX_FLG <tt>property</tt>

Summary

Transax conversion flag: Computer Generated

UNITNUM_R <tt>property</tt>

Summary

Unit number

VOID <tt>property</tt>

Summary

Void flag

WORKINJ <tt>property</tt>

Summary

Time of injury

ZIP9_D <tt>property</tt>

Summary

Place of death. Zip code

ZIP9_R <tt>property</tt>

Summary

Decedent's Residence - ZIP code