HL7 FHIR® Implementation Guide: Electronic Case Reporting (eCR) - US Realm
2.1.1 - STU 2.1.1 United States of America flag

HL7 FHIR® Implementation Guide: Electronic Case Reporting (eCR) - US Realm, published by HL7 International / Public Health. This guide is not an authorized publication; it is the continuous build for version 2.1.1 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/HL7/case-reporting/ and changes regularly. See the Directory of published versions

Bundle: eRSD Supplemental Bundle Example

Bundle bundle-ersd-supplemental-example of type collection


Entry 1 - fullUrl = http://hl7.org/fhir/us/ecr/Library/library-ersd-supplemental-library-example

Resource Library:

Related Artifacts

Composed OfRule Filters
Composed OfUS Public Health Supplemental ValueSet Library Example
Composed OfeRSD Jurisdictions Example


Entry 2 - fullUrl = http://hl7.org/fhir/us/ecr/Library/RuleFilters

Resource Library:

Id: library-RuleFilters-1.0.0
Type: logic-library
Version: 1.0.0
Status: active
Data Requirements:

type: ValueSet

type: Observation

type: Encounter

type: Location

type: CodeSystem

type: Organization

type: Organization

Content: type: text/cql
                            library RuleFilters version '2.1.0'

          using FHIR version '4.0.1'

          include FHIRHelpers version '4.0.1'

          codesystem "LOINC": 'http://loinc.org'
          codesystem "UsageContext": 'http://hl7.org/fhir/us/ecr/CodeSystem/us-ph-usage-context-type'
          codesystem "JurisdictionsList": 'http://hl7.org/fhir/us/ecr/CodeSystem/ersd-jurisdictions-example'

          // Overall triggering value sets, groupings of all condition-specific value sets, grouped by representation in the information model
          valueset "Diagnosis Trigger Codes": 'http://hl7.org/fhir/us/ecr/ValueSet/valueset-dxtc-example'
          valueset "Medication Trigger Codes": 'http://hl7.org/fhir/us/ecr/ValueSet/valueset-mrtc-example'
          valueset "Laboratory Order Trigger Codes": 'http://hl7.org/fhir/us/ecr/ValueSet/valueset-lotc-example'
          valueset "Laboratory Result Trigger Codes": 'http://hl7.org/fhir/us/ecr/ValueSet/valueset-lrtc-example'
          valueset "Organism Substance Trigger Codes": 'http://hl7.org/fhir/us/ecr/ValueSet/valueset-ostc-example'
          valueset "Procedure Trigger Codes": 'http://hl7.org/fhir/us/ecr/ValueSet/valueset-pctc-example'
          valueset "Suspected Disorder Trigger Codes": 'http://hl7.org/fhir/us/ecr/ValueSet/valueset-sdtc-example'

          // Condition-specific triggering codes, these would be listed for each condition
          valueset "Chlamydia Laboratory Result Trigger Codes": 'http://hl7.org/fhir/us/ecr/ValueSet/valueset-chlamydia-example'

          // Supplemental (or operational) value sets used in suspected reportability determination logic
          valueset "Indeterminate or Equivocal Lab Result Value": 'http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1146.1035'
          valueset "Negative or Undetected Lab Result Value": 'http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1146.1034'

          code "eICRComposition": '55751-2' from "LOINC"

          parameter "Triggering Encounter" Encounter
          parameter "normalReportingDuration" default 14 days

          context Patient

          define "Chlamydia Test Results":
            [Observation: "Chlamydia Laboratory Result Trigger Codes"] O
              where O.status in { 'registered', 'preliminary', 'final', 'amended', 'corrected' }

          define "Triggering Encounters":
            [Encounter] E

          define "Encounter Location References":
            flatten("Triggering Encounters" TriggeringEncounter
              return TriggeringEncounter.location.location)

          define "Locations Matching Encounter Location References":
            [Location] Location
              where exists (
                  "Encounter Location References" LocationReference
                    where ('Location/' + Location.id) ~ LocationReference.reference
                )

          define "Encounter Location Address":
            "Locations Matching Encounter Location References" Address
              return Tuple { state: Address.address.state,  postalCode: Address.address.postalCode }

          define "Patient Address":
            Patient.address PA
            return Tuple { state: PA.state, postalCode: PA.postalCode }

          define "Jurisdictions":
            flatten([CodeSystem] C
              return C.concept Cpt
                return Tuple { jurisdictionCode: Cpt.code,
                  definition: Cpt.definition,
                  jurisdictionType: Cpt.property P where P.code='type' return P.value as FHIR.string,
                  stateCode: Cpt.property P where P.code = 'state' return P.value as FHIR.code,
                  postalCode: Cpt.property P where P.code = 'postalcode' return P.value as FHIR.code
                  })

          define "Encounter Address Postal Code is in Jurisdiction Codes":
            "Jurisdictions" J
              with "Encounter Location Address" LocationAddress
                such that LocationAddress.postalCode in J.postalCode

          define "Encounter Address State is in Jurisdiction Codes":
              "Jurisdictions" J
                with "Encounter Location Address" LocationAddress
                  such that LocationAddress.state in J.stateCode
                    and 'STATE' in J.jurisdictionType

          define "Patient Address Postal Code is in Jurisdiction Codes":
            "Jurisdictions" J
              with "Patient Address" PA
                such that PA.postalCode in J.postalCode

          define "Patient Address State is in Jurisdiction Codes":
          "Jurisdictions" J
            with "Patient Address" PA
              such that (PA.state.value in J.stateCode
                and 'STATE' in J.jurisdictionType)

          define "Address Exists in Jurisdiction Codes":
            exists (
              "Encounter Address State is in Jurisdiction Codes"
                union "Encounter Address Postal Code is in Jurisdiction Codes"
                  union "Patient Address State is in Jurisdiction Codes"
                    union "Patient Address Postal Code is in Jurisdiction Codes"
              )

          define function EncounterAddressJurisdictions():
            if exists ("Encounter Address Postal Code is in Jurisdiction Codes")
              then "Encounter Address Postal Code is in Jurisdiction Codes"
                else "Encounter Address State is in Jurisdiction Codes"

          define function PatientAddressJurisdictions():
            if exists ("Patient Address Postal Code is in Jurisdiction Codes")
              then "Patient Address Postal Code is in Jurisdiction Codes"
                else "Patient Address State is in Jurisdiction Codes"

          define "Jurisdiction Codes Relevant to Encounter Addresses":
            EncounterAddressJurisdictions()

          define "Jurisdiction Codes Relevant to Patient Addresses":
            PatientAddressJurisdictions()

          define "Indeterminate Chlamydia Test Results":
            "Chlamydia Test Results" O
              let organization: [Organization]
              where (
                (
                  exists (
                      O.interpretation interpretationConcept
                        where interpretationConcept as CodeableConcept in "Indeterminate or Equivocal Lab Result Value"
                  )
                    or O.value as CodeableConcept in "Indeterminate or Equivocal Lab Result Value"
                )
                  and "Address Exists in Jurisdiction Codes"
              )

          define "Negative Chlamydia Test Results":
            "Chlamydia Test Results" O
              let organization: [Organization]
              where (
                (
                  exists (
                      O.interpretation interpretationConcept
                        where interpretationConcept as CodeableConcept in "Negative or Undetected Lab Result Value"
                  )
                    or O.value as CodeableConcept in "Negative or Undetected Lab Result Value"
                )
                  and "Address Exists in Jurisdiction Codes"
              )

          define "Reportable Triggering Codes":
            flatten ("Indeterminate Chlamydia Test Results" O return O.code.coding)
              union flatten ("Negative Chlamydia Test Results" O return O.code.coding)
              // ... reportable triggering codes for other conditions

          define "Is Encounter Within Normal Reporting Duration?":
            "Current Encounter Duration"("Encounter In Context") <= "normalReportingDuration"

          define "Is Encounter Reportable and Within Normal Reporting Duration?":
            exists (
              "Reportable Triggering Codes"
                except "Existing Reportable Triggering Codes"
            )
              and "Is Encounter Within Normal Reporting Duration?"

          define "Existing Reportable Triggering Codes":
            flatten (
              "eICR Compositions" C
                return
                  C.section.entry.extension E
                    where E.url = 'http://hl7.org/fhir/us/ecr/StructureDefinition/eicr-trigger-code-flag-extension'
                      return (singleton from (E.extension SE where SE.url = 'triggerCode')).value as Coding
            )

          define function "Current Encounter Duration"(encounter Encounter):
            Quantity {
              value: decimal {
                value: duration in days between encounter.period.start and Coalesce(encounter.period.end.value, Now())
              },
              unit: string { value: 'days' }
            }

          define "Encounter In Context":
            if "Triggering Encounter" is not null
              then "Triggering Encounter"
                else singleton from "Triggering Encounters"

          define "Is Encounter Longer Than Normal Reporting Duration?":
            "Current Encounter Duration"("Encounter In Context") > "normalReportingDuration"

          define "Is Encounter In Progress":
            "Encounter In Context".status ~ 'in-progress'

          define "Is Encounter Complete":
            "Encounter In Context".status ~ 'finished'

          define "Is Encounter In Progress and Within Normal Reporting Duration or 72h or less after end of encounter?":
            (
              "Is Encounter In Progress"
                and "Is Encounter Within Normal Reporting Duration?"
            )
              or (not IsNull("Triggering Encounter") and "Triggering Encounter".period.end 72 hours or less before Now())
              or (exists ("Triggering Encounters") and singleton from "Triggering Encounters".period.end 72 hours or less before Now())

          define "eICR Compositions":
            [Composition : "eICRComposition"]

          define "Most recent eICR sent over 72 hours ago?":
            if "Most recent eICR" is not null
              then "Most recent eICR".date 72 hours or more before Now()
              else false

          define "Most recent eICR":
            First (
              "eICR Compositions" eICRs
                sort by date desc
            )

          define "Suspected Disorder Test Results":
            [Observation] O
              where O.status in { 'registered', 'preliminary', 'final', 'amended', 'corrected' }
                and O.value as CodeableConcept in "Laboratory Order Trigger Codes"

          define "Suspected Disorders":
            [Condition: "Suspected Disorder Trigger Codes"]
              union [MedicationRequest: "Medication Trigger Codes"]
              union "Suspected Disorder Test Results"

          define "Is Suspected Disorder?":
            exists (
              "Suspected Disorders"
            )
        
                                


