Skip to content

Commit 2289973

Browse files
committed
Update two common encounter codes for relevancy
1 parent 2cc0a62 commit 2289973

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+257
-257
lines changed

src/main/java/org/mitre/synthea/export/FhirDstu2.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -535,7 +535,7 @@ private static Entry encounter(Person person, Entry personEntry,
535535
encounterResource.setStatus(EncounterStateEnum.FINISHED);
536536
if (encounter.codes.isEmpty()) {
537537
// wellness encounter
538-
encounterResource.addType().addCoding().setCode("185349003")
538+
encounterResource.addType().addCoding().setCode("86013001")
539539
.setDisplay("Encounter for check up").setSystem(SNOMED_URI);
540540
} else {
541541
Code code = encounter.codes.get(0);

src/main/java/org/mitre/synthea/export/FhirR4.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -900,7 +900,7 @@ private static BundleEntryComponent encounter(Person person, BundleEntryComponen
900900
encounterResource.setStatus(EncounterStatus.FINISHED);
901901
if (encounter.codes.isEmpty()) {
902902
// wellness encounter
903-
encounterResource.addType().addCoding().setCode("185349003")
903+
encounterResource.addType().addCoding().setCode("86013001")
904904
.setDisplay("Encounter for check up").setSystem(SNOMED_URI);
905905
} else {
906906
Code code = encounter.codes.get(0);

src/main/java/org/mitre/synthea/export/FhirStu3.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -583,7 +583,7 @@ private static BundleEntryComponent encounter(Person person, BundleEntryComponen
583583
encounterResource.setStatus(EncounterStatus.FINISHED);
584584
if (encounter.codes.isEmpty()) {
585585
// wellness encounter
586-
encounterResource.addType().addCoding().setCode("185349003")
586+
encounterResource.addType().addCoding().setCode("86013001")
587587
.setDisplay("Encounter for check up").setSystem(SNOMED_URI);
588588

589589
} else {

src/main/java/org/mitre/synthea/export/TextExporter.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@
7171
* 2017-11-01 : Body Height 181.6 cm
7272
* --------------------------------------------------------------------------------
7373
* ENCOUNTERS:
74-
* 2017-11-01 : Encounter for check up (procedure)
74+
* 2017-11-01 : Periodic reevaluation and management of healthy individual (procedure)
7575
* 2016-12-28 : Encounter for Viral sinusitis (disorder)
76-
* 2016-10-26 : Encounter for check up (procedure)
76+
* 2016-10-26 : Periodic reevaluation and management of healthy individual (procedure)
7777
* </pre>
7878
7979
* Exporter for a simple human-readable text format per encounter.

src/main/java/org/mitre/synthea/modules/EncounterModule.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ public final class EncounterModule extends Module {
3434
public static final int EMERGENCY_SYMPTOM_THRESHOLD = 500;
3535
public static final String LAST_VISIT_SYMPTOM_TOTAL = "last_visit_symptom_total";
3636

37-
public static final Code ENCOUNTER_CHECKUP = new Code("SNOMED-CT", "185349003",
38-
"Encounter for check up (procedure)");
37+
public static final Code ENCOUNTER_CHECKUP = new Code("SNOMED-CT", "86013001",
38+
"Periodic reevaluation and management of healthy individual (procedure)");
3939
public static final Code ENCOUNTER_EMERGENCY = new Code("SNOMED-CT", "50849002",
4040
"Emergency room admission (procedure)");
4141
public static final Code WELL_CHILD_VISIT = new Code("SNOMED-CT", "410620009",

src/main/resources/costs/encounters.csv

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
CODE,MIN,MODE,MAX,COMMENTS
22
185317003,75,75,75,Telephone encounter (procedure) - Prior costs update source
33
185345009,75,75,75,Encounter for symptom - Prior costs update source
4-
185347001,75,75,75,Encounter for problem - Prior costs update source
5-
185349003,75,75,75,Encounter for 'check-up' - Prior costs update source
4+
281036007,75,75,75,Follow-up consultation (procedure) - Prior costs update source
5+
86013001,75,75,75,Periodic reevaluation and management of healthy individual (procedure) - Prior costs update source
66
185389009,75,75,75,Follow-up visit (encounter) - Prior costs update source
77
183452005,75,75,75,Encounter Inpatient - Prior costs update source
88
270427003,75,75,75,Patient-initiated encounter - Prior costs update source

src/main/resources/modules/acute_myeloid_leukemia.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -386,8 +386,8 @@
386386
"codes": [
387387
{
388388
"system": "SNOMED-CT",
389-
"code": "185347001",
390-
"display": "Encounter for problem (procedure)"
389+
"code": "281036007",
390+
"display": "Follow-up consultation (procedure)"
391391
}
392392
],
393393
"direct_transition": "Wait for Treatment"

src/main/resources/modules/allergies.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,8 @@
101101
"codes": [
102102
{
103103
"system": "SNOMED-CT",
104-
"code": "185347001",
105-
"display": "Encounter for problem (procedure)"
104+
"code": "281036007",
105+
"display": "Follow-up consultation (procedure)"
106106
}
107107
],
108108
"conditional_transition": [

src/main/resources/modules/anemia/anemia_sub.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -265,8 +265,8 @@
265265
"codes": [
266266
{
267267
"system": "SNOMED-CT",
268-
"code": "185347001",
269-
"display": "Encounter for problem (procedure)"
268+
"code": "281036007",
269+
"display": "Follow-up consultation (procedure)"
270270
}
271271
],
272272
"conditional_transition": [
@@ -1010,8 +1010,8 @@
10101010
"codes": [
10111011
{
10121012
"system": "SNOMED-CT",
1013-
"code": "185347001",
1014-
"display": "Encounter for problem (procedure)"
1013+
"code": "281036007",
1014+
"display": "Follow-up consultation (procedure)"
10151015
}
10161016
],
10171017
"conditional_transition": [

src/main/resources/modules/appendicitis.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -262,8 +262,8 @@
262262
"codes": [
263263
{
264264
"system": "SNOMED-CT",
265-
"code": "185347001",
266-
"display": "Encounter for problem (procedure)"
265+
"code": "281036007",
266+
"display": "Follow-up consultation (procedure)"
267267
}
268268
],
269269
"direct_transition": "Appendectomy"

0 commit comments

Comments
 (0)