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.2 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
Generated Narrative: Bundle bundle-ersd-supplemental-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:
Title: eRSD Supplemental Library Example Id: library-ersd-supplemental-library-example Version: 2020-11-01 Url: eRSD Supplemental Library Example urn:oid:2.16.840.1.114222.4.11.11111
Experimental: true Type: system: http://terminology.hl7.org/CodeSystem/library-type
code: asset-collection
Publisher: {site.data.fhir.ig.publisher} Description: Description of library
Use Context:
code value reporting specification-type Jurisdiction: US Purpose: Purpose of library
Effective Period: 2020-11-01.. Related Artifacts: Components
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:
Entry 4 - fullUrl = http://hl7.org/fhir/us/ecr/CodeSystem/ersd-jurisdictions-example
Resource CodeSystem:
Generated Narrative: CodeSystem ersd-jurisdictions-example
version: 9; Last updated: 2021-06-30 03:00:44+0000;
Information Source: #DC4GHkOdJgBd5wb1
Profile: US Public Health CodeSystem
Properties
This code system defines the following properties for its concepts
Name Code Type Description type type code Type of public health jurisdiction. state state code USPS Two Letter Alphabetic Codes. postalcode postalcode string Postal 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:
Code Display Definition type state postalcode AK ALASKA Alaska Department of Health and Social Services STATE AK AL ALABAMA Alabama Department of Public Health STATE AL AR ARKANSAS Arkansas Department of Health STATE AR AS AMERICAN_SAMOA American Samoa STATE AS AZ ARIZONA Arizona Department of Health Services STATE AZ CA CALIFORNIA California Department of Public Health STATE CA 90041, 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 ILLINOIS Chicago Department of Public Health CITY IL 60007 CHR VIRGIN_ISLANDS Christiansted (Test) CITY VI 00820 CO COLORADO Colorado Department of Public Health and Environment STATE CO CT CONNECTICUT Connecticut Department of Public Health STATE CT DC DISTRICT_OF_COLUMBIA District of Columbia Department of Health STATE DC 20002 DE DELAWARE Delaware Health and Social Services STATE DE DED GUAM Dededo COUNTY GU 96912 FL FLORIDA Florida Department of Health STATE FL GA GEORGIA Georgia Department of Public Health STATE GA 30062, 30066 GU GUAM Guam Department of Public Health and Social Services STATE GU HI HAWAII Hawaii Department of Health STATE HI HT TEXAS Houston Health Department CITY TX 77001, 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 IOWA Iowa Department of Public Health STATE IA ID IDAHO Idaho Department of Health and Welfare STATE ID IL ILLINOIS Illinois Department of Public Health STATE IL IN INDIANA Indiana State Department of Health STATE IN KS KANSAS Kansas Department of Health and Environment STATE KS KY KENTUCKY Kentucky Cabinet for Health and Family Services STATE KY LA LOUISIANA Louisiana Department of Health and Hospitals STATE LA LAC CALIFORNIA Los Angeles County Department of Public Health COUNTY CA 90001, 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 MASSACHUSETTS Massachusetts Department of Health and Human Services STATE MA MD MARYLAND Maryland Department of Health and Mental Hygiene STATE MD ME MAINE Maine Department of Health and Human Services STATE ME MI MICHIGAN Michigan Department of Community Health STATE MI MN MINNESOTA Minnesota Department of Health STATE MN MO MISSOURI Missouri State Department of Health and Senior Services STATE MO MS MISSISSIPPI Mississippi State Department of Health STATE MS MT MONTANA Montana Department of Public Health and Human Services STATE MT NC NORTH_CAROLINA North Carolina Department of Health and Human Services STATE NC ND NORTH_DAKOTA North Dakota Department of Health STATE ND NE NEBRASKA Nebraska Department of Health and Human Services STATE NE NH NEW_HAMPSHIRE New Hampshire Department of Health and Human Services STATE NH NJ NEW_JERSEY New Jersey Department of Health and Senior Services STATE NJ NM NEW_MEXICO New Mexico Department of Health STATE NM NV NEVADA Nevada State Health Division STATE NV NY NEW_YORK New York State Department of Health STATE NY 10803, 11001, 11040, 11416 NYC NEW_YORK New York City Department of Health and Mental Hygiene CITY NY 10001, 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 OHIO Ohio Department of Health STATE OH OK OKLAHOMA Oklahoma State Department of Health STATE OK OR OREGON Oregon Health Authority STATE OR 97001, 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 PENNSYLVANIA Pennsylvania Department of Health STATE PA PHL PENNSYLVANIA City of Philadelphia Department of Public Health CITY PA PR PUERTO_RICO Puerto Rico STATE PR RI RHODE_ISLAND Rhode Island Department of Health STATE RI SC SOUTH_CAROLINA South Carolina Department of Health and Environmental Control STATE SC SD SOUTH_DAKOTA South Dakota Department of Health STATE SD SDC CALIFORNIA San Diego County Public Health Services COUNTY CA 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 SF CALIFORNIA San Francisco CITY CA SN NEVADA Southern Nevada Health District (SNHD) DISTRICT NV STC VIRGIN_ISLANDS Saint Croix (Test) COUNTY VI 00850 STJ VIRGIN_ISLANDS Saint John (Test) COUNTY VI 00830 TN TENNESSEE Tennessee Department of Health STATE TN TX TEXAS Texas Department of State Health Services STATE TX UT UTAH Utah Department of Health STATE UT VA VIRGINIA Virginia Department of Health STATE VA VI VIRGIN_ISLANDS Virgin Islands Department of Health (Test) STATE VI 00830 VT VERMONT Vermont Department of Health STATE VT 05001, 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 WASHINGTON Washington State Department of Health STATE WA WI WISCONSIN Wisconsin Department of Health Services STATE WI WV WEST_VIRGINIA West Virginia Department of Health and Human Resources, Bureau for Public Health STATE WV WY WYOMING Wyoming Department of Health STATE WY
Entry 5 - fullUrl = http://hl7.org/fhir/us/ecr/ValueSet/valueset-dxtc-example
Resource ValueSet:
Generated Narrative: ValueSet valueset-dxtc-example
version: 5; Last updated: 2020-11-25 23:10:42+0000;
Information Source: #YnUIRZLVoM19ij7X
This value set includes codes based on the following rules:
- Include these codes as defined in
http://hl7.org/fhir/sid/icd-10-cm
Code Display A01 Typhoid and paratyphoid fevers A01.0 Typhoid fever - Include these codes as defined in
http://snomed.info/sct
Code Display 10750051000119105 Chlamydia trachomatis infection in mother complicating childbirth (disorder) 10754031000119105 Gonorrhea in mother complicating childbirth (disorder) 1084791000119106 Cardiac disorder due to typhoid fever (disorder) 1086991000119103 Gonococcal abscess of brain (disorder) 1087051000119109 Gonococcal osteomyelitis (disorder) 1087061000119106 Gonococcal pneumonia (disorder) 1092371000119103 Salmonella pyelonephritis (disorder)
Entry 6 - fullUrl = http://hl7.org/fhir/us/ecr/ValueSet/valueset-lotc-example
Resource ValueSet:
Generated Narrative: ValueSet valueset-lotc-example
version: 6; Last updated: 2020-11-25 23:10:42+0000;
Information Source: #FLOTVKreaVlW2e4a
- Include these codes as defined in
http://loinc.org
Code Display 11585-7 Bordetella pertussis Ab [Units/volume] in Serum 16474-9 Bordetella pertussis Ab [Units/volume] in Serum by Complement fixation 20992-4 Bordetella pertussis Ab [Presence] in Unspecified specimen 22116-8 Bordetella pertussis Ab [Titer] in Serum 22117-6 Bordetella pertussis Ab [Titer] in Unspecified specimen
Entry 7 - fullUrl = http://hl7.org/fhir/us/ecr/ValueSet/valueset-lrtc-example
Resource ValueSet:
Generated Narrative: ValueSet valueset-lrtc-example
version: 6; Last updated: 2020-11-25 23:10:42+0000;
Information Source: #f1ilk1zBBG4DSxHC
- Include these codes as defined in
http://loinc.org
Code Display 11585-7 Bordetella pertussis Ab [Units/volume] in Serum 14127-5 Neisseria gonorrhoeae [Presence] in Anal by Organism specific culture 14461-8 Chlamydia trachomatis [Presence] in Blood by Organism specific culture 14462-6 Chlamydia trachomatis [Presence] in Cerebral spinal fluid by Organism specific culture 14463-4 Chlamydia trachomatis [Presence] in Cervix by Organism specific culture
Entry 8 - fullUrl = http://hl7.org/fhir/us/ecr/ValueSet/valueset-mrtc-example
Resource ValueSet:
Generated Narrative: ValueSet valueset-mrtc-example
version: 6; Last updated: 2020-12-03 05:57:10+0000;
Information Source: #jZvYkGxPTEYqKf6v
- Include these codes as defined in
http://www.nlm.nih.gov/research/umls/rxnorm
Code Display 809002 Carbidopa 10 MG / Levodopa 100 MG Disintegrating Oral Tablet [Parcopa] 476515 Carbidopa 25 MG / Levodopa 250 MG Disintegrating Oral Tablet 308988 Carbidopa 25 MG / Levodopa 100 MG Extended Release Oral Tablet 724606 Carbidopa 10 MG / Levodopa 100 MG Oral Tablet [Sinemet] 1600914 8 HR Carbidopa 48.75 MG / Levodopa 195 MG Extended Release Oral Capsule 476399 Carbidopa 25 MG / Levodopa 100 MG Disintegrating Oral Tablet
Entry 9 - fullUrl = http://hl7.org/fhir/us/ecr/ValueSet/valueset-ostc-example
Resource ValueSet:
Generated Narrative: ValueSet valueset-ostc-example
version: 8; Last updated: 2021-06-30 07:40:56+0000;
Information Source: #xas7OF0tYBOe11AS
Entry 10 - fullUrl = http://hl7.org/fhir/us/ecr/ValueSet/valueset-pctc-example
Resource ValueSet:
Generated Narrative: ValueSet valueset-pctc-example
version: 1; Last updated: 2020-12-01 17:02:45+0000;
Information Source: #JGRpT4MaN5pv7ImH
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:
Generated Narrative: ValueSet valueset-sdtc-example
This value set includes codes based on the following rules:
- Include these codes as defined in
http://hl7.org/fhir/sid/icd-10-cm
Code Display A01 Typhoid and paratyphoid fevers A01.0 Typhoid fever - Include these codes as defined in
http://snomed.info/sct
Code Display 12591000132100 Suspected severe acute respiratory syndrome (situation) 12601000132105 Probable severe acute respiratory syndrome (situation) 722545003 Suspected rabies (situation) 722546002 Probable rabies (situation) 772147001 Botulism suspected (situation) 772150003 Diphtheria suspected (situation) 772151004 Anthrax suspected (situation)
Entry 12 - fullUrl = http://hl7.org/fhir/us/ecr/ValueSet/valueset-chlamydia-example
Resource ValueSet:
Generated Narrative: ValueSet valueset-chlamydia-example
version: 6; Last updated: 2020-11-25 23:10:42+0000;
Information Source: #f1ilk1zBBG4DSxHC
- Include these codes as defined in
http://loinc.org
Code Display 14461-8 Chlamydia trachomatis [Presence] in Blood by Organism specific culture 14462-6 Chlamydia trachomatis [Presence] in Cerebral spinal fluid by Organism specific culture 14463-4 Chlamydia 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:
Generated Narrative: ValueSet 2.16.840.1.113762.1.4.1146.1035
- Include these codes as defined in
http://snomed.info/sct
Code Display 280414007 Equivocal result (qualifier value) 280416009 Indeterminate result (qualifier value) 419984006 Inconclusive (qualifier value) 42425007 Equivocal (qualifier value) 64957009 Uncertain (qualifier value) 82334004 Indeterminate (qualifier value)
Entry 14 - fullUrl = http://cts.nlm.nih.gov/fhir/ValueSet/2.16.840.1.113762.1.4.1146.1034
Resource ValueSet:
Generated Narrative: ValueSet 2.16.840.1.113762.1.4.1146.1034
- Include these codes as defined in
http://snomed.info/sct
Code Display 131194007 Non-Reactive (qualifier value) 168230009 Sample direct microscopy no organism seen (finding) 17621005 Normal (qualifier value) 23506009 Normal flora (finding) 260385009 Negative (qualifier value) 260389003 No reaction (qualifier value) 260394003 Normal limits (qualifier value) 260395002 Normal range (qualifier value) 260415000 Not detected (qualifier value) 264868006 No growth (qualifier value) 264887000 Not isolated (qualifier value) 2667000 Absent (qualifier value) 272519000 Absence findings (qualifier value) 27863008 No organisms seen (finding) 280413001 Normal result (qualifier value) 281297005 Analyte not detected (qualifier value) 371928007 Not significant (qualifier value) 373067005 No (qualifier value) 435151000124100 No acid fast organisms seen (finding) 444991000124106 Repeatedly non-reactive (qualifier value) 47492008 Not seen (qualifier value)