Entry 3 - fullUrl = http://hl7.org/fhir/us/ecr/Library/library-us-ph-supplemental-valueset-library-example

Resource Library:

Related Artifacts

Composed OfExample Diagnosis Problem Triggers for Public Health Reporting
Composed OfExample Lab Order Test Triggers for Public Health Reporting
Composed OfExample Lab Obs Test Name Triggers for Public Health Reporting
Composed OfExample Medications Triggers for Public Health Reporting
Composed OfExample Organism Substance Triggers for Public Health Reporting
Composed OfExample Suspected Disorder Triggers for Public Health Reporting
Composed OfExample Chlamydia Lab Obs Test Name Triggers for Public Health Reporting
Composed OfIndeterminate or Equivocal Lab Result Value
Composed OfNegative or Undetected Lab Result Value


Entry 4 - fullUrl = http://hl7.org/fhir/us/ecr/CodeSystem/ersd-jurisdictions-example

Resource CodeSystem:

Properties

This code system defines the following properties for its concepts

CodeTypeDescription
typecodeType of public health jurisdiction.
statecodeUSPS Two Letter Alphabetic Codes.
postalcodestringPostal code within the public health jurisdiction.

Concepts

This case-insensitive code system http://hl7.org/fhir/us/ecr/CodeSystem/ersd-jurisdictions-example defines the following codes:

CodeDisplayDefinitiontypestatepostalcode
AK ALASKAAlaska Department of Health and Social ServicesSTATEAK
AL ALABAMAAlabama Department of Public HealthSTATEAL
AR ARKANSASArkansas Department of HealthSTATEAR
AS AMERICAN_SAMOAAmerican SamoaSTATEAS
AZ ARIZONAArizona Department of Health ServicesSTATEAZ
CA CALIFORNIACalifornia Department of Public HealthSTATECA90041, 90042, 90221, 90630, 90706, 90712, 90713, 90716, 90723, 90731, 90744, 90755, 90802, 90803, 90804, 90805, 90806, 90807, 90808, 90810, 90813, 90814, 90815, 90822, 90831, 90840, 90846, 91001, 91006, 91011, 91024, 91030, 91101, 91103, 91104, 91105, 91106, 91107, 91108, 91206, 91901, 91902, 91903, 91905, 91906, 91908, 91909, 91910, 91911, 91912, 91913, 91914, 91915, 91916, 91917, 91921, 91931, 91932, 91933, 91934, 91935, 91941, 91942, 91943, 91944, 91945, 91946, 91947, 91948, 91950, 91951, 91962, 91963, 91976, 91977, 91978, 91979, 91980, 91987, 91990, 92003, 92004, 92007, 92008, 92009, 92010, 92011, 92013, 92014, 92018, 92019, 92020, 92021, 92022, 92023, 92024, 92025, 92026, 92027, 92028, 92029, 92030, 92033, 92036, 92037, 92038, 92039, 92040, 92046, 92049, 92051, 92052, 92054, 92055, 92056, 92057, 92058, 92059, 92060, 92061, 92064, 92065, 92066, 92067, 92068, 92069, 92070, 92071, 92072, 92074, 92075, 92078, 92079, 92081, 92082, 92083, 92084, 92085, 92086, 92088, 92090, 92091, 92092, 92093, 92096, 92101, 92102, 92103, 92104, 92105, 92106, 92107, 92108, 92109, 92110, 92111, 92112, 92113, 92114, 92115, 92116, 92117, 92118, 92119, 92120, 92121, 92122, 92123, 92124, 92126, 92127, 92128, 92129, 92130, 92131, 92132, 92133, 92134, 92135, 92136, 92137, 92138, 92139, 92140, 92142, 92143, 92145, 92147, 92149, 92150, 92152, 92153, 92154, 92155, 92158, 92159, 92160, 92161, 92162, 92163, 92164, 92165, 92166, 92167, 92168, 92169, 92170, 92171, 92172, 92173, 92174, 92175, 92176, 92177, 92178, 92179, 92182, 92184, 92186, 92187, 92190, 92191, 92192, 92193, 92194, 92195, 92196, 92197, 92198, 92199
CHI ILLINOISChicago Department of Public HealthCITYIL60007
CHR VIRGIN_ISLANDSChristiansted (Test)CITYVI00820
CO COLORADOColorado Department of Public Health and EnvironmentSTATECO
CT CONNECTICUTConnecticut Department of Public HealthSTATECT
DC DISTRICT_OF_COLUMBIADistrict of Columbia Department of HealthSTATEDC20002
DE DELAWAREDelaware Health and Social ServicesSTATEDE
DED GUAMDededoCOUNTYGU96912
FL FLORIDAFlorida Department of HealthSTATEFL
GA GEORGIAGeorgia Department of Public HealthSTATEGA30062, 30066
GU GUAMGuam Department of Public Health and Social ServicesSTATEGU
HI HAWAIIHawaii Department of HealthSTATEHI
HT TEXASHouston Health DepartmentCITYTX77001, 77002, 77003, 77004, 77005, 77006, 77007, 77008, 77009, 77010, 77011, 77012, 77013, 77014, 77015, 77016, 77017, 77018, 77019, 77020, 77021, 77022, 77023, 77024, 77025, 77026, 77027, 77028, 77029, 77030, 77031, 77032, 77033, 77034, 77035, 77036, 77037, 77038, 77039, 77040, 77041, 77042, 77043, 77044, 77045, 77046, 77047, 77048, 77049, 77050, 77051, 77052, 77053, 77054, 77055, 77056, 77057, 77058, 77059, 77060, 77061, 77062, 77063, 77064, 77065, 77066, 77067, 77068, 77069, 77070, 77071, 77072, 77073, 77074, 77075, 77076, 77077, 77078, 77079, 77080, 77081, 77082, 77083, 77084, 77085, 77086, 77087, 77088, 77089, 77090, 77091, 77092, 77093, 77094, 77095, 77096, 77097, 77098, 77099, 77201, 77202, 77203, 77204, 77205, 77206, 77207, 77208, 77209, 77210, 77212, 77213, 77215, 77216, 77217, 77218, 77219, 77220, 77221, 77222, 77223, 77224, 77225, 77226, 77227, 77228, 77229, 77230, 77231, 77233, 77234, 77235, 77236, 77237, 77238, 77240, 77241, 77242, 77243, 77244, 77245, 77248, 77249, 77251, 77252, 77253, 77254, 77255, 77256, 77257, 77258, 77259, 77261, 77262, 77263, 77265, 77266, 77267, 77268, 77269, 77270, 77271, 77272, 77273, 77274, 77275, 77277, 77279, 77280, 77281, 77282, 77284, 77287, 77288, 77289, 77290, 77291, 77292, 77293, 77297, 77298, 77299, 77327, 77336, 77338, 77339, 77345, 77346, 77354, 77355, 77357, 77362, 77365, 77373, 77375, 77377, 77379, 77380, 77381, 77382, 77386, 77388, 77389, 77396, 77401, 77406, 77407, 77429, 77433, 77447, 77449, 77450, 77459, 77477, 77478, 77484, 77489, 77493, 77494, 77498, 77502, 77503, 77504, 77505, 77506, 77507, 77520, 77521, 77523, 77530, 77532, 77535, 77536, 77545, 77546, 77547, 77562, 77565, 77571, 77573, 77581, 77584, 77586, 77587, 77598
IA IOWAIowa Department of Public HealthSTATEIA
ID IDAHOIdaho Department of Health and WelfareSTATEID
IL ILLINOISIllinois Department of Public HealthSTATEIL
IN INDIANAIndiana State Department of HealthSTATEIN
KS KANSASKansas Department of Health and EnvironmentSTATEKS
KY KENTUCKYKentucky Cabinet for Health and Family ServicesSTATEKY
LA LOUISIANALouisiana Department of Health and HospitalsSTATELA
LAC CALIFORNIALos Angeles County Department of Public HealthCOUNTYCA90001, 90002, 90003, 90004, 90005, 90006, 90007, 90008, 90009, 90010, 90011, 90012, 90013, 90014, 90015, 90016, 90017, 90018, 90019, 90020, 90021, 90022, 90023, 90024, 90025, 90026, 90027, 90028, 90029, 90030, 90031, 90032, 90033, 90034, 90035, 90036, 90037, 90038, 90039, 90040, 90041, 90042, 90043, 90044, 90045, 90046, 90047, 90048, 90049, 90050, 90051, 90052, 90053, 90054, 90055, 90056, 90057, 90058, 90059, 90060, 90061, 90062, 90063, 90064, 90065, 90066, 90067, 90068, 90069, 90070, 90071, 90072, 90073, 90074, 90075, 90076, 90077, 90078, 90079, 90080, 90081, 90082, 90083, 90084, 90086, 90087, 90088, 90089, 90091, 90093, 90094, 90095, 90096, 90097, 90099, 90101, 90102, 90103, 90174, 90185, 90201, 90202, 90209, 90210, 90211, 90212, 90213, 90220, 90221, 90222, 90223, 90224, 90230, 90231, 90232, 90233, 90239, 90240, 90241, 90242, 90245, 90247, 90248, 90249, 90250, 90251, 90254, 90255, 90260, 90261, 90262, 90263, 90264, 90265, 90266, 90267, 90270, 90272, 90274, 90275, 90277, 90278, 90280, 90290, 90291, 90292, 90293, 90294, 90295, 90296, 90301, 90302, 90303, 90304, 90305, 90306, 90307, 90308, 90309, 90310, 90311, 90312, 90313, 90397, 90398, 90401, 90402, 90403, 90404, 90405, 90406, 90407, 90408, 90409, 90410, 90411, 90501, 90502, 90503, 90504, 90505, 90506, 90507, 90508, 90509, 90510, 90601, 90602, 90603, 90604, 90605, 90606, 90607, 90608, 90609, 90610, 90612, 90637, 90638, 90639, 90640, 90650, 90651, 90652, 90659, 90660, 90661, 90662, 90665, 90670, 90671, 90701, 90702, 90703, 90704, 90706, 90707, 90710, 90711, 90712, 90713, 90714, 90715, 90716, 90717, 90723, 90731, 90732, 90733, 90734, 90744, 90745, 90746, 90747, 90748, 90749, 90755, 90845, 90888, 91001, 91003, 91006, 91007, 91009, 91010, 91011, 91012, 91016, 91017, 91020, 91021, 91023, 91024, 91025, 91030, 91031, 91040, 91041, 91042, 91043, 91046, 91050, 91051, 91066, 91077, 91108, 91118, 91131, 91175, 91186, 91187, 91191, 91201, 91202, 91203, 91204, 91205, 91206, 91207, 91208, 91209, 91210, 91214, 91221, 91222, 91224, 91225, 91226, 91301, 91302, 91303, 91304, 91305, 91306, 91307, 91308, 91309, 91310, 91311, 91312, 91313, 91316, 91321, 91322, 91324, 91325, 91326, 91327, 91328, 91329, 91330, 91331, 91333, 91334, 91335, 91337, 91340, 91341, 91342, 91343, 91344, 91345, 91346, 91350, 91351, 91352, 91353, 91354, 91355, 91356, 91357, 91363, 91364, 91365, 91367, 91371, 91372, 91376, 91380, 91381, 91382, 91383, 91384, 91385, 91386, 91387, 91388, 91390, 91392, 91393, 91394, 91395, 91396, 91399, 91401, 91402, 91403, 91404, 91405, 91406, 91407, 91408, 91409, 91410, 91411, 91412, 91413, 91416, 91423, 91426, 91436, 91470, 91482, 91495, 91496, 91497, 91499, 91501, 91502, 91503, 91504, 91505, 91506, 91507, 91508, 91510, 91521, 91522, 91523, 91526, 91601, 91602, 91603, 91604, 91605, 91606, 91607, 91608, 91609, 91610, 91611, 91612, 91614, 91615, 91616, 91617, 91618, 91702, 91706, 91711, 91714, 91715, 91716, 91722, 91723, 91724, 91731, 91732, 91733, 91734, 91735, 91740, 91741, 91744, 91745, 91746, 91747, 91748, 91749, 91750, 91754, 91755, 91756, 91759, 91765, 91766, 91767, 91768, 91769, 91770, 91771, 91772, 91773, 91775, 91776, 91778, 91780, 91788, 91789, 91790, 91791, 91792, 91793, 91795, 91797, 91799, 91801, 91802, 91803, 91804, 91841, 91896, 91899, 93510, 93532, 93534, 93535, 93536, 93539, 93543, 93544, 93550, 93551, 93552, 93553, 93563, 93584, 93586, 93590, 93591, 93599
MA MASSACHUSETTSMassachusetts Department of Health and Human ServicesSTATEMA
MD MARYLANDMaryland Department of Health and Mental HygieneSTATEMD
ME MAINEMaine Department of Health and Human ServicesSTATEME
MI MICHIGANMichigan Department of Community HealthSTATEMI
MN MINNESOTAMinnesota Department of HealthSTATEMN
MO MISSOURIMissouri State Department of Health and Senior ServicesSTATEMO
MS MISSISSIPPIMississippi State Department of HealthSTATEMS
MT MONTANAMontana Department of Public Health and Human ServicesSTATEMT
NC NORTH_CAROLINANorth Carolina Department of Health and Human ServicesSTATENC
ND NORTH_DAKOTANorth Dakota Department of HealthSTATEND
NE NEBRASKANebraska Department of Health and Human ServicesSTATENE
NH NEW_HAMPSHIRENew Hampshire Department of Health and Human ServicesSTATENH
NJ NEW_JERSEYNew Jersey Department of Health and Senior ServicesSTATENJ
NM NEW_MEXICONew Mexico Department of HealthSTATENM
NV NEVADANevada State Health DivisionSTATENV
NY NEW_YORKNew York State Department of HealthSTATENY10803, 11001, 11040, 11416
NYC NEW_YORKNew York City Department of Health and Mental HygieneCITYNY10001, 10002, 10003, 10004, 10005, 10006, 10007, 10008, 10009, 10010, 10011, 10012, 10013, 10014, 10016, 10017, 10018, 10019, 10020, 10021, 10022, 10023, 10024, 10025, 10026, 10027, 10028, 10029, 10030, 10031, 10032, 10033, 10034, 10035, 10036, 10037, 10038, 10039, 10040, 10041, 10043, 10044, 10045, 10055, 10060, 10065, 10069, 10075, 10080, 10081, 10087, 10090, 10101, 10102, 10103, 10104, 10105, 10106, 10107, 10108, 10109, 10110, 10111, 10112, 10113, 10114, 10115, 10116, 10117, 10118, 10119, 10120, 10121, 10122, 10123, 10124, 10125, 10126, 10128, 10129, 10130, 10131, 10132, 10133, 10138, 10150, 10151, 10152, 10153, 10154, 10155, 10156, 10157, 10158, 10159, 10160, 10162, 10163, 10164, 10165, 10166, 10167, 10168, 10169, 10170, 10171, 10172, 10173, 10174, 10175, 10176, 10177, 10178, 10179, 10185, 10199, 10203, 10211, 10212, 10213, 10242, 10249, 10256, 10258, 10259, 10260, 10261, 10265, 10268, 10269, 10270, 10271, 10272, 10273, 10274, 10275, 10276, 10277, 10278, 10279, 10280, 10281, 10282, 10285, 10286, 10301, 10302, 10303, 10304, 10305, 10306, 10307, 10308, 10309, 10310, 10311, 10312, 10313, 10314, 10451, 10452, 10453, 10454, 10455, 10456, 10457, 10458, 10459, 10460, 10461, 10462, 10463, 10464, 10465, 10466, 10467, 10468, 10469, 10470, 10471, 10472, 10473, 10474, 10475, 10803, 11001, 11004, 11005, 11040, 11101, 11102, 11103, 11104, 11105, 11106, 11109, 11120, 11201, 11202, 11203, 11204, 11205, 11206, 11207, 11208, 11209, 11210, 11211, 11212, 11213, 11214, 11215, 11216, 11217, 11218, 11219, 11220, 11221, 11222, 11223, 11224, 11225, 11226, 11228, 11229, 11230, 11231, 11232, 11233, 11234, 11235, 11236, 11237, 11238, 11239, 11241, 11242, 11243, 11245, 11247, 11249, 11251, 11252, 11256, 11351, 11352, 11354, 11355, 11356, 11357, 11358, 11359, 11360, 11361, 11362, 11363, 11364, 11365, 11366, 11367, 11368, 11369, 11370, 11371, 11372, 11373, 11374, 11375, 11377, 11378, 11379, 11380, 11381, 11385, 11386, 11405, 11411, 11412, 11413, 11414, 11415, 11416, 11417, 11418, 11419, 11420, 11421, 11422, 11423, 11424, 11425, 11426, 11427, 11428, 11429, 11430, 11431, 11432, 11433, 11434, 11435, 11436, 11439, 11451, 11499, 11690, 11691, 11692, 11693, 11694, 11695, 11697
OH OHIOOhio Department of HealthSTATEOH
OK OKLAHOMAOklahoma State Department of HealthSTATEOK
OR OREGONOregon Health AuthoritySTATEOR97001, 97002, 97004, 97005, 97006, 97007, 97008, 97009, 97010, 97011, 97013, 97014, 97015, 97016, 97017, 97018, 97019, 97020, 97021, 97022, 97023, 97024, 97026, 97027, 97028
PA PENNSYLVANIAPennsylvania Department of HealthSTATEPA
PHL PENNSYLVANIACity of Philadelphia Department of Public HealthCITYPA
PR PUERTO_RICOPuerto RicoSTATEPR
RI RHODE_ISLANDRhode Island Department of HealthSTATERI
SC SOUTH_CAROLINASouth Carolina Department of Health and Environmental ControlSTATESC
SD SOUTH_DAKOTASouth Dakota Department of HealthSTATESD
SDC CALIFORNIASan Diego County Public Health ServicesCOUNTYCA91901, 91902, 91903, 91905, 91906, 91908, 91909, 91910, 91911, 91912, 91913, 91914, 91915, 91916, 91917, 91921, 91931, 91932, 91933, 91934, 91935, 91941, 91942, 91943, 91944, 91945, 91946, 91947, 91948, 91950, 91951, 91962, 91963, 91976, 91977, 91978, 91979, 91980, 91987, 91990, 92003, 92004, 92007, 92008, 92009, 92010, 92011, 92013, 92014, 92018, 92019, 92020, 92021, 92022, 92023, 92024, 92025, 92026, 92027, 92028, 92029, 92030, 92033, 92036, 92037, 92038, 92039, 92040, 92046, 92049, 92051, 92052, 92054, 92055, 92056, 92057, 92058, 92059, 92060, 92061, 92064, 92065, 92066, 92067, 92068, 92069, 92070, 92071, 92072, 92074, 92075, 92078, 92079, 92081, 92082, 92083, 92084, 92085, 92086, 92088, 92090, 92091, 92092, 92093, 92096, 92101, 92102, 92103, 92104, 92105, 92106, 92107, 92108, 92109, 92110, 92111, 92112, 92113, 92114, 92115, 92116, 92117, 92118, 92119, 92120, 92121, 92122, 92123, 92124, 92126, 92127, 92128, 92129, 92130, 92131, 92132, 92133, 92134, 92135, 92136, 92137, 92138, 92139, 92140, 92142, 92143, 92145, 92147, 92149, 92150, 92152, 92153, 92154, 92155, 92158, 92159, 92160, 92161, 92162, 92163, 92164, 92165, 92166, 92167, 92168, 92169, 92170, 92171, 92172, 92173, 92174, 92175, 92176, 92177, 92178, 92179, 92182, 92184, 92186, 92187, 92190, 92191, 92192, 92193, 92194, 92195, 92196, 92197, 92198, 92199
SF CALIFORNIASan FranciscoCITYCA
SN NEVADASouthern Nevada Health District (SNHD)DISTRICTNV
STC VIRGIN_ISLANDSSaint Croix (Test)COUNTYVI00850
STJ VIRGIN_ISLANDSSaint John (Test)COUNTYVI00830
TN TENNESSEETennessee Department of HealthSTATETN
TX TEXASTexas Department of State Health ServicesSTATETX
UT UTAHUtah Department of HealthSTATEUT
VA VIRGINIAVirginia Department of HealthSTATEVA
VI VIRGIN_ISLANDSVirgin Islands Department of Health (Test)STATEVI00830
VT VERMONTVermont Department of HealthSTATEVT05001, 05009, 05030, 05031, 05032, 05033, 05034, 05035, 05036, 05037, 05038, 05039, 05040, 05041, 05042, 05043, 05045, 05046, 05047, 05048, 05049, 05050, 05051, 05052, 05053, 05054, 05401
WA WASHINGTONWashington State Department of HealthSTATEWA
WI WISCONSINWisconsin Department of Health ServicesSTATEWI
WV WEST_VIRGINIAWest Virginia Department of Health and Human Resources, Bureau for Public HealthSTATEWV
WY WYOMINGWyoming Department of HealthSTATEWY


Entry 5 - fullUrl = http://hl7.org/fhir/us/ecr/ValueSet/valueset-dxtc-example

Resource ValueSet:

This value set includes codes based on the following rules:


Entry 6 - fullUrl = http://hl7.org/fhir/us/ecr/ValueSet/valueset-lotc-example

Resource ValueSet:

  • Include these codes as defined in http://loinc.org
    CodeDisplay
    11585-7Bordetella pertussis Ab [Units/volume] in Serum
    16474-9Bordetella pertussis Ab [Units/volume] in Serum by Complement fixation
    20992-4Bordetella pertussis Ab [Presence] in Unspecified specimen
    22116-8Bordetella pertussis Ab [Titer] in Serum
    22117-6Bordetella pertussis Ab [Titer] in Unspecified specimen


Entry 7 - fullUrl = http://hl7.org/fhir/us/ecr/ValueSet/valueset-lrtc-example

Resource ValueSet:

  • Include these codes as defined in http://loinc.org
    CodeDisplay
    11585-7Bordetella pertussis Ab [Units/volume] in Serum
    14127-5Neisseria gonorrhoeae [Presence] in Anal by Organism specific culture
    14461-8Chlamydia trachomatis [Presence] in Blood by Organism specific culture
    14462-6Chlamydia trachomatis [Presence] in Cerebral spinal fluid by Organism specific culture
    14463-4Chlamydia trachomatis [Presence] in Cervix by Organism specific culture


Entry 8 - fullUrl = http://hl7.org/fhir/us/ecr/ValueSet/valueset-mrtc-example

Resource ValueSet:

  • Include these codes as defined in http://www.nlm.nih.gov/research/umls/rxnorm
    CodeDisplay
    809002Carbidopa 10 MG / Levodopa 100 MG Disintegrating Oral Tablet [Parcopa]
    476515Carbidopa 25 MG / Levodopa 250 MG Disintegrating Oral Tablet
    308988Carbidopa 25 MG / Levodopa 100 MG Extended Release Oral Tablet
    724606Carbidopa 10 MG / Levodopa 100 MG Oral Tablet [Sinemet]
    16009148 HR Carbidopa 48.75 MG / Levodopa 195 MG Extended Release Oral Capsule
    476399Carbidopa 25 MG / Levodopa 100 MG Disintegrating Oral Tablet


Entry 9 - fullUrl = http://hl7.org/fhir/us/ecr/ValueSet/valueset-ostc-example

Resource ValueSet:


Entry 10 - fullUrl = http://hl7.org/fhir/us/ecr/ValueSet/valueset-pctc-example

Resource ValueSet:

This value set includes codes based on the following rules:


Entry 11 - fullUrl = http://hl7.org/fhir/us/ecr/ValueSet/valueset-sdtc-example

Resource ValueSet:

This value set includes codes based on the following rules:


Entry 12 - fullUrl = http://hl7.org/fhir/us/ecr/ValueSet/valueset-chlamydia-example

Resource ValueSet:

  • Include these codes as defined in http://loinc.org
    CodeDisplay
    14461-8Chlamydia trachomatis [Presence] in Blood by Organism specific culture
    14462-6Chlamydia trachomatis [Presence] in Cerebral spinal fluid by Organism specific culture
    14463-4Chlamydia trachomatis [Presence] in Cervix by Organism specific culture


Entry 13 - fullUrl = http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1146.1035

Resource ValueSet:


Entry 14 - fullUrl = http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1146.1034

Resource ValueSet: