diff --git a/.travis.yml b/.travis.yml index 0310bac..24e290a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,6 @@ language: ruby rvm: - - "2.0.0" + - "2.3.3" + - "2.4.0" script: - bundle exec rake test diff --git a/Gemfile b/Gemfile index 6fc4828..9d7f545 100644 --- a/Gemfile +++ b/Gemfile @@ -4,6 +4,9 @@ gemspec gem 'rake' gem 'pry' +# gem 'fhir_models', :path => '../fhir_models' +# gem 'fhir_models', :git => 'https://github.com/fhir-crucible/fhir_models.git', :branch => 'master' + group :test do gem 'simplecov', :require => false gem 'minitest', '~> 5.3' diff --git a/Gemfile.lock b/Gemfile.lock index c5d1fd9..54056ac 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - fhir_scorecard (1.8.0) + fhir_scorecard (1.8.1) fhir_models (~> 1.8) GEM @@ -11,35 +11,35 @@ GEM awesome_print (1.7.0) bcp47 (0.3.3) i18n - builder (3.2.2) + builder (3.2.3) coderay (1.1.1) date_time_precision (0.8.1) docile (1.1.5) - fhir_models (1.8.1) + fhir_models (1.8.3) bcp47 (>= 0.3) date_time_precision (>= 0.8) mime-types (>= 1.16, < 3) nokogiri (>= 1.6) - i18n (0.7.0) - json (2.0.2) + i18n (0.8.1) + json (2.0.3) method_source (0.8.2) mime-types (2.99.3) mini_portile2 (2.1.0) - minitest (5.9.1) - minitest-reporters (1.1.12) + minitest (5.10.1) + minitest-reporters (1.1.14) ansi builder minitest (>= 5.0) ruby-progressbar - nokogiri (1.6.8.1) + nokogiri (1.7.1) mini_portile2 (~> 2.1.0) pry (0.10.4) coderay (~> 1.1.0) method_source (~> 0.8.1) slop (~> 3.4) - rake (11.3.0) + rake (12.0.0) ruby-progressbar (1.8.1) - simplecov (0.12.0) + simplecov (0.14.1) docile (~> 1.1.0) json (>= 1.8, < 3) simplecov-html (~> 0.10.0) @@ -59,4 +59,4 @@ DEPENDENCIES simplecov BUNDLED WITH - 1.13.6 + 1.14.6 diff --git a/fhir_scorecard.gemspec b/fhir_scorecard.gemspec index f54b5bd..c79f9df 100644 --- a/fhir_scorecard.gemspec +++ b/fhir_scorecard.gemspec @@ -7,7 +7,7 @@ Gem::Specification.new do |s| s.email = "jwalonoski@mitre.org" s.homepage = "https://github.com/fhir-crucible/fhir_scorecard" s.authors = ["Jason Walonoski"] - s.version = '1.8.0' + s.version = '1.8.1' s.files = s.files = `git ls-files`.split("\n") diff --git a/lib/fhir_scorecard.rb b/lib/fhir_scorecard.rb index 8cf5f48..d1e77f4 100644 --- a/lib/fhir_scorecard.rb +++ b/lib/fhir_scorecard.rb @@ -6,6 +6,7 @@ require File.join(root,'lib','scorecard.rb') require File.join(root,'lib','terminology.rb') +require File.join(root,'lib','implementation_guides.rb') require File.join(root,'lib','rubrics.rb') Dir.glob(File.join(root, 'lib','rubrics','**','*.rb')).each do |file| diff --git a/lib/implementation_guides.rb b/lib/implementation_guides.rb new file mode 100644 index 0000000..545ade2 --- /dev/null +++ b/lib/implementation_guides.rb @@ -0,0 +1,184 @@ +module FHIR + class ImplementationGuideLookup + + @@resources = File.expand_path './resources', File.dirname(File.absolute_path(__FILE__)) + @@loaded = false + + @@us_core = {} + @@standard_health_record = {} + @@shr_indicators = {} + + @@shr_defaults = { + 'Practitioner' => 'http://standardhealthrecord.org/fhir/StructureDefinition/shr-actor-Practitioner', + 'Organization' => 'http://standardhealthrecord.org/fhir/StructureDefinition/shr-actor-Organization', + 'RelatedPerson' => 'http://standardhealthrecord.org/fhir/StructureDefinition/shr-actor-RelatedPerson', + 'AllergyIntolerance' => 'http://standardhealthrecord.org/fhir/StructureDefinition/shr-allergy-AllergyIntolerance', + 'BodySite' => 'http://standardhealthrecord.org/fhir/StructureDefinition/shr-core-BodySite', + 'Patient' => 'http://standardhealthrecord.org/fhir/StructureDefinition/shr-demographics-PersonOfRecord', + 'Coverage' => 'http://standardhealthrecord.org/fhir/StructureDefinition/shr-demographics-HealthInsurance', + 'Device' => 'http://standardhealthrecord.org/fhir/StructureDefinition/shr-device-Device', + 'DeviceUseStatement' => 'http://standardhealthrecord.org/fhir/StructureDefinition/shr-device-DeviceUse', + 'Encounter' => 'http://standardhealthrecord.org/fhir/StructureDefinition/shr-encounter-Encounter', + 'Immunization' => 'http://standardhealthrecord.org/fhir/StructureDefinition/shr-immunization-Immunization', + 'Medication' => 'http://standardhealthrecord.org/fhir/StructureDefinition/shr-medication-Medication', + 'MedicationStatement' => 'http://standardhealthrecord.org/fhir/StructureDefinition/shr-medication-MedicationUse', + 'MedicationRequest' => 'http://standardhealthrecord.org/fhir/StructureDefinition/shr-medication-MedicationPrescription', + 'DiagnosticReport' => 'http://standardhealthrecord.org/fhir/StructureDefinition/shr-observation-Panel', + 'Observation' => 'http://standardhealthrecord.org/fhir/StructureDefinition/shr-observation-Observation', + 'Condition' => 'http://standardhealthrecord.org/fhir/StructureDefinition/shr-problem-Problem', + 'Procedure' => 'http://standardhealthrecord.org/fhir/StructureDefinition/shr-procedure-Procedure' + } + + def self.guess_shr_profile(resource) + load_guides + if resource && !@@shr_indicators.nil? && !@@shr_indicators.empty? + # if the profile is given, we don't need to guess + if resource.meta && resource.meta.profile && !resource.meta.profile.empty? + resource.meta.profile.each do |uri| + return @@standard_health_record[uri] if @@standard_health_record[uri] + end + end + # if the profile is not named, then we need to guess using some heuristic indicators + @@shr_indicators.each do |url, data| + if data['resource'] == resource.resourceType + indicators = true + resource_hash = resource.to_hash + data['fixedValues'].each do |requirement| + # indicators = false if requirement not met + steps = requirement['path'].split('.') + steps.delete(data['resource']) + actual_values = select(steps, resource_hash) + expected_value = requirement['value'] + if actual_values.nil? || (actual_values.is_a?(Array) && actual_values.empty?) + indicators = false + elsif actual_values.is_a?(Array) + actual_values.each do |onevalue| + if onevalue.is_a?(Hash) + if onevalue['coding'] + actual_code = onevalue['coding'].map{|x|x['code']} + expected_code = expected_value['coding'].map{|x|x['code']} + any_match = false + actual_code.each do |x| + any_match = true if expected_code.include?(x) + end + indicators = false unless any_match + else + expected_value.each do |key, value| + indicators = false unless onevalue[key] == value + end + end + end + end + elsif actual_values.is_a?(Hash) + if actual_values['coding'] + actual_code = actual_values['coding'].map{|x|x['code']} + expected_code = expected_value['coding'].map{|x|x['code']} + any_match = false + actual_code.each do |x| + any_match = true if expected_code.include?(x) + end + indicators = false unless any_match + else + expected_value.each do |key, value| + indicators = false unless actual_values[key] == value + end + end + elsif actual_values.is_a?(TrueClass) || actual_values.is_a?(FalseClass) + indicators = false unless actual_values == expected_value + end + end + return @@standard_health_record[uri] if indicators + end + end + # if the heuristics do not help, use a default if possible + default = @@shr_defaults[resource.resourceType] + return @@standard_health_record[default] if default + end + nil + end + + def self.select(steps=[], obj) + return obj if steps.nil? || steps.empty? + copysteps = steps.clone + if obj.is_a?(Hash) + step = copysteps.delete_at(0) + obj = obj[step] + select(copysteps, obj) + elsif obj.is_a?(Array) + obj.map do |x| + select(copysteps, x) + end + end + end + + def self.guess_uscore_profile(resource) + load_guides + if resource + # if the profile is given, we don't need to guess + if resource.meta && resource.meta.profile && !resource.meta.profile.empty? + resource.meta.profile.each do |uri| + return @@us_core[uri] if @@us_core[uri] + end + end + # TODO consider VitalSigns/Observations + # Otherwise, guess the first profile that matches on resource type + @@us_core.each do |url, thing| + if thing.is_a?(FHIR::StructureDefinition) + return thing if thing.type == resource.resourceType + end + end + end + nil + end + + def self.lookup(url) + load_guides + @@us_core[url] || @@standard_health_record[url] || nil + end + + def self.load_guides + if !@@loaded + begin + # load all the FHIR resources in the US Core Implementation Guide + Dir.glob(File.join(@@resources,'us_core','**','*.json')).each do |filename| + raw = File.open(filename,'r:UTF-8',&:read) + resource = FHIR.from_contents(raw) + if resource + @@us_core[resource.id] = resource if resource.id + @@us_core[resource.url] = resource if resource.url + end + end + rescue => error + FHIR.logger.error error + end + + begin + # load all the FHIR resources in the Standard Health Record Implementation Guide + Dir.glob(File.join(@@resources,'standard_health_record','**','*.json')).each do |filename| + raw = File.open(filename,'r:UTF-8',&:read) + resource = FHIR.from_contents(raw) + if resource + @@standard_health_record[resource.id] = resource if resource.id + @@standard_health_record[resource.url] = resource if resource.url + end + end + rescue => error + FHIR.logger.error error + end + + begin + # load some indicators to help guess which SHR profile to use + filename = File.join(@@resources,'profile_indicators.json') + raw = File.open(filename,'r:UTF-8',&:read) + @@shr_indicators = JSON.parse(raw) + rescue => error + @@shr_indicators = {} + FHIR.logger.error error + end + + @@loaded = true + end + end + + end +end diff --git a/lib/resources/profile_indicators.json b/lib/resources/profile_indicators.json new file mode 100644 index 0000000..3ae2491 --- /dev/null +++ b/lib/resources/profile_indicators.json @@ -0,0 +1,1633 @@ +{ + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-actor-EmergencyContact": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-actor-EmergencyContact", + "resource": "CareTeam", + "fixedValues": [ + { + "path": "CareTeam.participant.role", + "value": { + "coding": [ + { + "system": "http://ncimeta.nci.nih.gov", + "code": "C1552023" + } + ] + } + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-actor-PrimaryCareProvider": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-actor-PrimaryCareProvider", + "resource": "CareTeam", + "fixedValues": [ + { + "path": "CareTeam.participant.role", + "value": { + "coding": [ + { + "system": "http://ncimeta.nci.nih.gov", + "code": "C2735026" + } + ] + } + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-actor-NoPrimaryCareProvider": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-actor-NoPrimaryCareProvider", + "resource": "CareTeam", + "fixedValues": [ + { + "path": "CareTeam.participant.role", + "value": { + "coding": [ + { + "system": "http://ncimeta.nci.nih.gov", + "code": "C2735026" + } + ] + } + }, + { + "path": "CareTeam.modifierExtension.extension.valueBoolean", + "value": true + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-problem-Asplenia": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-problem-Asplenia", + "resource": "Condition", + "fixedValues": [ + { + "path": "Condition.code", + "value": { + "coding": [ + { + "system": "http://snomed.info/sct", + "code": "93030006" + } + ] + } + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-adverse-AdverseReaction": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-adverse-AdverseReaction", + "resource": "Condition", + "fixedValues": [ + { + "path": "Condition.category", + "value": { + "coding": [ + { + "system": "http://standardhealthrecord.org/fhir/CodeSystem/shr-problem-ProblemCategoryVS", + "code": "adverse_reaction" + } + ] + } + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-allergy-DrugAllergy": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-allergy-DrugAllergy", + "resource": "AllergyIntolerance", + "fixedValues": [ + { + "path": "AllergyIntolerance.category", + "value": "drug" + }, + { + "path": "AllergyIntolerance.type", + "value": "allergy" + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-allergy-FoodAllergy": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-allergy-FoodAllergy", + "resource": "AllergyIntolerance", + "fixedValues": [ + { + "path": "AllergyIntolerance.category", + "value": "food" + }, + { + "path": "AllergyIntolerance.type", + "value": "allergy" + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-allergy-NoKnownAllergy": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-allergy-NoKnownAllergy", + "resource": "AllergyIntolerance", + "fixedValues": [ + { + "path": "AllergyIntolerance.category", + "value": "food" + }, + { + "path": "AllergyIntolerance.category", + "value": "medication" + }, + { + "path": "AllergyIntolerance.category", + "value": "biologic" + }, + { + "path": "AllergyIntolerance.category", + "value": "environment" + }, + { + "path": "AllergyIntolerance.type", + "value": "allergy" + }, + { + "path": "AllergyIntolerance.verificationStatus", + "value": "unconfirmed" + }, + { + "path": "AllergyIntolerance.modifierExtension.extension.valueBoolean", + "value": true + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-allergy-NoKnownFoodAllergy": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-allergy-NoKnownFoodAllergy", + "resource": "AllergyIntolerance", + "fixedValues": [ + { + "path": "AllergyIntolerance.category", + "value": "food" + }, + { + "path": "AllergyIntolerance.type", + "value": "allergy" + }, + { + "path": "AllergyIntolerance.verificationStatus", + "value": "unconfirmed" + }, + { + "path": "AllergyIntolerance.modifierExtension.extension.valueBoolean", + "value": true + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-allergy-NoKnownDrugAllergy": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-allergy-NoKnownDrugAllergy", + "resource": "AllergyIntolerance", + "fixedValues": [ + { + "path": "AllergyIntolerance.category", + "value": "drug" + }, + { + "path": "AllergyIntolerance.type", + "value": "allergy" + }, + { + "path": "AllergyIntolerance.verificationStatus", + "value": "unconfirmed" + }, + { + "path": "AllergyIntolerance.modifierExtension.extension.valueBoolean", + "value": true + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-allergy-NoKnownEnvironmentalAllergy": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-allergy-NoKnownEnvironmentalAllergy", + "resource": "AllergyIntolerance", + "fixedValues": [ + { + "path": "AllergyIntolerance.category", + "value": "environment" + }, + { + "path": "AllergyIntolerance.type", + "value": "allergy" + }, + { + "path": "AllergyIntolerance.verificationStatus", + "value": "unconfirmed" + }, + { + "path": "AllergyIntolerance.modifierExtension.extension.valueBoolean", + "value": true + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-observation-HistoryObservation": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-observation-HistoryObservation", + "resource": "Observation", + "fixedValues": [ + { + "path": "Observation.category", + "value": { + "coding": [ + { + "system": "http://ncimeta.nci.nih.gov", + "code": "C2004062" + } + ] + } + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-observation-SocialHistory": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-observation-SocialHistory", + "resource": "Observation", + "fixedValues": [ + { + "path": "Observation.category", + "value": { + "coding": [ + { + "system": "http://ncimeta.nci.nih.gov", + "code": "C2004062" + } + ] + } + }, + { + "path": "Observation.category", + "value": { + "coding": [ + { + "system": "http://hl7.org/fhir/observation-category", + "code": "social-history" + } + ] + } + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-behavior-BehavioralObservation": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-behavior-BehavioralObservation", + "resource": "Observation", + "fixedValues": [ + { + "path": "Observation.category", + "value": { + "coding": [ + { + "system": "http://loinc.org", + "code": "54511-1" + } + ] + } + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-behavior-SubstanceUse": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-behavior-SubstanceUse", + "resource": "Observation", + "fixedValues": [ + { + "path": "Observation.category", + "value": { + "coding": [ + { + "system": "http://ncimeta.nci.nih.gov", + "code": "C2004062" + } + ] + } + }, + { + "path": "Observation.category", + "value": { + "coding": [ + { + "system": "http://ncimeta.nci.nih.gov", + "code": "C0332157" + } + ] + } + }, + { + "path": "Observation.category", + "value": { + "coding": [ + { + "system": "http://ncimeta.nci.nih.gov", + "code": "C024251" + } + ] + } + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-behavior-IntravenousDrugUse": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-behavior-IntravenousDrugUse", + "resource": "Observation", + "fixedValues": [ + { + "path": "Observation.category", + "value": { + "coding": [ + { + "system": "http://ncimeta.nci.nih.gov", + "code": "C2004062" + } + ] + } + }, + { + "path": "Observation.category", + "value": { + "coding": [ + { + "system": "http://ncimeta.nci.nih.gov", + "code": "C0332157" + } + ] + } + }, + { + "path": "Observation.category", + "value": { + "coding": [ + { + "system": "http://ncimeta.nci.nih.gov", + "code": "C024251" + } + ] + } + }, + { + "path": "Observation.code", + "value": { + "coding": [ + { + "system": "http://ncimeta.nci.nih.gov", + "code": "C0242566" + } + ] + } + }, + { + "path": "Observation.extension.valueCodeableConcept", + "value": { + "coding": [ + { + "system": "http://ncimeta.nci.nih.gov", + "code": "C0021494" + } + ] + } + }, + { + "path": "Observation.extension.valueCodeableConcept", + "value": { + "coding": [ + { + "system": "http://ncimeta.nci.nih.gov", + "code": "C1522726" + } + ] + } + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-behavior-ONCSmokingStatus": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-behavior-ONCSmokingStatus", + "resource": "Observation", + "fixedValues": [ + { + "path": "Observation.code", + "value": { + "coding": [ + { + "system": "http://loinc.org", + "code": "11367-0" + } + ] + } + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-behavior-NicotineUse": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-behavior-NicotineUse", + "resource": "Observation", + "fixedValues": [ + { + "path": "Observation.category", + "value": { + "coding": [ + { + "system": "http://ncimeta.nci.nih.gov", + "code": "C2004062" + } + ] + } + }, + { + "path": "Observation.category", + "value": { + "coding": [ + { + "system": "http://ncimeta.nci.nih.gov", + "code": "C0332157" + } + ] + } + }, + { + "path": "Observation.category", + "value": { + "coding": [ + { + "system": "http://ncimeta.nci.nih.gov", + "code": "C024251" + } + ] + } + }, + { + "path": "Observation.code", + "value": { + "coding": [ + { + "system": "http://loinc.org", + "code": "11367-0" + } + ] + } + }, + { + "path": "Observation.extension.valueCodeableConcept", + "value": { + "coding": [ + { + "system": "http://ncimeta.nci.nih.gov", + "code": "C2363943" + } + ] + } + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-behavior-AlcoholUse": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-behavior-AlcoholUse", + "resource": "Observation", + "fixedValues": [ + { + "path": "Observation.category", + "value": { + "coding": [ + { + "system": "http://ncimeta.nci.nih.gov", + "code": "C2004062" + } + ] + } + }, + { + "path": "Observation.category", + "value": { + "coding": [ + { + "system": "http://ncimeta.nci.nih.gov", + "code": "C0332157" + } + ] + } + }, + { + "path": "Observation.category", + "value": { + "coding": [ + { + "system": "http://ncimeta.nci.nih.gov", + "code": "C024251" + } + ] + } + }, + { + "path": "Observation.code", + "value": { + "coding": [ + { + "system": "http://ncimeta.nci.nih.gov", + "code": "C0001948" + } + ] + } + }, + { + "path": "Observation.extension.valueCodeableConcept", + "value": { + "coding": [ + { + "system": "http://snomed.info/sct", + "code": "398624005" + } + ] + } + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-behavior-ReligiousPractice": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-behavior-ReligiousPractice", + "resource": "Observation", + "fixedValues": [ + { + "path": "Observation.category", + "value": { + "coding": [ + { + "system": "http://loinc.org", + "code": "54511-1" + } + ] + } + }, + { + "path": "Observation.code", + "value": { + "coding": [ + { + "system": "http://loinc.org", + "code": "81364-2" + } + ] + } + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-behavior-DietAndNutrition": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-behavior-DietAndNutrition", + "resource": "Observation", + "fixedValues": [ + { + "path": "Observation.category", + "value": { + "coding": [ + { + "system": "http://loinc.org", + "code": "54511-1" + } + ] + } + }, + { + "path": "Observation.code", + "value": { + "coding": [ + { + "system": "http://ncimeta.nci.nih.gov", + "code": "C0012155" + } + ] + } + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-behavior-SleepQuality": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-behavior-SleepQuality", + "resource": "Observation", + "fixedValues": [ + { + "path": "Observation.category", + "value": { + "coding": [ + { + "system": "http://loinc.org", + "code": "54511-1" + } + ] + } + }, + { + "path": "Observation.code", + "value": { + "coding": [ + { + "system": "http://loinc.org", + "code": "28323-4" + } + ] + } + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-behavior-PhysicalActivityLevel": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-behavior-PhysicalActivityLevel", + "resource": "Observation", + "fixedValues": [ + { + "path": "Observation.category", + "value": { + "coding": [ + { + "system": "http://loinc.org", + "code": "54511-1" + } + ] + } + }, + { + "path": "Observation.code", + "value": { + "coding": [ + { + "system": "http://loinc.org", + "code": "28323-4" + } + ] + } + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-behavior-ViolentBehaviorRisk": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-behavior-ViolentBehaviorRisk", + "resource": "Basic", + "fixedValues": [ + { + "path": "Basic.code", + "value": { + "coding": [ + { + "system": "http://standardhealthrecord.org/fhir/basic-resource-type", + "code": "shr-behavior-ViolentBehaviorRisk" + } + ] + } + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-environment-ExposureToSubstance": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-environment-ExposureToSubstance", + "resource": "Observation", + "fixedValues": [ + { + "path": "Observation.category", + "value": { + "coding": [ + { + "system": "http://ncimeta.nci.nih.gov", + "code": "C2004062" + } + ] + } + }, + { + "path": "Observation.category", + "value": { + "coding": [ + { + "system": "http://ncimeta.nci.nih.gov", + "code": "C0332157" + } + ] + } + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-environment-FinancialSituationPanel": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-environment-FinancialSituationPanel", + "resource": "DiagnosticReport", + "fixedValues": [ + { + "path": "DiagnosticReport.codedDiagnosis", + "value": { + "coding": [ + { + "system": "http://ncimeta.nci.nih.gov", + "code": "C0516918" + } + ] + } + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-environment-AnnualIncome": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-environment-AnnualIncome", + "resource": "Observation", + "fixedValues": [ + { + "path": "Observation.code", + "value": { + "coding": [ + { + "system": "http://ncimeta.nci.nih.gov", + "code": "C0557163" + } + ] + } + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-environment-IncomeSource": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-environment-IncomeSource", + "resource": "Observation", + "fixedValues": [ + { + "path": "Observation.code", + "value": { + "coding": [ + { + "system": "http://ncimeta.nci.nih.gov", + "code": "C0557162" + } + ] + } + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-environment-IncomeStability": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-environment-IncomeStability", + "resource": "Observation", + "fixedValues": [ + { + "path": "Observation.code", + "value": { + "coding": [ + { + "system": "http://ncimeta.nci.nih.gov", + "code": "C1820459" + } + ] + } + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-environment-HouseholdSize": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-environment-HouseholdSize", + "resource": "Observation", + "fixedValues": [ + { + "path": "Observation.code", + "value": { + "coding": [ + { + "system": "http://ncimeta.nci.nih.gov", + "code": "C0000768" + } + ] + } + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-environment-NumberOfDependents": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-environment-NumberOfDependents", + "resource": "Observation", + "fixedValues": [ + { + "path": "Observation.code", + "value": { + "coding": [ + { + "system": "http://ncimeta.nci.nih.gov", + "code": "C0557509" + } + ] + } + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-environment-AnimalExposure": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-environment-AnimalExposure", + "resource": "Observation", + "fixedValues": [ + { + "path": "Observation.category", + "value": { + "coding": [ + { + "system": "http://ncimeta.nci.nih.gov", + "code": "C2004062" + } + ] + } + }, + { + "path": "Observation.category", + "value": { + "coding": [ + { + "system": "http://ncimeta.nci.nih.gov", + "code": "C0332157" + } + ] + } + }, + { + "path": "Observation.code", + "value": { + "coding": [ + { + "system": "http://ncimeta.nci.nih.gov", + "code": "C0238646" + } + ] + } + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-environment-DomesticViolence": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-environment-DomesticViolence", + "resource": "Observation", + "fixedValues": [ + { + "path": "Observation.code", + "value": { + "coding": [ + { + "system": "http://ncimeta.nci.nih.gov", + "code": "C0206073" + } + ] + } + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-medication-MedicationNotPrescribed": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-medication-MedicationNotPrescribed", + "resource": "MedicationRequest", + "fixedValues": [ + { + "path": "MedicationRequest.modifierExtension.extension.valueBoolean", + "value": true + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-medication-MedicationChange": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-medication-MedicationChange", + "resource": "Basic", + "fixedValues": [ + { + "path": "Basic.code", + "value": { + "coding": [ + { + "system": "http://standardhealthrecord.org/fhir/basic-resource-type", + "code": "shr-medication-MedicationChange" + } + ] + } + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-demographics-HomeTelephoneNumber": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-demographics-HomeTelephoneNumber", + "resource": "ContactPoint", + "fixedValues": [ + { + "path": "ContactPoint.use", + "value": "personal" + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-demographics-WorkTelephoneNumber": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-demographics-WorkTelephoneNumber", + "resource": "ContactPoint", + "fixedValues": [ + { + "path": "ContactPoint.use", + "value": "work" + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-immunization-ImmunizationNotGiven": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-immunization-ImmunizationNotGiven", + "resource": "Immunization", + "fixedValues": [ + { + "path": "Immunization.wasNotGiven", + "value": true + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-lifehistory-PrenatalExposure": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-lifehistory-PrenatalExposure", + "resource": "Observation", + "fixedValues": [ + { + "path": "Observation.category", + "value": { + "coding": [ + { + "system": "http://ncimeta.nci.nih.gov", + "code": "C2004062" + } + ] + } + }, + { + "path": "Observation.category", + "value": { + "coding": [ + { + "system": "http://ncimeta.nci.nih.gov", + "code": "C0332157" + } + ] + } + }, + { + "path": "Observation.code", + "value": { + "coding": [ + { + "system": "http://ncimeta.nci.nih.gov", + "code": "C0871747" + } + ] + } + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-lifehistory-CongenitalAbnormalities": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-lifehistory-CongenitalAbnormalities", + "resource": "Observation", + "fixedValues": [ + { + "path": "Observation.code", + "value": { + "coding": [ + { + "system": "http://ncimeta.nci.nih.gov", + "code": "C0000768" + } + ] + } + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-lifehistory-EducationalAttainment": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-lifehistory-EducationalAttainment", + "resource": "Observation", + "fixedValues": [ + { + "path": "Observation.code", + "value": { + "coding": [ + { + "system": "http://loinc.org", + "code": "63504-5" + } + ] + } + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-lifehistory-Occupation": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-lifehistory-Occupation", + "resource": "Observation", + "fixedValues": [ + { + "path": "Observation.code", + "value": { + "coding": [ + { + "system": "http://loinc.org", + "code": "74287-4" + } + ] + } + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-lifehistory-Employment": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-lifehistory-Employment", + "resource": "Observation", + "fixedValues": [ + { + "path": "Observation.code", + "value": { + "coding": [ + { + "system": "http://loinc.org", + "code": "74165-2" + } + ] + } + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-lifehistory-MilitaryService": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-lifehistory-MilitaryService", + "resource": "DiagnosticReport", + "fixedValues": [ + { + "path": "DiagnosticReport.extension.valueCodeableConcept", + "value": { + "coding": [ + { + "system": "http://ncimeta.nci.nih.gov", + "code": "C3714797" + } + ] + } + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-lifehistory-Travel": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-lifehistory-Travel", + "resource": "Observation", + "fixedValues": [ + { + "path": "Observation.category", + "value": { + "coding": [ + { + "system": "http://ncimeta.nci.nih.gov", + "code": "C2004062" + } + ] + } + }, + { + "path": "Observation.code", + "value": { + "coding": [ + { + "system": "http://ncimeta.nci.nih.gov", + "code": "C0040802" + } + ] + } + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-sex-PregnancyIntention": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-sex-PregnancyIntention", + "resource": "Observation", + "fixedValues": [ + { + "path": "Observation.code", + "value": { + "coding": [ + { + "system": "http://loinc.org", + "code": "64631-5" + } + ] + } + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-sex-SexualBehavior": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-sex-SexualBehavior", + "resource": "DiagnosticReport", + "fixedValues": [ + { + "path": "DiagnosticReport.extension.valueCodeableConcept", + "value": { + "coding": [ + { + "system": "http://ncimeta.nci.nih.gov", + "code": "C1314687" + } + ] + } + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-sex-ContraceptiveMethodsUsed": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-sex-ContraceptiveMethodsUsed", + "resource": "Observation", + "fixedValues": [ + { + "path": "Observation.code", + "value": { + "coding": [ + { + "system": "http://ncimeta.nci.nih.gov", + "code": "C0700589" + } + ] + } + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-sex-ContraceptiveMethodRecommendation": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-sex-ContraceptiveMethodRecommendation", + "resource": "Basic", + "fixedValues": [ + { + "path": "Basic.code", + "value": { + "coding": [ + { + "system": "http://standardhealthrecord.org/fhir/basic-resource-type", + "code": "shr-sex-ContraceptiveMethodRecommendation" + } + ] + } + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-skin-SupportSurfaceEmployed": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-skin-SupportSurfaceEmployed", + "resource": "DeviceUseStatement", + "fixedValues": [ + { + "path": "DeviceUseStatement.extension.valueBoolean", + "value": false + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-skin-PressureUlcerNotPresent": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-skin-PressureUlcerNotPresent", + "resource": "Condition", + "fixedValues": [ + { + "path": "Condition.modifierExtension.extension.valueBoolean", + "value": true + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-skin-PressureUlcerManifestation": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-skin-PressureUlcerManifestation", + "resource": "Observation", + "fixedValues": [ + { + "path": "Observation.code", + "value": { + "coding": [ + { + "system": "http://loinc.org", + "code": "54574-9" + } + ] + } + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-vital-VitalSign": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-vital-VitalSign", + "resource": "Observation", + "fixedValues": [ + { + "path": "Observation.category", + "value": { + "coding": [ + { + "system": "http://hl7.org/fhir/observation-category", + "code": "vital-sign" + } + ] + } + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-vital-RespiratoryRate": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-vital-RespiratoryRate", + "resource": "Observation", + "fixedValues": [ + { + "path": "Observation.category", + "value": { + "coding": [ + { + "system": "http://hl7.org/fhir/observation-category", + "code": "vital-sign" + } + ] + } + }, + { + "path": "Observation.code", + "value": { + "coding": [ + { + "system": "http://loinc.org", + "code": "9279-1" + } + ] + } + }, + { + "path": "Observation.valueQuantity", + "value": { + "system": "http://unitsofmeasure.org", + "code": "/min" + } + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-vital-HeartRate": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-vital-HeartRate", + "resource": "Observation", + "fixedValues": [ + { + "path": "Observation.category", + "value": { + "coding": [ + { + "system": "http://hl7.org/fhir/observation-category", + "code": "vital-sign" + } + ] + } + }, + { + "path": "Observation.code", + "value": { + "coding": [ + { + "system": "http://loinc.org", + "code": "8867-4" + } + ] + } + }, + { + "path": "Observation.valueQuantity", + "value": { + "system": "http://unitsofmeasure.org", + "code": "/min" + } + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-vital-OxygenSaturation": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-vital-OxygenSaturation", + "resource": "Observation", + "fixedValues": [ + { + "path": "Observation.category", + "value": { + "coding": [ + { + "system": "http://hl7.org/fhir/observation-category", + "code": "vital-sign" + } + ] + } + }, + { + "path": "Observation.code", + "value": { + "coding": [ + { + "system": "http://loinc.org", + "code": "59408-5" + } + ] + } + }, + { + "path": "Observation.valueQuantity", + "value": { + "system": "http://unitsofmeasure.org", + "code": "%" + } + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-vital-BodyTemperature": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-vital-BodyTemperature", + "resource": "Observation", + "fixedValues": [ + { + "path": "Observation.category", + "value": { + "coding": [ + { + "system": "http://hl7.org/fhir/observation-category", + "code": "vital-sign" + } + ] + } + }, + { + "path": "Observation.code", + "value": { + "coding": [ + { + "system": "http://loinc.org", + "code": "8310-5" + } + ] + } + }, + { + "path": "Observation.valueQuantity", + "value": { + "system": "http://unitsofmeasure.org", + "code": "Cel" + } + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-vital-BodyHeight": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-vital-BodyHeight", + "resource": "Observation", + "fixedValues": [ + { + "path": "Observation.category", + "value": { + "coding": [ + { + "system": "http://hl7.org/fhir/observation-category", + "code": "vital-sign" + } + ] + } + }, + { + "path": "Observation.code", + "value": { + "coding": [ + { + "system": "http://loinc.org", + "code": "8302-2" + } + ] + } + }, + { + "path": "Observation.valueQuantity", + "value": { + "system": "http://unitsofmeasure.org", + "code": "cm" + } + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-vital-BodyLength": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-vital-BodyLength", + "resource": "Observation", + "fixedValues": [ + { + "path": "Observation.category", + "value": { + "coding": [ + { + "system": "http://hl7.org/fhir/observation-category", + "code": "vital-sign" + } + ] + } + }, + { + "path": "Observation.code", + "value": { + "coding": [ + { + "system": "http://loinc.org", + "code": "8306-3" + } + ] + } + }, + { + "path": "Observation.valueQuantity", + "value": { + "system": "http://unitsofmeasure.org", + "code": "cm" + } + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-vital-BodyWeight": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-vital-BodyWeight", + "resource": "Observation", + "fixedValues": [ + { + "path": "Observation.category", + "value": { + "coding": [ + { + "system": "http://hl7.org/fhir/observation-category", + "code": "vital-sign" + } + ] + } + }, + { + "path": "Observation.code", + "value": { + "coding": [ + { + "system": "http://loinc.org", + "code": "29463-7" + } + ] + } + }, + { + "path": "Observation.valueQuantity", + "value": { + "system": "http://unitsofmeasure.org", + "code": "kg" + } + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-vital-HeadCircumference": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-vital-HeadCircumference", + "resource": "Observation", + "fixedValues": [ + { + "path": "Observation.category", + "value": { + "coding": [ + { + "system": "http://hl7.org/fhir/observation-category", + "code": "vital-sign" + } + ] + } + }, + { + "path": "Observation.code", + "value": { + "coding": [ + { + "system": "http://loinc.org", + "code": "8287-5" + } + ] + } + }, + { + "path": "Observation.valueQuantity", + "value": { + "system": "http://unitsofmeasure.org", + "code": "cm" + } + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-vital-BodyMassIndex": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-vital-BodyMassIndex", + "resource": "Observation", + "fixedValues": [ + { + "path": "Observation.category", + "value": { + "coding": [ + { + "system": "http://hl7.org/fhir/observation-category", + "code": "vital-sign" + } + ] + } + }, + { + "path": "Observation.code", + "value": { + "coding": [ + { + "system": "http://loinc.org", + "code": "39156-5" + } + ] + } + }, + { + "path": "Observation.component.code", + "value": { + "coding": [ + { + "system": "http://loinc.org", + "code": "29463-7" + } + ] + } + }, + { + "path": "Observation.component.code", + "value": { + "coding": [ + { + "system": "http://loinc.org", + "code": "8302-2" + } + ] + } + }, + { + "path": "Observation.component.valueQuantity", + "value": { + "system": "http://unitsofmeasure.org", + "code": "kg" + } + }, + { + "path": "Observation.component.valueQuantity", + "value": { + "system": "http://unitsofmeasure.org", + "code": "cm" + } + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-vital-BloodPressure": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-vital-BloodPressure", + "resource": "Observation", + "fixedValues": [ + { + "path": "Observation.category", + "value": { + "coding": [ + { + "system": "http://hl7.org/fhir/observation-category", + "code": "vital-sign" + } + ] + } + }, + { + "path": "Observation.code", + "value": { + "coding": [ + { + "system": "http://loinc.org", + "code": "55284-4" + } + ] + } + }, + { + "path": "Observation.component.code", + "value": { + "coding": [ + { + "system": "http://loinc.org", + "code": "8480-6" + } + ] + } + }, + { + "path": "Observation.component.code", + "value": { + "coding": [ + { + "system": "http://loinc.org", + "code": "8462-4" + } + ] + } + }, + { + "path": "Observation.component.valueQuantity", + "value": { + "system": "http://unitsofmeasure.org", + "code": "mm[Hg]" + } + }, + { + "path": "Observation.component.valueQuantity", + "value": { + "system": "http://unitsofmeasure.org", + "code": "mm[Hg]" + } + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-vital-SystolicPressure": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-vital-SystolicPressure", + "resource": "Observation", + "fixedValues": [ + { + "path": "Observation.code", + "value": { + "coding": [ + { + "system": "http://loinc.org", + "code": "8480-6" + } + ] + } + }, + { + "path": "Observation.extension", + "value": { + "system": "http://unitsofmeasure.org", + "code": "mm[Hg]" + } + } + ] + }, + "http://standardhealthrecord.org/fhir/StructureDefinition/shr-vital-DiastolicPressure": { + "profile": "http://standardhealthrecord.org/fhir/StructureDefinition/shr-vital-DiastolicPressure", + "resource": "Observation", + "fixedValues": [ + { + "path": "Observation.code", + "value": { + "coding": [ + { + "system": "http://loinc.org", + "code": "8462-4" + } + ] + } + }, + { + "path": "Observation.extension", + "value": { + "system": "http://unitsofmeasure.org", + "code": "mm[Hg]" + } + } + ] + } +} \ No newline at end of file diff --git a/lib/resources/standard_health_record/CodeSystem-shr-actor-LanguageQualifierVS.json b/lib/resources/standard_health_record/CodeSystem-shr-actor-LanguageQualifierVS.json new file mode 100755 index 0000000..4aab537 --- /dev/null +++ b/lib/resources/standard_health_record/CodeSystem-shr-actor-LanguageQualifierVS.json @@ -0,0 +1,78 @@ +{ + "resourceType": "CodeSystem", + "id": "shr-actor-LanguageQualifierVS", + "meta": { + "profile": [ + "http://hl7.org/fhir/StructureDefinition/codesystem-shareable-definition" + ] + }, + "text": { + "status": "generated", + "div": "
SHR LanguageQualifierVS CodeSystem
\n\nSHR GenericAnswersVS CodeSystem
\n\nSHR MissingValueReasonVS CodeSystem
\nReasons that a value associated with a test or other observation is missing.
\nSHR AlcoholUseScreeningToolVS CodeSystem
\n\nSHR DietNutritionConcernVS CodeSystem
\n\nSHR PhysicalActivityLimitationVS CodeSystem
\n\nSHR ReligiousPracticeStatusVS CodeSystem
\n\nSHR ReligiousRestrictionVS CodeSystem
\nIncludes religious restrictions that could impact care, other than dietary restrictions (handled elsewhere).
\nSHR SleepQualityReasonVS CodeSystem
\n\nSHR SpecialDietFollowedVS CodeSystem
\n\nSHR SubstanceAbuseTreatmentTypeVS CodeSystem
\n\nSHR CodingQualifierVS CodeSystem
\n\nSHR PerformanceGradingScaleVS CodeSystem
\nA simple performance grading scale. Also useful for grading quality.
\nSHR QualitativeDateTimeVS CodeSystem
\n\nSHR QualitativeFrequencyVS CodeSystem
\n\nSHR QualitativeLikelihoodVS CodeSystem
\nThe likelihood of an event or state, expressed qualitatively. Qualitative likelihoods are associated with judgments and assessments. Values are based on US Intelligence Community's standard language used to describe judgements of likelihood.
\nSHR QualitativeValueScaleVS CodeSystem
\n\nSHR SemiquantitativeDurationVS CodeSystem
\n\nSHR SemiquantitativeFrequencyVS CodeSystem
\n\nSHR SettingVS CodeSystem
\nWhat type of place is found at a given location. More than one descriptor may be applicable.
\nSHR ThreePriorityVS CodeSystem
\n\nSHR ThreeValueLogicVS CodeSystem
\n\nSHR AddressUseVS CodeSystem
\nHow an address is used by the subject, for example, as a dwelling or as a mailing address.
\nSHR InsuranceProviderTypeVS CodeSystem
\n\nSHR TelecomQualifierVS CodeSystem
\n\nSHR TelephoneTypeVS CodeSystem
\n\nSHR RespiratoryAssistDeviceVS CodeSystem
\n\nSHR RespiratoryRateSettingVS CodeSystem
\n\nSHR EncounterTypeVS CodeSystem
\n\nSHR EpisodeOfCareCompletionVS CodeSystem
\n\nSHR ReasonEncounterDidNotHappenVS CodeSystem
\n\nSHR ReferralSourceTypeVS CodeSystem
\n\nSHR TreatmentCooperationVS CodeSystem
\n\nSHR AnimalExposureVS CodeSystem
\n\nSHR CoinhabitantVS CodeSystem
\n\nSHR HomeEnvironmentRiskVS CodeSystem
\n\nSHR IncomeSourceVS CodeSystem
\n\nSHR NonCashBenefitVS CodeSystem
\n\nSHR ResourceStabilityVS CodeSystem
\n\nSHR RequestStatusVS CodeSystem
\n\nSHR EducationalAttainmentVS CodeSystem
\n\nSHR EmploymentStatusVS CodeSystem
\n\nSHR MilitaryServiceDischargeStatusVS CodeSystem
\n\nSHR MilitaryServiceEraVS CodeSystem
\nValues were taken from Final HMIS Data Standards March 2010 (Homeless Management Information System), field 4.15E Veteran’s Information. See: https://www.onecpd.info/resources/documents/FinalHMISDataStandards_March2010.pdf.
\nSHR MilitaryStatusVS CodeSystem
\n\nSHR TeratogenVS CodeSystem
\n\nSHR USMilitaryBranchVS CodeSystem
\n\nSHR MedicationChangeReasonVS CodeSystem
\n\nSHR MedicationChangeTypeVS CodeSystem
\n\nSHR ReasonMedicationNotUsedVS CodeSystem
\n\nSHR ExposureReasonVS CodeSystem
\nThe reason that an exposure occurred.
\nSHR ObservationNotMadeReasonVS CodeSystem
\nAn explanation of why the observation was not made (or ordered), i.e., why test was not ordered, or why a question was not asked. Since an observation is really a type of procedure, reasons that an observation was not carried out are similar to reasons any procedure might not be carried out.
\nSHR EvidenceQualityVS CodeSystem
\n\nSHR GradeOrStageVS CodeSystem
\n\nSHR ProblemCategoryVS CodeSystem
\n\nSHR ContraceptiveMethodReasonVS CodeSystem
\n\nSHR ContraceptiveMethodVS CodeSystem
\n\nSHR ContraceptiveNotUsedReasonVS CodeSystem
\n\nSHR GenderIdentityVS CodeSystem
\n\nSHR PressureUlcerAssociationVS CodeSystem
\n\nSHR SupportSurfaceBodyPositionVS CodeSystem
\n\nSHR SupportSurfaceCategoryVS CodeSystem
\n\nSHR SupportSurfaceComponentVS CodeSystem
\n\nSHR SupportSurfaceFeatureVS CodeSystem
\n\nSHR BloodPressureMethodVS CodeSystem
\nThe method used to measure blood pressure.
\nSHR BloodPressureQualifierVS CodeSystem
\nCode further describing the blood pressure measurement.
\nSHR BodyHeightQualifierVS CodeSystem
\n\nSHR BodyTemperatureQualifierVS CodeSystem
\n\nSHR BodyWeightQualifierVS CodeSystem
\n\nSHR HeartRateMethodVS CodeSystem
\nMethod of measuring heart rate.
\nSHR HeartRateQualifierVS CodeSystem
\nDetails of a heart rate measurement.
\nSHR RespiratoryRateMethodVS CodeSystem
\nMethods of measuring respiratory rate.
\nSHR RespiratoryRateQualifierVS CodeSystem
\nDetails of a respiratory rate measurement.
\nSHR base64Binary Extension
\n \nSHR boolean Extension
\n \nSHR code Extension
\n \nSHR date Extension
\n \nSHR dateTime Extension
\n \nSHR decimal Extension
\n \nSHR id Extension
\n \nSHR instant Extension
\n \nSHR integer Extension
\n \nSHR markdown Extension
\n \nSHR oid Extension
\n \nSHR positiveInt Extension
\n \nSHR string Extension
\n \nSHR time Extension
\n \nSHR unsignedInt Extension
\n \nSHR uri Extension
\n \nSHR xhtml Extension
\n \nSHR AgeAtDeath Extension
\nThe age, age range, or age group when the cessation of life happens.
\nSHR Anonymized Extension
\nFlag indicating if personally identifiable information has been withheld.
\nSHR DateOfDeath Extension
\nThe calendar date of subject's death.
\nSHR Deceased Extension
\nAn indication that the person is no longer living, given by a date, time of death, or a boolean value which, when true, indicates the person is deceased.
\nSHR EmergencyContact Profile
\nA personal contact specifically designated to be used for emergencies.
\nSHR Mapping Summary
\nshr.actor.EmergencyContact maps to CareTeam:\n participant is 1..1\n Provider maps to participant.member\n HealthcareRole maps to participant.role\n GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to participant.period\n\n
SHR FictionalPerson Extension
\nFlag indicating if this record represents a fictional (synthetic, not real) person.
\nSHR LanguageQualifier Extension
\nAdditional information about a person's use of language.
\nSHR LanguageUsed Extension
\nLanguage used for communication by a human, either the subject of record, parent, or other involved person.
\nSHR NoPrimaryCareProvider Profile
\nThe medical professional responsible for first-line care of an individual.
\nSHR Mapping Summary
\nshr.actor.NoPrimaryCareProvider maps to CareTeam:\n participant is 1..1\n Provider maps to participant.member\n HealthcareRole maps to participant.role\n GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to participant.period\n\n
SHR Organization Profile
\nA social or legal structure formed by human beings.
\nSHR Mapping Summary
\nshr.actor.Organization maps to Organization:\n OrganizationName maps to name\n OrganizationAlias maps to alias // I wish FHIR allowed multiple names, but it doesn't\n OrganizationType maps to type\n OrganizationIdentifyingCode maps to identifier\n AddressUsed maps to address\n Telecom maps to telecom\n ActiveFlag maps to active\n\n
SHR Participant Extension
\nA statement about an actor who did (or did not) participate in a certain task or activity. Unlike a HealthcareInvolvement which continues over period of time, the participant is associated with doing or not doing a specific task, such admitting a patient, performing a procedure, or taking a measurement.
\nSHR ParticipationType Extension
\nThe detail of how the performer engaged in the task, for example, as the attending physician, surgical assistant, etc.
\nSHR Practitioner Extension
\nA person who practices a healing art.
\nSHR Practitioner Profile
\nA person who practices a healing art.
\nSHR Mapping Summary
\nshr.actor.Practitioner maps to Practitioner:\n HumanName maps to name\n DateOfBirth maps to birthDate\n AdministrativeGender maps to gender\n AddressUsed maps to address\n Telecom maps to telecom\n LanguageUsed maps to communication\n Affiliation maps to role.organization // not exactly\n NationalProviderIdentifier maps to identifier\n MedicalSpecialty maps to role.specialty\n\n
SHR PrimaryCareProvider Profile
\nThe medical professional responsible for first-line care of an individual.
\nSHR Mapping Summary
\nshr.actor.PrimaryCareProvider maps to CareTeam:\n participant is 1..1\n Provider maps to participant.member\n HealthcareRole maps to participant.role\n GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to participant.period\n\n
SHR ProviderRelationship Profile
\nA person or organization responsible for providing a service to the person of record. Such a relationship can exist without a specific encounter or services being rendered; for example, an emergency contact relationship can exist without ever calling upon that person. The entry can also be used to state that a provider relationship does not exist, e.g., patient does not have a primary care provider.
\nSHR Mapping Summary
\nshr.actor.ProviderRelationship maps to CareTeam:\n participant is 1..1\n Provider maps to participant.member\n HealthcareRole maps to participant.role\n GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to participant.period\n\n
SHR RelatedPerson Extension
\nA person, other than a practitioner or the patient (the person of record) who is relevant to the health or social situation of the subject.
\nSHR RelatedPerson Profile
\nA person, other than a practitioner or the patient (the person of record) who is relevant to the health or social situation of the subject.
\nSHR Mapping Summary
\nshr.actor.RelatedPerson maps to RelatedPerson:\n HumanName maps to name\n DateOfBirth maps to birthDate\n AdministrativeGender maps to gender\n AddressUsed maps to address\n Telecom maps to telecom\n\n
SHR SpokenLanguageProficiency Extension
\nAccuracy and fluency in spoken communication in a language.
\nSHR WrittenLanguageProficiency Extension
\nAccuracy and fluency of reading and writing in a language.
\nSHR AdverseReaction Extension
\nAny noxious and unintended response to a medical product, procedure, or other intervention, for which a causal relationship to an intervention is at least a reasonable possibility i.e., the relationship cannot be ruled out. It is not necessarily associated with a previously-recorded SubstanceRisk. This entry could be used to record the occurrence or non-occurrence of an adverse reaction.
\nSHR AdverseReaction Profile
\nAny noxious and unintended response to a medical product, procedure, or other intervention, for which a causal relationship to an intervention is at least a reasonable possibility i.e., the relationship cannot be ruled out. It is not necessarily associated with a previously-recorded SubstanceRisk. This entry could be used to record the occurrence or non-occurrence of an adverse reaction.
\nSHR Mapping Summary
\nshr.adverse.AdverseReaction maps to Condition:\n Entry.Informant maps to asserter\n Entry.OriginalCreationDate maps to assertedDate\n CodeableConcept maps to code\n ProblemCategory maps to category\n ClinicalStatus maps to clinicalStatus\n Onset maps to onset[x]\n Abatement maps to abatement[x]\n BodySite maps to bodySite\n Severity maps to severity\n GradeOrStage maps to stage\n GradeOrStage.CodeableConcept maps to stage.summary\n Manifestation maps to evidence\n Manifestation.ObservationCode maps to evidence.code\n\n
SHR AdverseReactionAttribution Extension
\nThe cause of the adverse reaction (either known or theorized).
\nSHR AttributionCertainty Extension
\nA specific identifiable level (defined qualitatively or quantitatively) of probability of adverse event being caused or associated with the product or procedure administration to a patient.
\nSHR AllergyIntolerance Profile
\nA statement pertaining to an individual's allergies and intolerances to substances or classes of substances. Can be used to record that a substance does not pose an elevated risk to the subject (NonOccurrenceModifier = true).
\nSHR Mapping Summary
\nshr.allergy.AllergyIntolerance maps to AllergyIntolerance:\n Entry.Informant maps to asserter\n Entry.Author maps to recorder\n Entry.OriginalCreationDate maps to assertedDate\n AllergenIrritant maps to code\n AdverseReactionType maps to type\n Criticality maps to criticality\n SubstanceCategory maps to category\n AllergyVerificationStatus maps to verificationStatus\n Onset maps to onset[x]\n MostRecentOccurrence maps to lastOccurrence\n\n
SHR DrugAllergy Profile
\nAn immune or biochemical adverse reaction to a medication.
\nSHR Mapping Summary
\nshr.allergy.DrugAllergy maps to AllergyIntolerance:\n Entry.Informant maps to asserter\n Entry.Author maps to recorder\n Entry.OriginalCreationDate maps to assertedDate\n AllergenIrritant maps to code\n AdverseReactionType maps to type\n Criticality maps to criticality\n SubstanceCategory maps to category\n AllergyVerificationStatus maps to verificationStatus\n Onset maps to onset[x]\n MostRecentOccurrence maps to lastOccurrence\n\n
SHR FoodAllergy Extension
\nAn immune or biochemical adverse reaction to a food substance.
\nSHR FoodAllergy Profile
\nAn immune or biochemical adverse reaction to a food substance.
\nSHR Mapping Summary
\nshr.allergy.FoodAllergy maps to AllergyIntolerance:\n Entry.Informant maps to asserter\n Entry.Author maps to recorder\n Entry.OriginalCreationDate maps to assertedDate\n AllergenIrritant maps to code\n AdverseReactionType maps to type\n Criticality maps to criticality\n SubstanceCategory maps to category\n AllergyVerificationStatus maps to verificationStatus\n Onset maps to onset[x]\n MostRecentOccurrence maps to lastOccurrence\n\n
SHR NoKnownAllergy Profile
\nThe subject has no known allergies to drugs, foods, biologics, or environmental factors.
\nSHR Mapping Summary
\nshr.allergy.NoKnownAllergy maps to AllergyIntolerance:\n Entry.Informant maps to asserter\n Entry.Author maps to recorder\n Entry.OriginalCreationDate maps to assertedDate\n AllergenIrritant maps to code\n AdverseReactionType maps to type\n Criticality maps to criticality\n SubstanceCategory maps to category\n AllergyVerificationStatus maps to verificationStatus\n Onset maps to onset[x]\n MostRecentOccurrence maps to lastOccurrence\n\n
SHR NoKnownDrugAllergy Profile
\nThe subject has no known allergies to any medications.
\nSHR Mapping Summary
\nshr.allergy.NoKnownDrugAllergy maps to AllergyIntolerance:\n Entry.Informant maps to asserter\n Entry.Author maps to recorder\n Entry.OriginalCreationDate maps to assertedDate\n AllergenIrritant maps to code\n AdverseReactionType maps to type\n Criticality maps to criticality\n SubstanceCategory maps to category\n AllergyVerificationStatus maps to verificationStatus\n Onset maps to onset[x]\n MostRecentOccurrence maps to lastOccurrence\n\n
SHR NoKnownEnvironmentalAllergy Profile
\nThe subject has no known allergies to any environmental factors.
\nSHR Mapping Summary
\nshr.allergy.NoKnownEnvironmentalAllergy maps to AllergyIntolerance:\n Entry.Informant maps to asserter\n Entry.Author maps to recorder\n Entry.OriginalCreationDate maps to assertedDate\n AllergenIrritant maps to code\n AdverseReactionType maps to type\n Criticality maps to criticality\n SubstanceCategory maps to category\n AllergyVerificationStatus maps to verificationStatus\n Onset maps to onset[x]\n MostRecentOccurrence maps to lastOccurrence\n\n
SHR NoKnownFoodAllergy Profile
\nThe subject has no known allergies to any foods.
\nSHR Mapping Summary
\nshr.allergy.NoKnownFoodAllergy maps to AllergyIntolerance:\n Entry.Informant maps to asserter\n Entry.Author maps to recorder\n Entry.OriginalCreationDate maps to assertedDate\n AllergenIrritant maps to code\n AdverseReactionType maps to type\n Criticality maps to criticality\n SubstanceCategory maps to category\n AllergyVerificationStatus maps to verificationStatus\n Onset maps to onset[x]\n MostRecentOccurrence maps to lastOccurrence\n\n
SHR ActionCode Extension
\nThe code for the action, such as an intervention or test, to be carried out.
\nSHR AssociatedEncounter Extension
\nThe encounter or episode of care that led to creation of this entry.
\nSHR Author Extension
\nThe person or organization who created the entry and is responsible for (and may certify) its content.
\nSHR Entry Profile
\nAn item inserted in an electronic record.
\nSHR Mapping Summary
\nshr.base.Entry maps to DomainResource:\n Narrative maps to text\n EntryId maps to id\n Version maps to meta.versionId\n EntryType maps to meta.profile\n LastUpdateDate maps to meta.lastUpdated\n Language maps to language\n TBD "SecurityLabel" maps to meta.security\n TBD "Tag" maps to meta.tag\n\n
SHR FocalSubject Extension
\nThe person or thing that this entry refers to, usually the Person of Record. However, not all entries refer to the Person of Record. The entry could refer to a fetus, care giver, or relative (living or dead).
\nSHR Informant Extension
\nThe person or entity that provided the information in the entry, as distinct from the actor creating the entry, e.g. the subject (patient), medical professional, family member, device or software program.
\nSHR Language Extension
\nA human language, spoken or written.
\nSHR Narrative Profile
\nA human-readable narrative, potentially including images, that contains a summary of the resource, and may be used to represent the content of the resource to a human.
\nSHR Mapping Summary
\nshr.base.Narrative maps to Narrative:\n xhtml maps to div\n NarrativeQualifier maps to status\n\n
SHR NonOccurrenceModifier Extension
\nWhen true, indicates either that the event or action documented in the entry did not occur, or the the thing documented is absent or does not exist.
\nSHR OriginalCreationDate Extension
\nThe point in time when the information was recorded in the system of record.
\nSHR PatientInstructions Extension
\nInformation for the patient, such as, where to get the test, how to prepare for the test, etc.
\nSHR PerformerInstructions Extension
\nInformation for the performer of the test, if needed.
\nSHR PriorityOfRequest Extension
\nUrgency level for which results must be reported to the requestor or responsible individual.
\nSHR RequestNotToPerformActionModifier Extension
\nIf true, the thing requested should not take place. For example, a request to NOT elevate the head of a bed using the code for elevating the bed, and setting RequestNotToPerformActionModifier to true. Other examples include do not ambulate, do not flush NG tube, do not take blood pressure on a certain arm, etc. If the Request.code and RequestAgainstModifier both contain negation, that will reinforce the prohibition, and should not be interpreted as a double negative that equals a positive.
\nSHR ShrId Extension
\nA unique, persistent identifier for the Standard Health Record to which this entry belongs.
\nSHR SubjectIsThirdPartyModifier Extension
\nIf true, the subject of this entry is someone other than the Person of Record, for example, a family member.
\nSHR AlcoholBingeFrequency Extension
\nHow often have you had 6 or more Units if female, or 8 or more if male, on a single occasion in the last year?.
\nSHR AlcoholUse Profile
\nThe history of the subject's use of alcohol.
\nSHR Mapping Summary
\nshr.behavior.AlcoholUse maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n CodeableConcept maps to value[x].CodeableConcept\n\n
SHR AssessmentTool Extension
\nThe name of the formal assessment or screening tool used to assess the behavior.
\nSHR BehavioralObservation Profile
\nA statement about observable responses, actions, or activities of the subject. Can be used to assert or deny behaviors.
\nSHR Mapping Summary
\nshr.behavior.BehavioralObservation maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n CodeableConcept maps to value[x].CodeableConcept\n\n
SHR DietAndNutrition Profile
\nThe usual food and drink consumed by an individual.
\nSHR Mapping Summary
\nshr.behavior.DietAndNutrition maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n CodeableConcept maps to value[x].CodeableConcept\n\n
SHR DietNutritionConcern Extension
\nAn anxiety or worry about the diet or nutritional intake of the subject.
\nSHR ExerciseHoursPerWeek Extension
\nHours of moderate or vigorous activity per week.
\nSHR HasSufficientFood Extension
\n \nSHR HoursSleepPerNight Extension
\nTypical hours spent sleeping per night.
\nSHR IntravenousDrugUse Profile
\nRecords whether the subject injects recreational drugs.
\nSHR Mapping Summary
\nshr.behavior.IntravenousDrugUse maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n CodeableConcept maps to value[x].CodeableConcept\n\n
SHR NicotineUse Profile
\nRecords the history of a subject's use of nicotine.
\nSHR Mapping Summary
\nshr.behavior.NicotineUse maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n CodeableConcept maps to value[x].CodeableConcept\n\n
SHR ONCSmokingStatus Profile
\nRecords the subject's use of tobacco.
\nSHR Mapping Summary
\nshr.behavior.ONCSmokingStatus maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n CodeableConcept maps to value[x].CodeableConcept\n\n
SHR PhysicalActivityLevel Profile
\nThe amount of exercise or other physical activity compared to others of the same age. See BMC Medical Research Methodology 2012 12:20 1471-2288.
\nSHR Mapping Summary
\nshr.behavior.PhysicalActivityLevel maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n CodeableConcept maps to value[x].CodeableConcept\n\n
SHR PhysicalActivityLimitation Extension
\nAnything that limits physical activity, including health factors, logistical, monetary, or social restrictions.
\nSHR ReadinessToChange Extension
\nHow motivated the subject is to change the behavior, if the behavior is ongoing, and change would be beneficial.
\nSHR ReligiousPractice Profile
\nThe religion practiced by the focal subject.
\nSHR Mapping Summary
\nshr.behavior.ReligiousPractice maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n CodeableConcept maps to http://hl7.org/fhir/StructureDefinition/patient-religion //????\n ReligiousCongregation maps to http://hl7.org/fhir/StructureDefinition/patient-congregation\n\n
SHR ReligiousPracticeStatus Extension
\nThe extent to which the religious practice is actively followed.
\nSHR ReligiousRestriction Extension
\nAny restriction on that derives from religion and may impact medical treatment, other than dietary (handled elsewhere).
\nSHR SleepQuality Profile
\nSelf-reported sleep quality.
\nSHR Mapping Summary
\nshr.behavior.SleepQuality maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n CodeableConcept maps to value[x].CodeableConcept\n\n
SHR SleepQualityReason Extension
\nReason for poor sleep quality.
\nSHR SpecialDietFollowed Extension
\nA type of nutritional plan followed by the subject.
\nSHR SubstanceAbuseTreatment Profile
\nThe treatment program used to address a substance abuse problem.
\nSHR Mapping Summary
\nshr.behavior.SubstanceAbuseTreatment maps to Procedure:\n ProcedureStatus maps to status\n NonOccurrenceModifier maps to notPerformed\n NonOccurrenceModifier.Reason maps to reasonNotPerformed\n OccurrenceTime.dateTime maps to performed[x].dateTime\n OccurrenceTime.TimePeriod maps to performed[x].Period\n ProcedureParticipant maps to performer\n ProcedureParticipant.PersonOfRecord maps to performer.actor\n ProcedureParticipant.Practitioner maps to performer.actor\n ProcedureParticipant.RelatedPerson maps to performer.actor\n ProcedureParticipant.ParticipationType maps to performer.role\n Facility maps to location\n Reason maps to reasonCode\n\n
SHR SubstanceUse Profile
\nAssertion concerning the past or current use of a substance (alcohol, recreational drugs, illegal drugs, or abuse of prescription medication) that could negatively impact the subject's health.
\nSHR Mapping Summary
\nshr.behavior.SubstanceUse maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n CodeableConcept maps to value[x].CodeableConcept\n\n
SHR TroubleFallingAsleep Extension
\nHow often the subject has trouble falling asleep.
\nSHR TroubleStayingAsleep Extension
\nHow often the subject has trouble staying asleep.
\nSHR ViolentBehaviorRisk Profile
\nRisk or danger posed by the focal subject to others and/or his or herself due to violent behavior.
\nSHR Mapping Summary
\nshr.behavior.ViolentBehaviorRisk maps to Basic:\n\n
SHR ViolentRiskToOthers Extension
\nRisk or danger posed by the focal subject to others.
\nSHR ViolentRiskToSelf Extension
\nRisk or danger posed by the focal subject to his or herself.
\nSHR WakeFeelingRested Extension
\nHow often the subject feels rested when they wake up.
\nSHR Address Profile
\nAn address expressed using postal conventions (as opposed to GPS or other location definition formats). This data type may be used to convey addresses for use in delivering mail as well as for visiting locations and which might not be valid for mail delivery. There are a variety of postal address formats defined around the world. (Source: HL7 FHIR).
\nSHR Mapping Summary
\nshr.core.Address maps to Address:\n AddressLine maps to line\n City maps to city\n County maps to district\n State maps to state\n PostalCode maps to postalCode\n Country maps to country\n use is 0..0\n type is 0..0\n\n
SHR Age Extension
\nHow long something has existed (quantitative).
\nSHR Age Profile
\nHow long something has existed (quantitative).
\nSHR Mapping Summary
\nshr.core.Age maps to Age:\n decimal maps to value\n Units.Coding.code maps to code\n Units.Coding.Vocabulary maps to system\n Units.Coding.DisplayText maps to unit\n\n
SHR AgeGroup Extension
\nSubgroups of populations based on age.
\nSHR AgeRange Extension
\nA quantitative range of ages. One of the two ages must be specified.
\nSHR Annotation Profile
\nA text note which also contains information about who made the statement and when.
\nSHR Mapping Summary
\nshr.core.Annotation maps to Annotation:\n string maps to text\n Author maps to author[x].Reference\n OccurrenceTime maps to time\n\n
SHR Area Extension
\nThe extent of a 2-dimensional surface enclosed within a boundary.
\nSHR BodySite Extension
\nLocation on or in the body.
\nSHR BodySite Profile
\nLocation on or in the body.
\nSHR Mapping Summary
\nshr.core.BodySite maps to BodySite:\n CodeableConcept maps to code\n Laterality maps to modifier (slice on = coding.code)\n Directionality maps to modifier\n PortionTotality maps to modifier\n Description maps to description\n\n
SHR Circumference Extension
\nThe length of such a boundary line of a figure, area, or object.
\nSHR ClockDirection Extension
\nA direction indicated by an angle relative to 12 o'clock.
\nSHR CodeableConcept Extension
\nA set of codes drawn from different coding systems, representing the same concept.
\nSHR CodeableConcept Profile
\nA set of codes drawn from different coding systems, representing the same concept.
\nSHR Mapping Summary
\nshr.core.CodeableConcept maps to CodeableConcept:\n Coding maps to coding\n DisplayText maps to text\n\n
SHR Coding Profile
\nCoding of a concept, drawn from a controlled vocabulary. Includes the vocabulary and version, if applicable. May include a display text, and a descriptor expressing the intended interpretation of the code.
\nSHR Mapping Summary
\nshr.core.Coding maps to Coding:\n code maps to code\n Vocabulary maps to system\n VocabularyVersion maps to version\n DisplayText maps to display\n\n
SHR CodingQualifier Extension
\nA description of the purpose or origin of the code that assists in the interpretation of the code.
\nSHR Count Extension
\nThe number of non-null items in a referenced set of items or values.
\nSHR Country Extension
\nCountry - a nation as commonly understood or generally accepted, expressed in ISO 3166 Alpha-2 (2-letter) codes.
\nSHR Depth Extension
\nThe extent downward or inward; the perpendicular measurement from the surface downward to determine deepness.
\nSHR Details Extension
\nParticulars considered individually and in relation to a whole.
\nSHR DollarAmount Profile
\nAn amount of money expressed in US dollars.
\nSHR Mapping Summary
\nshr.core.DollarAmount maps to Quantity:\n decimal maps to value\n Units.Coding.code maps to code\n Units.Coding.Vocabulary maps to system\n Units.Coding.DisplayText maps to unit\n\n
SHR Duration Extension
\nThe length of time that something continues.
\nSHR Duration Profile
\nThe length of time that something continues.
\nSHR Mapping Summary
\nshr.core.Duration maps to Duration:\n decimal maps to value\n Units.Coding.code maps to code\n Units.Coding.Vocabulary maps to system\n Units.Coding.DisplayText maps to unit\n\n
SHR EffectiveDate Extension
\nThe date when something is to take effect.
\nSHR EffectiveTimePeriod Extension
\nThe date and time span for which something is active, valid, or in force.
\nSHR EffectiveTimePeriod Profile
\nThe date and time span for which something is active, valid, or in force.
\nSHR Mapping Summary
\nshr.core.EffectiveTimePeriod maps to Period:\n TimePeriodStart maps to start\n TimePeriodEnd maps to end\n\n
SHR Explanation Extension
\nA set of statements describing a group of facts that clarifies the cause, context and/or consequence of those facts.
\nSHR Frequency Extension
\nHow many occurrences of an event per unit of time.
\nSHR GeneralizedAge Extension
\nQualitative or quantitative, exact or inexact description of age.
\nSHR GeneralizedDateTime Extension
\nA point in time, specified qualitatively or quantitatively.
\nSHR GeneralizedLikelihood Extension
\nQuantitative or qualitative measure of likelihood.
\nSHR GeneralizedTemporalContext Extension
\nA generalized indicator of a dateTime or an age when an event happened.
\nSHR GeopoliticalLocation Profile
\nThe countries of the world and major geopolitical subregions, such as US states.
\nSHR Mapping Summary
\nshr.core.GeopoliticalLocation maps to Address:\n AddressLine maps to line\n City maps to city\n County maps to district\n State maps to state\n PostalCode maps to postalCode\n Country maps to country\n use is 0..0\n type is 0..0\n\n
SHR Geoposition Profile
\nThe location on the surface of the Earth, described by a latitude and longitude (and optional altitude).
\nSHR Mapping Summary
\nshr.core.Geoposition maps to Location:\n position is 1..1\n Latitude maps to position.latitude\n Longitude maps to position.longitude\n Altitude maps to position.altitude\n\n
SHR GestationalAge Extension
\nThe age of the embryo or fetus. This may be assessed by medical history, physical examination, early immunologic pregnancy tests, radiography, ultrasonography, and amniotic fluid analysis.
\nSHR GestationalTemporalContext Extension
\nA named gestational time period, or a gestational age.
\nSHR GestationalTimePeriod Extension
\nA time relative to a pregnancy or childbirth event.
\nSHR HumanName Profile
\nA name used by a human being, written as it would be typically expressed. May include a breakdown of the various elements of the name (family name, given name, etc.).
\nSHR Mapping Summary
\nshr.core.HumanName maps to HumanName:\n string maps to text\n HumanNamePrefix maps to prefix\n GivenName maps to given\n FamilyName maps to family\n HumanNameSuffix maps to suffix\n HumanNameUse maps to use\n EffectiveTimePeriod maps to period\n\n
SHR Identifier Profile
\nA numeric or alphanumeric string that is associated with a single object or entity within a given system. Typically, identifiers are used to connect content in resources to external content available in other frameworks or protocols. Identifiers are associated with objects, and may be changed or retired due to human or system process and errors.
\nSHR Mapping Summary
\nshr.core.Identifier maps to Identifier:\n string maps to value\n TimePeriod maps to period\n Organization maps to assigner\n\n
SHR Length Extension
\nThe measurement or linear extent of something from end to end; the greater of two or the greatest of three dimensions of a body.
\nSHR Likelihood Extension
\nA measure of the expectation of the occurrence of a particular event, as a percentage.
\nSHR Location Extension
\nA position, site, or point in space where something can be found.
\nSHR LowerBound Extension
\nA measured or measurable amount with units that is known to be bounded from below by the quantity represented.
\nSHR LowerBound Profile
\nA measured or measurable amount with units that is known to be bounded from below by the quantity represented.
\nSHR Mapping Summary
\nshr.core.LowerBound maps to Quantity:\n decimal maps to value\n Units.Coding.code maps to code\n Units.Coding.Vocabulary maps to system\n Units.Coding.DisplayText maps to unit\n LowerBoundType maps to comparator\n\n
SHR OccurrenceTime Extension
\nThe point in time or span of time in which something happens.
\nSHR Percentage Extension
\nA percentage value where 100.0 represents 100%.
\nSHR PeriodOfUse Profile
\nA period of time when a device, medication, or other therapy is used.
\nSHR Mapping Summary
\nshr.core.PeriodOfUse maps to Period:\n TimePeriodStart maps to start\n TimePeriodEnd maps to end\n\n
SHR Priority Extension
\nAn ordinal numbered priority where 1=highest priority, 2=second highest priority, etc.
\nSHR QualitativeDateTime Extension
\nA point in time, described qualitatively.
\nSHR QualitativeLikelihood Extension
\nA qualitative (subjective) likelihood.
\nSHR Quantity Extension
\nA quantity with Units.
\nSHR Quantity Profile
\nA quantity with Units.
\nSHR Mapping Summary
\nshr.core.Quantity maps to Quantity:\n decimal maps to value\n Units.Coding.code maps to code\n Units.Coding.Vocabulary maps to system\n Units.Coding.DisplayText maps to unit\n\n
SHR Reason Extension
\nThe justification for an action or non-action, conclusion, opinion, etc.
\nSHR Setting Extension
\nDescription of the place or type of surroundings where something is positioned or where an event takes place.
\nSHR State Extension
\nSub-unit of a country with limited sovereignty in a federally organized country. A code may be used if codes are in common use (i.e. US 2 letter state codes). (Source: HL7 FHIR).
\nSHR Statistic Profile
\nA quantity that represents a statistic, e.g. maximum, minimum, mean, median, etc.
\nSHR Mapping Summary
\nshr.core.Statistic maps to Quantity:\n decimal maps to value\n Units.Coding.code maps to code\n Units.Coding.Vocabulary maps to system\n Units.Coding.DisplayText maps to unit\n\n
SHR StatisticType Extension
\nThe type of statistic that is represented by the value.
\nSHR Substance Extension
\nAny matter of defined composition that has discrete existence, whose origin may be biological, mineral or chemical.
\nSHR TimePeriod Extension
\nA period of time defined by a start and end time, date, or year.
\nSHR TimePeriod Profile
\nA period of time defined by a start and end time, date, or year.
\nSHR Mapping Summary
\nshr.core.TimePeriod maps to Period:\n TimePeriodStart maps to start\n TimePeriodEnd maps to end\n\n
SHR UnitedStatesAddress Profile
\nAn address for a place in the USA, conforming to US mail postal conventions. (Source: HL7 FHIR).
\nSHR Mapping Summary
\nshr.core.UnitedStatesAddress maps to Address:\n AddressLine maps to line\n City maps to city\n County maps to district\n State maps to state\n PostalCode maps to postalCode\n Country maps to country\n use is 0..0\n type is 0..0\n\n
SHR UpperBound Extension
\nA measured or measurable amount with units that is known to be bounded from above by the quantity represented.
\nSHR UpperBound Profile
\nA measured or measurable amount with units that is known to be bounded from above by the quantity represented.
\nSHR Mapping Summary
\nshr.core.UpperBound maps to Quantity:\n decimal maps to value\n Units.Coding.code maps to code\n Units.Coding.Vocabulary maps to system\n Units.Coding.DisplayText maps to unit\n UpperBoundType maps to comparator\n\n
SHR Volume Extension
\nThe amount of three dimensional space occupied by an object or the capacity of a space or container.
\nSHR Width Extension
\nThe measurement or extent of something from side to side.
\nSHR CountryOfIssue Extension
\nA country acting as an assuing authority for a document.
\nSHR DriversLicenseNumber Extension
\nIdentifying information from a drivers license.
\nSHR FamilialRelationship Extension
\nThe relationship of the subject to another person in the same (extended) family. May or may not be a blood relative (determined by value). Can be used to indicate there is no relation of the given type (e.g., no siblings), using the NonOccurrenceModifier.
\nSHR FathersName Extension
\nThe name of the father as it was or likely to have been recorded on the birth certificate of the subject; most likely the name of the father at the time of birth of the subject.
\nSHR HealthInsurance Profile
\nHealth insurance coverage available (even if not used for payment for a given encounter).
\nSHR Mapping Summary
\nshr.demographics.HealthInsurance maps to Coverage:\n CodeableConcept maps to type\n InsuranceMemberId maps to subscriberId\n EffectiveTimePeriod maps to period\n\n
SHR HomeTelephoneNumber Profile
\nA telephone number associated with a person's residence.
\nSHR Mapping Summary
\nshr.demographics.HomeTelephoneNumber maps to ContactPoint:\n TelecomNumberOrAddress maps to value\n TelecomType maps to system\n TelecomQualifier maps to use\n EffectiveTimePeriod maps to period\n\n
SHR PassportNumber Extension
\nIndicator of citizenship and identity.
\nSHR PersonOfRecord Extension
\nExtended demographic information about the subject of this SHR.
\nSHR PersonOfRecord Profile
\nExtended demographic information about the subject of this SHR.
\nSHR Mapping Summary
\nshr.demographics.PersonOfRecord maps to Patient:\n HumanName maps to name\n DateOfBirth maps to birthDate\n MultipleBirth maps to multipleBirth[x].boolean\n MultipleBirth.MultipleBirthOrder maps to multipleBirth[x].integer\n BirthSex maps to http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex\n PlaceOfBirth maps to http://hl7.org/fhir/StructureDefinition/birthPlace\n AdministrativeGender maps to gender\n Race maps to http://hl7.org/fhir/us/core/StructureDefinition/us-core-race\n Ethnicity maps to http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity\n MaritalStatus maps to maritalStatus\n MothersMaidenName maps to http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName\n AddressUsed maps to address\n Telecom maps to telecom\n LanguageUsed maps to communication\n Deceased.boolean maps to deceased[x].boolean\n MedicalInterpreterNeeded maps to http://hl7.org/fhir/StructureDefinition/patient-interpreterRequired\n\n
SHR SocialSecurityNumber Extension
\nA US social security number (SSN).
\nSHR StateOfIssue Extension
\nIssuing authority for a drivers license.
\nSHR Telecom Profile
\nAn electronic means of contacting an organization or individual.
\nSHR Mapping Summary
\nshr.demographics.Telecom maps to ContactPoint:\n TelecomNumberOrAddress maps to value\n TelecomType maps to system\n TelecomQualifier maps to use\n EffectiveTimePeriod maps to period\n\n
SHR TelecomTypeOther Extension
\nSpecification of the type of telecom channel, if the TelecomType is other.
\nSHR TelephoneNumber Profile
\nA sequence of decimal digits (0-9) that is used for identifying a destination telephone line or other device in a telephone network.
\nSHR Mapping Summary
\nshr.demographics.TelephoneNumber maps to ContactPoint:\n TelecomNumberOrAddress maps to value\n TelecomType maps to system\n TelecomQualifier maps to use\n EffectiveTimePeriod maps to period\n\n
SHR WorkTelephoneNumber Profile
\nA telephone number associated with a person's residence.
\nSHR Mapping Summary
\nshr.demographics.WorkTelephoneNumber maps to ContactPoint:\n TelecomNumberOrAddress maps to value\n TelecomType maps to system\n TelecomQualifier maps to use\n EffectiveTimePeriod maps to period\n\n
SHR Device Profile
\nA specific durable physical device used in diagnosis or treatment. The value is the coding for a type of device, for example, a CPAP machine. The same device might be used on multiple patients.
\nSHR Mapping Summary
\nshr.device.Device maps to Device:\n CodeableConcept maps to type\n DeviceUdi maps to udiCarrier.value\n VendorModelNumber maps to model\n\n
SHR DeviceUse Profile
\nA statement pertaining to the use of a device by a subject. May document the use of a device, or that the subject does not use a particular type of device.
\nSHR Mapping Summary
\nshr.device.DeviceUse maps to DeviceUseStatement:\n Entry.FocalSubject maps to subject\n Device maps to device\n Reason maps to indication\n PeriodOfUse maps to whenUsed\n\n
SHR DeviceUseStatus Extension
\nA code representing the patient or other source's judgment about the state of the device used that this statement is about. Generally this will be active or completed.
\nSHR Implanted Extension
\nWhether this device is implanted in the body.
\nSHR Encounter Profile
\nA statement about a planned or actual interaction between a patient and healthcare provider(s) for the purpose of providing healthcare service(s) or assessing the health status of a patient.
\nSHR Mapping Summary
\nshr.encounter.Encounter maps to Encounter:\n Entry.FocalSubject maps to patient\n OccurrenceTime maps to period\n EncounterType maps to class\n Participant maps to participant\n Participant.Practitioner maps to participant.individual\n Participant.RelatedPerson maps to participant.individual\n Participant.OccurrenceTime maps to participant.period\n Participant.ParticipationType maps to participant.type\n ProviderOrganization maps to serviceProvider\n TBD "HealthConcern" maps to indication\n\n
SHR EncounterNonOccurrenceModifier Extension
\nTrue if the encounter did not occur.
\nSHR Facility Extension
\nServices and space and equipment provided for a particular purpose; a building or place that provides a particular service or is used for a particular industry. Could be a clinical site, community site, or a mobile facility.
\nSHR Facility Profile
\nServices and space and equipment provided for a particular purpose; a building or place that provides a particular service or is used for a particular industry. Could be a clinical site, community site, or a mobile facility.
\nSHR Mapping Summary
\nshr.encounter.Facility maps to Location:\n FacilityName maps to name\n Location.Address maps to address\n Location.Geoposition.Latitude maps to position.latitude\n Location.Geoposition.Longitude maps to position.longitude\n Location.Geoposition.Altitude maps to position.altitude\n Telecom maps to telecom\n ManagingOrganization maps to managingOrganization\n FacilityType maps to type\n\n
SHR MobileFacility Extension
\nA facility that moves from place to place, such as Meals-On-Wheels.
\nSHR PaymentSource Extension
\nThe source of payment for the current encounter.
\nSHR ReferralDate Extension
\nThe date when the provider received a referral for service. A referral includes an oral, written, faxed or electronic request for services made by the client or on the client�s behalf.
\nSHR ReferralSourceType Extension
\nThe type of person or entity that instigated the encounter.
\nSHR TreatmentCooperation Extension
\nWhether the patient is undergoing treatment voluntarily, or under a legal order.
\nSHR AnimalExposure Extension
\nThe type of animals or pets the subject is exposed to.
\nSHR AnimalExposure Profile
\nThe type of animals or pets the subject is exposed to.
\nSHR Mapping Summary
\nshr.environment.AnimalExposure maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n\n
SHR AnnualIncome Extension
\nThe amount of earnings made by a family unit in one year, estimated or self-reported.
\nSHR AnnualIncome Profile
\nThe amount of earnings made by a family unit in one year, estimated or self-reported.
\nSHR Mapping Summary
\nshr.environment.AnnualIncome maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n DollarAmount maps to value[x].quantity\n\n
SHR CanAffordChildCare Extension
\nHow often can the subject afford child care?
\nSHR CanAffordChildCare Profile
\nHow often can the subject afford child care?
\nSHR Mapping Summary
\nshr.environment.CanAffordChildCare maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n CodeableConcept maps to value[x].CodeableConcept\n\n
SHR CanAffordClothing Extension
\nHow often can the subject afford clothing?
\nSHR CanAffordClothing Profile
\nHow often can the subject afford clothing?
\nSHR Mapping Summary
\nshr.environment.CanAffordClothing maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n CodeableConcept maps to value[x].CodeableConcept\n\n
SHR CanAffordDentalCare Extension
\nHow often can the subject afford dental care?
\nSHR CanAffordDentalCare Profile
\nHow often can the subject afford dental care?
\nSHR Mapping Summary
\nshr.environment.CanAffordDentalCare maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n CodeableConcept maps to value[x].CodeableConcept\n\n
SHR CanAffordFood Extension
\nHow often can the subject afford food?
\nSHR CanAffordFood Profile
\nHow often can the subject afford food?
\nSHR Mapping Summary
\nshr.environment.CanAffordFood maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n CodeableConcept maps to value[x].CodeableConcept\n\n
SHR CanAffordHousing Extension
\nHow often can the subject afford housing?
\nSHR CanAffordHousing Profile
\nHow often can the subject afford housing?
\nSHR Mapping Summary
\nshr.environment.CanAffordHousing maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n CodeableConcept maps to value[x].CodeableConcept\n\n
SHR CanAffordMedication Extension
\nHow often can the subject afford medications?
\nSHR CanAffordMedication Profile
\nHow often can the subject afford medications?
\nSHR Mapping Summary
\nshr.environment.CanAffordMedication maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n CodeableConcept maps to value[x].CodeableConcept\n\n
SHR CanAffordTransportation Extension
\nHow often can the subject afford transportation?
\nSHR CanAffordTransportation Profile
\nHow often can the subject afford transportation?
\nSHR Mapping Summary
\nshr.environment.CanAffordTransportation maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n CodeableConcept maps to value[x].CodeableConcept\n\n
SHR CanAffordUtilities Extension
\nHow often can the subject afford utilities?
\nSHR CanAffordUtilities Profile
\nHow often can the subject afford utilities?
\nSHR Mapping Summary
\nshr.environment.CanAffordUtilities maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n CodeableConcept maps to value[x].CodeableConcept\n\n
SHR Coinhabitant Extension
\nA person living with the subject.
\nSHR Coinhabitant Profile
\nA person living with the subject.
\nSHR Mapping Summary
\nshr.environment.Coinhabitant maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n\n
SHR DomesticViolence Extension
\nWhether the subject experiences domestic violence.
\nSHR DomesticViolence Profile
\nWhether the subject experiences domestic violence.
\nSHR Mapping Summary
\nshr.environment.DomesticViolence maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n CodeableConcept maps to value[x].CodeableConcept\n\n
SHR EmotionalSafety Extension
\nWhether the subject feels physically safe in the subject's home environment.
\nSHR EmotionalSafety Profile
\nWhether the subject feels physically safe in the subject's home environment.
\nSHR Mapping Summary
\nshr.environment.EmotionalSafety maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n CodeableConcept maps to value[x].CodeableConcept\n\n
SHR EnvironmentalExposuresPanel Profile
\n \nSHR Mapping Summary
\nshr.environment.EnvironmentalExposuresPanel maps to DiagnosticReport:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n CodeableConcept maps to codedDiagnosis\n Observation maps to result\n TBD "Specimen" maps to specimen\n Interpretation maps to conclusion\n ObservationCategory maps to category\n\n
SHR ExposureMethod Extension
\nHow the exposure occurred, e.g. cutaneous contact, injection, ingestion, sexual contact, inhalation.
\nSHR ExposureReason Extension
\nWhy the exposure occurred.
\nSHR ExposureSourceOrVector Extension
\nWhere the substance originated. Vectors include animals (e.g., tick, mosquito, cats, livestock) capable of transmitting an infectious agent among vertebrates. Sources could include food, contaminated drinking water, air, radon gas in the home, etc.
\nSHR ExposureToSubstance Profile
\nA statement about exposure to a substance, type of substance, or disease vector potentially affecting health, including pollutants, blood products, pets, recreational drugs, sexual transmitted diseases, foods, toxins, pathogens, or prenatal exposures to teratogens. Can be used to assert or deny such exposures.
\nSHR Mapping Summary
\nshr.environment.ExposureToSubstance maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n\n
SHR FinancialSituationPanel Profile
\nMeasures of the ability of the subject to obtain and pay for the necessities of life.
\nSHR Mapping Summary
\nshr.environment.FinancialSituationPanel maps to DiagnosticReport:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n CodeableConcept maps to codedDiagnosis\n Observation maps to result\n TBD "Specimen" maps to specimen\n Interpretation maps to conclusion\n ObservationCategory maps to category\n\n
SHR HomeEnvironmentRisk Extension
\nA risk experienced in the home environment.
\nSHR HomeEnvironmentRisk Profile
\nA risk experienced in the home environment.
\nSHR Mapping Summary
\nshr.environment.HomeEnvironmentRisk maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n CodeableConcept maps to value[x].CodeableConcept\n\n
SHR HouseholdSituationPanel Profile
\nInformation about the makeup of the household of the subject.
\nSHR Mapping Summary
\nshr.environment.HouseholdSituationPanel maps to DiagnosticReport:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n CodeableConcept maps to codedDiagnosis\n Observation maps to result\n TBD "Specimen" maps to specimen\n Interpretation maps to conclusion\n ObservationCategory maps to category\n\n
SHR HouseholdSize Extension
\nThe number of people living together with mutual financial dependency. Besides the subject, the household size may include spouse or partner, dependent children including adopted and foster children, dependent parents, dependent siblings and other relatives, but not roommates, ex-spouses, non-dependent children, and unborn children. If the subject lives alone, the household size is 1.
\nSHR HouseholdSize Profile
\nThe number of people living together with mutual financial dependency. Besides the subject, the household size may include spouse or partner, dependent children including adopted and foster children, dependent parents, dependent siblings and other relatives, but not roommates, ex-spouses, non-dependent children, and unborn children. If the subject lives alone, the household size is 1.
\nSHR Mapping Summary
\nshr.environment.HouseholdSize maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n\n
SHR HousingSecurity Extension
\nWhether the subject is at-risk of losing their housing or in a stable housing situation.
\nSHR HousingSecurity Profile
\nWhether the subject is at-risk of losing their housing or in a stable housing situation.
\nSHR Mapping Summary
\nshr.environment.HousingSecurity maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n CodeableConcept maps to value[x].CodeableConcept\n\n
SHR IncomeSource Extension
\nWhere the household income comes from.
\nSHR IncomeSource Profile
\nWhere the household income comes from.
\nSHR Mapping Summary
\nshr.environment.IncomeSource maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n CodeableConcept maps to value[x].CodeableConcept\n\n
SHR IncomeStability Extension
\nWhether the subject regards his or her source of income as dependable.
\nSHR IncomeStability Profile
\nWhether the subject regards his or her source of income as dependable.
\nSHR Mapping Summary
\nshr.environment.IncomeStability maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n CodeableConcept maps to value[x].CodeableConcept\n\n
SHR NonCashBenefit Extension
\nGovernment benefits received by the focal subject, other than cash benefits.
\nSHR NonCashBenefit Profile
\nGovernment benefits received by the focal subject, other than cash benefits.
\nSHR Mapping Summary
\nshr.environment.NonCashBenefit maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n CodeableConcept maps to value[x].CodeableConcept\n\n
SHR NumberOfDependents Extension
\nThe number of dependents supported by the subject.
\nSHR NumberOfDependents Profile
\nThe number of dependents supported by the subject.
\nSHR Mapping Summary
\nshr.environment.NumberOfDependents maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n\n
SHR PhysicalSafety Extension
\nHow often the subject feels physically safe in the subject's home environment.
\nSHR PhysicalSafety Profile
\nHow often the subject feels physically safe in the subject's home environment.
\nSHR Mapping Summary
\nshr.environment.PhysicalSafety maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n CodeableConcept maps to value[x].CodeableConcept\n\n
SHR SocialEnvironmentPanel Profile
\nFactors affecting the health of the subject in their daily living environment.
\nSHR Mapping Summary
\nshr.environment.SocialEnvironmentPanel maps to DiagnosticReport:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n CodeableConcept maps to codedDiagnosis\n Observation maps to result\n TBD "Specimen" maps to specimen\n Interpretation maps to conclusion\n ObservationCategory maps to category\n\n
SHR TransportationAvailability Extension
\nWhether the subject has reliable transportation to bring him or her to medical appointments and to get medications.
\nSHR TransportationAvailability Profile
\nWhether the subject has reliable transportation to bring him or her to medical appointments and to get medications.
\nSHR Mapping Summary
\nshr.environment.TransportationAvailability maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n CodeableConcept maps to value[x].CodeableConcept\n\n
SHR Immunization Profile
\nA statement relating to a vaccination that was or was not administered to the subject.
\nSHR Mapping Summary
\nshr.immunization.Immunization maps to Immunization:\n Vaccine.CodeableConcept maps to vaccineCode\n Vaccine.VaccineManufacturer maps to manufacturer\n ImmunizationNotGivenModifier maps to wasNotGiven\n explanation is 0..1\n ImmunizationNotGivenModifier.Reason maps to explanation.reasonNotGiven\n BodySite maps to site\n RouteIntoBody maps to route\n AmountOfMedication maps to doseQuantity\n TBD "DoseSequenceNumber" maps to vaccinationProtocol.doseSequence\n\n
SHR ImmunizationAdministered Profile
\nRepresents an immunization that was administered to the subject.
\nSHR Mapping Summary
\nshr.immunization.ImmunizationAdministered maps to Immunization:\n Vaccine.CodeableConcept maps to vaccineCode\n Vaccine.VaccineManufacturer maps to manufacturer\n ImmunizationNotGivenModifier maps to wasNotGiven\n explanation is 0..1\n ImmunizationNotGivenModifier.Reason maps to explanation.reasonNotGiven\n BodySite maps to site\n RouteIntoBody maps to route\n AmountOfMedication maps to doseQuantity\n TBD "DoseSequenceNumber" maps to vaccinationProtocol.doseSequence\n\n
SHR ImmunizationNotGiven Profile
\nRepresents an immunization that was not given.
\nSHR Mapping Summary
\nshr.immunization.ImmunizationNotGiven maps to Immunization:\n Vaccine.CodeableConcept maps to vaccineCode\n Vaccine.VaccineManufacturer maps to manufacturer\n ImmunizationNotGivenModifier maps to wasNotGiven\n explanation is 0..1\n ImmunizationNotGivenModifier.Reason maps to explanation.reasonNotGiven\n BodySite maps to site\n RouteIntoBody maps to route\n AmountOfMedication maps to doseQuantity\n TBD "DoseSequenceNumber" maps to vaccinationProtocol.doseSequence\n\n
SHR ChangeFlag Extension
\nIndicator of significant change (delta) from the last or previous measurement.
\nSHR HIVScreeningTest Profile
\nThe result of an HIV Screening Test.
\nSHR Mapping Summary
\nshr.lab.HIVScreeningTest maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n BodySite maps to bodySite\n BodyPosition maps to http://hl7.org/fhir/StructureDefinition/observation-bodyPosition\n Device maps to device\n TBD "Specimen" maps to specimen\n Interpretation maps to interpretation\n ReferenceRange maps to referenceRange\n ChangeFlag maps to http://hl7.org/fhir/StructureDefinition/observation-delta\n\n
SHR HIVScreeningTestRequest Profile
\nA request for a rapid HIV screening test.
\nSHR Mapping Summary
\nshr.lab.HIVScreeningTestRequest maps to ProcedureRequest:\n Entry.Author maps to orderer\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Reason maps to reason[x].CodeableConcept\n OccurrenceTime maps to orderedOn // could potentially map Entry.DateEntered to authoredOn\n ActionCode maps to code\n RequestStatus maps to status\n RequestedPerformanceTime maps to scheduled[x]\n PriorityOfRequest maps to priority\n RequestedPerformer maps to performer\n BodySite maps to bodySite\n TBD "Specimen" maps to specimen\n\n
SHR HIVSupplementalTest Profile
\nThe result of a supplement HIV test, following up an initial screening.
\nSHR Mapping Summary
\nshr.lab.HIVSupplementalTest maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n BodySite maps to bodySite\n BodyPosition maps to http://hl7.org/fhir/StructureDefinition/observation-bodyPosition\n Device maps to device\n TBD "Specimen" maps to specimen\n Interpretation maps to interpretation\n ReferenceRange maps to referenceRange\n ChangeFlag maps to http://hl7.org/fhir/StructureDefinition/observation-delta\n\n
SHR HIVSupplementalTestRequest Profile
\nA request for a confirmatory or additional test for HIV infection.
\nSHR Mapping Summary
\nshr.lab.HIVSupplementalTestRequest maps to ProcedureRequest:\n Entry.Author maps to orderer\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Reason maps to reason[x].CodeableConcept\n OccurrenceTime maps to orderedOn // could potentially map Entry.DateEntered to authoredOn\n ActionCode maps to code\n RequestStatus maps to status\n RequestedPerformanceTime maps to scheduled[x]\n PriorityOfRequest maps to priority\n RequestedPerformer maps to performer\n BodySite maps to bodySite\n TBD "Specimen" maps to specimen\n\n
SHR Test Extension
\nA laboratory, radiologic, or other clinical test or measurement used to determine the presence, absence, or degree of a condition, or assess the function or health of an individual. This includes patient-generated data, such as pedometer readings.
\nSHR Test Profile
\nA laboratory, radiologic, or other clinical test or measurement used to determine the presence, absence, or degree of a condition, or assess the function or health of an individual. This includes patient-generated data, such as pedometer readings.
\nSHR Mapping Summary
\nshr.lab.Test maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n BodySite maps to bodySite\n BodyPosition maps to http://hl7.org/fhir/StructureDefinition/observation-bodyPosition\n Device maps to device\n TBD "Specimen" maps to specimen\n Interpretation maps to interpretation\n ReferenceRange maps to referenceRange\n ChangeFlag maps to http://hl7.org/fhir/StructureDefinition/observation-delta\n\n
SHR TestRequest Extension
\nA record of a request (order) for a test to be performed.
\nSHR TestRequest Profile
\nA record of a request (order) for a test to be performed.
\nSHR Mapping Summary
\nshr.lab.TestRequest maps to ProcedureRequest:\n Entry.Author maps to orderer\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Reason maps to reason[x].CodeableConcept\n OccurrenceTime maps to orderedOn // could potentially map Entry.DateEntered to authoredOn\n ActionCode maps to code\n RequestStatus maps to status\n RequestedPerformanceTime maps to scheduled[x]\n PriorityOfRequest maps to priority\n RequestedPerformer maps to performer\n BodySite maps to bodySite\n TBD "Specimen" maps to specimen\n\n
SHR CongenitalAbnormalities Profile
\nAny abnormality, genetic, anatomical, biochemical, evident at birth or during the neonatal period. Includes malformations, deformations, and chromosomal abnormalities.
\nSHR Mapping Summary
\nshr.lifehistory.CongenitalAbnormalities maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n\n
SHR EducationalAttainment Profile
\nEducational attainment or level of education of individuals.
\nSHR Mapping Summary
\nshr.lifehistory.EducationalAttainment maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n\n
SHR Employer Extension
\nA person or entity which hires the services of another.
\nSHR Employment Profile
\nEngagement in an activity or service for profit, wages, salary, or as a service to others.
\nSHR Mapping Summary
\nshr.lifehistory.Employment maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n\n
SHR EmploymentStatus Extension
\nCondition of employment including full- or part-time, temporary or permanent, and unemployment.
\nSHR MilitaryBranch Extension
\nThe branch of the US military that the subject has served.
\nSHR MilitaryService Profile
\nHistory of service in the US military.
\nSHR Mapping Summary
\nshr.lifehistory.MilitaryService maps to DiagnosticReport:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n CodeableConcept maps to codedDiagnosis\n Observation maps to result\n TBD "Specimen" maps to specimen\n Interpretation maps to conclusion\n ObservationCategory maps to category\n\n
SHR MilitaryServiceDischargeStatus Extension
\nHow the subject was formally discharged from the US Military.
\nSHR MilitaryServiceEra Extension
\nThe time period of US military service.
\nSHR MilitaryStatus Extension
\nThe current connection to the US military.
\nSHR MilitaryStatus Profile
\nThe current connection to the US military.
\nSHR Mapping Summary
\nshr.lifehistory.MilitaryStatus maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n\n
SHR Occupation Profile
\nThe principal activity that a person does to earn money, specifying the job performed by the subject, for example, accountant, programmer analyst, patient care associate, staff nurse, etc.
\nSHR Mapping Summary
\nshr.lifehistory.Occupation maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n\n
SHR PrenatalExposure Profile
\nFetal contact with a dangerous substance via the mother.
\nSHR Mapping Summary
\nshr.lifehistory.PrenatalExposure maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n\n
SHR ServiceConnectedDisability Extension
\nPercentage disability resulting from US Military Service.
\nSHR Travel Profile
\nTrip to a foreign country or an area, particularly when a health risk is involved.
\nSHR Mapping Summary
\nshr.lifehistory.Travel maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n\n
SHR Adherence Extension
\nA statement of the ability and cooperation of the patient in taking medicine or supplement as recommended or prescribed. This includes correct timing, dosage, and frequency.
\nSHR AdherenceLevel Extension
\nThe frequency that the stated treatment plan, prescription, or protocol is followed.
\nSHR Medication Profile
\nA type of prescription drug or over-the-counter drug that is used to prevent, treat, or relieve symptoms of a disease or abnormal condition, but excluding vaccines.
\nSHR Mapping Summary
\nshr.medication.Medication maps to Medication:\n CodeableConcept maps to code\n DoseForm maps to product.form\n Ingredient maps to product.ingredient.item[x].CodeableConcept\n Ingredient.IngredientAmount maps to product.ingredient.amount.numerator\n Ingredient.AmountOfMedication maps to product.ingredient.amount.denominator\n Brand maps to isBrand\n\n
SHR MedicationAfterChange Extension
\nA medication taken, after the change.
\nSHR MedicationBeforeChange Extension
\nThe medication taken, prior to the change.
\nSHR MedicationChange Profile
\nDescription of a modification or change of a medication or dosage.
\nSHR Mapping Summary
\nshr.medication.MedicationChange maps to Basic:\n\n
SHR MedicationNotAdministered Profile
\nA record of a medication NOT administered. Recorded when deviating from the care plan.
\nSHR Mapping Summary
\nshr.medication.MedicationNotAdministered maps to MedicationStatement:\n Medication maps to medication[x].Reference\n PeriodOfUse maps to effective[x].Period\n Reason maps to reasonForUseCodeableConcept\n MedicationNotUsedModifier maps to notTaken\n MedicationNotUsedModifier.Reason maps to reasonNotTaken\n Dosage.AmountPerDose.Quantity maps to dosage.dose[x].SimpleQuantity\n Dosage.AmountPerDose.TBD "Range" maps to dosage.dose[x].Range\n Dosage.TimingOfDoses maps to dosage.timing\n Dosage.DoseAsNeededIndicator maps to dosage.asNeeded[x].boolean\n Dosage.DoseInstructionsText maps to dosage.text\n Dosage.AdditionalDoseInstruction maps to dosage.additionalInstructions\n Dosage.RouteIntoBody maps to dosage.route\n Dosage.AdministrationMethod maps to dosage.method\n Dosage.AdministrationBodySite maps to dosage.site\n Dosage.MaximumDosePerTimePeriod maps to dosage.maxDosePerPeriod\n\n
SHR MedicationNotPrescribed Profile
\nA record of a medication NOT prescribed. Recorded only when deviating from the normal expectation, care plan, or standard of care.
\nSHR Mapping Summary
\nshr.medication.MedicationNotPrescribed maps to MedicationRequest:\n Medication maps to medication[x].Reference\n Reason maps to reasonCode\n RequestStatus maps to status\n RequestedPerformanceTime maps to dispenseRequest.validityPeriod\n RequestedPerformer.Organization maps to dispenseRequest.performer\n PerformerInstructions maps to note.text\n NumberOfRepeatsAllowed maps to dispenseRequest.numberOfRepeatsAllowed\n QuantityPerDispense maps to dispenseRequest.quantity\n SupplyDuration maps to dispenseRequest.expectedSupplyDuration\n Dosage.AmountPerDose.Quantity maps to dosageInstruction.dose[x].SimpleQuantity\n Dosage.AmountPerDose.TBD "Range" maps to dosageInstruction.dose[x].Range\n Dosage.TimingOfDoses maps to dosageInstruction.timing\n Dosage.DoseAsNeededIndicator maps to dosageInstruction.asNeeded[x].boolean\n Dosage.DoseInstructionsText maps to dosageInstruction.text\n Dosage.AdditionalDoseInstruction maps to dosageInstruction.additionalInstructions\n Dosage.RouteIntoBody maps to dosageInstruction.route\n Dosage.AdministrationMethod maps to dosageInstruction.method\n Dosage.AdministrationBodySite maps to dosageInstruction.site\n Dosage.MaximumDosePerTimePeriod maps to dosageInstruction.maxDosePerPeriod\n\n
SHR MedicationNotPrescribedModifier Extension
\nTrue, if the medication should not, or was not prescribed for a particular reason.
\nSHR MedicationPrescription Profile
\nReport of a medication prescription.
\nSHR Mapping Summary
\nshr.medication.MedicationPrescription maps to MedicationRequest:\n Medication maps to medication[x].Reference\n Reason maps to reasonCode\n RequestStatus maps to status\n RequestedPerformanceTime maps to dispenseRequest.validityPeriod\n RequestedPerformer.Organization maps to dispenseRequest.performer\n PerformerInstructions maps to note.text\n NumberOfRepeatsAllowed maps to dispenseRequest.numberOfRepeatsAllowed\n QuantityPerDispense maps to dispenseRequest.quantity\n SupplyDuration maps to dispenseRequest.expectedSupplyDuration\n Dosage.AmountPerDose.Quantity maps to dosageInstruction.dose[x].SimpleQuantity\n Dosage.AmountPerDose.TBD "Range" maps to dosageInstruction.dose[x].Range\n Dosage.TimingOfDoses maps to dosageInstruction.timing\n Dosage.DoseAsNeededIndicator maps to dosageInstruction.asNeeded[x].boolean\n Dosage.DoseInstructionsText maps to dosageInstruction.text\n Dosage.AdditionalDoseInstruction maps to dosageInstruction.additionalInstructions\n Dosage.RouteIntoBody maps to dosageInstruction.route\n Dosage.AdministrationMethod maps to dosageInstruction.method\n Dosage.AdministrationBodySite maps to dosageInstruction.site\n Dosage.MaximumDosePerTimePeriod maps to dosageInstruction.maxDosePerPeriod\n\n
SHR MedicationUse Profile
\nReport of a medication used (or not used). Medication use is either reported, directly observed, or inferred from clinical events associated with orders, prescriptions written, pharmacy dispensings, procedural administrations, and other patient-reported information.
\nSHR Mapping Summary
\nshr.medication.MedicationUse maps to MedicationStatement:\n Medication maps to medication[x].Reference\n PeriodOfUse maps to effective[x].Period\n Reason maps to reasonForUseCodeableConcept\n MedicationNotUsedModifier maps to notTaken\n MedicationNotUsedModifier.Reason maps to reasonNotTaken\n Dosage.AmountPerDose.Quantity maps to dosage.dose[x].SimpleQuantity\n Dosage.AmountPerDose.TBD "Range" maps to dosage.dose[x].Range\n Dosage.TimingOfDoses maps to dosage.timing\n Dosage.DoseAsNeededIndicator maps to dosage.asNeeded[x].boolean\n Dosage.DoseInstructionsText maps to dosage.text\n Dosage.AdditionalDoseInstruction maps to dosage.additionalInstructions\n Dosage.RouteIntoBody maps to dosage.route\n Dosage.AdministrationMethod maps to dosage.method\n Dosage.AdministrationBodySite maps to dosage.site\n Dosage.MaximumDosePerTimePeriod maps to dosage.maxDosePerPeriod\n\n
SHR NonAdherenceReason Extension
\nReason for not following the stated treatment plan, prescription, or protocol.
\nSHR OverTheCounter Extension
\nTrue if the medication is available to consumers without a prescription.
\nSHR RouteIntoBody Extension
\nThe way a substance enters an organism after contact, particularly, the route of drug administration.
\nSHR TypeOfChange Extension
\nWhether the change is a dose change, switch to a new medication, or discontinuation.
\nSHR CodeableConceptObservation Profile
\nAn observation whose value is a codeable concept
\nSHR Mapping Summary
\nshr.observation.CodeableConceptObservation maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n CodeableConcept maps to value[x].CodeableConcept\n\n
SHR HistoryObservation Profile
\nCaptures some aspect of the life, health, or medical history of a subject.
\nSHR Mapping Summary
\nshr.observation.HistoryObservation maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n\n
SHR Observation Profile
\nAn act that is intended to result in new information about a subject. The focus of an observation can include the subject's behavior, physiological state, functional status, environment, exposures to substances, etc. The method of observing can be via direct questions, formal assessment vehicle, laboratory test, or imaging procedure.
\nSHR Mapping Summary
\nshr.observation.Observation maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n\n
SHR ObservationCode Extension
\nA term from a controlled vocabulary that defines the data element (the question, not the answer) as specifically as possible. The specific code should always align with the concept of the element, but may be more specific. For example, the concept associated with medications is code for 'medication used', but the ObservationCode is the code for the particular medication used. For tests, ObservationCode identifies the specific test being performed, and for observations, the specific question being asked.
\nSHR ObservationNonOccurrenceModifier Extension
\nTrue if the observation did not occcur, e.g., if a test was not performed or the assessment was not done, when it might otherwise be expected.
\nSHR ObservationQualifier Extension
\nA description of the conditions or context of an observation, for example, under sedation, fasting or post-exercise. Body position and body site are also qualifiers, but handled separately. A qualifier cannot modify the measurement type; for example, a fasting blood sugar is still a blood sugar.
\nSHR ObservationReason Extension
\nThe reason for making the observation.
\nSHR Panel Profile
\nA group of related observations, usually taken together. Typically the ObservationCategory and ObservationReason are not given for panel observations, but rather given at the level of the panel itself.
\nSHR Mapping Summary
\nshr.observation.Panel maps to DiagnosticReport:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n CodeableConcept maps to codedDiagnosis\n Observation maps to result\n TBD "Specimen" maps to specimen\n Interpretation maps to conclusion\n ObservationCategory maps to category\n\n
SHR SocialHistory Profile
\nThe external elements and conditions which surround, influence, and affect the life and development of the subject. Includes social conditions such as poverty, violence, bullying.
\nSHR Mapping Summary
\nshr.observation.SocialHistory maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n\n
SHR Abatement Extension
\nThe end, remission or resolution.
\nSHR AcademicProblem Profile
\nA problem with learning or behavior in a learning environment.
\nSHR Mapping Summary
\nshr.problem.AcademicProblem maps to Condition:\n Entry.Informant maps to asserter\n Entry.OriginalCreationDate maps to assertedDate\n CodeableConcept maps to code\n ProblemCategory maps to category\n ClinicalStatus maps to clinicalStatus\n Onset maps to onset[x]\n Abatement maps to abatement[x]\n BodySite maps to bodySite\n Severity maps to severity\n GradeOrStage maps to stage\n GradeOrStage.CodeableConcept maps to stage.summary\n Manifestation maps to evidence\n Manifestation.ObservationCode maps to evidence.code\n\n
SHR Asplenia Profile
\nCongenital absence of spleen.
\nSHR Mapping Summary
\nshr.problem.Asplenia maps to Condition:\n Entry.Informant maps to asserter\n Entry.OriginalCreationDate maps to assertedDate\n CodeableConcept maps to code\n ProblemCategory maps to category\n ClinicalStatus maps to clinicalStatus\n Onset maps to onset[x]\n Abatement maps to abatement[x]\n BodySite maps to bodySite\n Severity maps to severity\n GradeOrStage maps to stage\n GradeOrStage.CodeableConcept maps to stage.summary\n Manifestation maps to evidence\n Manifestation.ObservationCode maps to evidence.code\n\n
SHR Criticality Extension
\nA clinical judgment of potential clinical harm, or seriousness, of a condition. When the worst case result is assessed to have a life-threatening or organ system threatening potential, it is considered to be of high criticality.
\nSHR IncludeOnProblemList Extension
\nWhether or not to include this problem on the subject's current problem list.
\nSHR Injury Profile
\nDamage inflicted on the body by an external force.
\nSHR Mapping Summary
\nshr.problem.Injury maps to Condition:\n Entry.Informant maps to asserter\n Entry.OriginalCreationDate maps to assertedDate\n CodeableConcept maps to code\n ProblemCategory maps to category\n ClinicalStatus maps to clinicalStatus\n Onset maps to onset[x]\n Abatement maps to abatement[x]\n BodySite maps to bodySite\n Severity maps to severity\n GradeOrStage maps to stage\n GradeOrStage.CodeableConcept maps to stage.summary\n Manifestation maps to evidence\n Manifestation.ObservationCode maps to evidence.code\n\n
SHR Manifestation Extension
\nA complaint or observed (subjective) indication that a person has a condition or disease. Some examples of symptoms are headache, fever, fatigue, nausea, vomiting, and pain.
\nSHR Manifestation Profile
\nA complaint or observed (subjective) indication that a person has a condition or disease. Some examples of symptoms are headache, fever, fatigue, nausea, vomiting, and pain.
\nSHR Mapping Summary
\nshr.problem.Manifestation maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n\n
SHR MentalHealthProblem Profile
\nA problem relating to a person’s psychological and emotional well-being.
\nSHR Mapping Summary
\nshr.problem.MentalHealthProblem maps to Condition:\n Entry.Informant maps to asserter\n Entry.OriginalCreationDate maps to assertedDate\n CodeableConcept maps to code\n ProblemCategory maps to category\n ClinicalStatus maps to clinicalStatus\n Onset maps to onset[x]\n Abatement maps to abatement[x]\n BodySite maps to bodySite\n Severity maps to severity\n GradeOrStage maps to stage\n GradeOrStage.CodeableConcept maps to stage.summary\n Manifestation maps to evidence\n Manifestation.ObservationCode maps to evidence.code\n\n
SHR Preexisting Extension
\nIf the problem or condition existed before the current episode of care.
\nSHR Problem Profile
\nA statement about a disorder, abnormality, problem, injury, complaint, functionality, concern, illness, disease, ailment, sickness, affliction, upset, difficulty, disorder, symptom, or trouble. May be used to state the existence or non-existence of a problem.
\nSHR Mapping Summary
\nshr.problem.Problem maps to Condition:\n Entry.Informant maps to asserter\n Entry.OriginalCreationDate maps to assertedDate\n CodeableConcept maps to code\n ProblemCategory maps to category\n ClinicalStatus maps to clinicalStatus\n Onset maps to onset[x]\n Abatement maps to abatement[x]\n BodySite maps to bodySite\n Severity maps to severity\n GradeOrStage maps to stage\n GradeOrStage.CodeableConcept maps to stage.summary\n Manifestation maps to evidence\n Manifestation.ObservationCode maps to evidence.code\n\n
SHR Severity Extension
\nDegree of severity of a symptom, disorder, or problem.
\nSHR SupportingEvidenceQuality Extension
\nAn assessment of the quality and/or quantity of the source information that supports judgment.
\nSHR WhenClinicallyRecognized Extension
\nThe time at which a condition or problem was first identified in a healthcare context.
\nSHR Procedure Profile
\nAn action that is or was performed on a patient. This can be a physical intervention like an operation, or less invasive like counseling or hypnotherapy.
\nSHR Mapping Summary
\nshr.procedure.Procedure maps to Procedure:\n ProcedureStatus maps to status\n NonOccurrenceModifier maps to notPerformed\n NonOccurrenceModifier.Reason maps to reasonNotPerformed\n OccurrenceTime.dateTime maps to performed[x].dateTime\n OccurrenceTime.TimePeriod maps to performed[x].Period\n ProcedureParticipant maps to performer\n ProcedureParticipant.PersonOfRecord maps to performer.actor\n ProcedureParticipant.Practitioner maps to performer.actor\n ProcedureParticipant.RelatedPerson maps to performer.actor\n ProcedureParticipant.ParticipationType maps to performer.role\n Facility maps to location\n Reason maps to reasonCode\n\n
SHR ContraceptiveMethodRecommendation Profile
\nThe contraceptive method(s) recommended or prescribed by a provider, after counseling and assessment. More than one method can be selected, if applicable. .
\nSHR Mapping Summary
\nshr.sex.ContraceptiveMethodRecommendation maps to Basic:\n\n
SHR ContraceptiveMethodsUsed Profile
\nThe method or methods of contraception used.
\nSHR Mapping Summary
\nshr.sex.ContraceptiveMethodsUsed maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n\n
SHR CurrentPregnancyStatus Extension
\nWhether or not the subject is currently pregnant.
\nSHR DifficultyWithIntercourse Extension
\nProblem with sexual intercourse.
\nSHR Dispensed Extension
\nWhether an item, such as a medication or device, was given to a subject.
\nSHR GenderIdentity Extension
\nSubjective personal perception of one's own gender, which can be male, female, a blend of both, or neither.
\nSHR GenderIdentity Profile
\nSubjective personal perception of one's own gender, which can be male, female, a blend of both, or neither.
\nSHR Mapping Summary
\nshr.sex.GenderIdentity maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n\n
SHR NumberOfLivingChildren Extension
\nNumber of living children.
\nSHR NumberOfPreviousPregnancies Extension
\nNumber of previous pregnancies.
\nSHR NumberOfSexualPartnersPastYear Extension
\nNumber of sexual partners in past year.
\nSHR PregnancyHistory Profile
\nInformation about current and past pregnancies.
\nSHR Mapping Summary
\nshr.sex.PregnancyHistory maps to DiagnosticReport:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n CodeableConcept maps to codedDiagnosis\n Observation maps to result\n TBD "Specimen" maps to specimen\n Interpretation maps to conclusion\n ObservationCategory maps to category\n\n
SHR PregnancyIntention Profile
\nWhether the subject or his/her partner has a plan or desire to either become pregnant or have a child in the next year/near future.
\nSHR Mapping Summary
\nshr.sex.PregnancyIntention maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n\n
SHR ReasonForNotRecommendingContraceptive Extension
\nIf not using a method of contraception, why.
\nSHR SexualActivity Extension
\nCharacterization of the sexual activity of the subject.
\nSHR SexualBehavior Profile
\nExperience with sexual intercourse.
\nSHR Mapping Summary
\nshr.sex.SexualBehavior maps to DiagnosticReport:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n CodeableConcept maps to codedDiagnosis\n Observation maps to result\n TBD "Specimen" maps to specimen\n Interpretation maps to conclusion\n ObservationCategory maps to category\n\n
SHR SexualIdentity Profile
\nInformation on gender identity and sexual orientation.
\nSHR Mapping Summary
\nshr.sex.SexualIdentity maps to DiagnosticReport:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n CodeableConcept maps to codedDiagnosis\n Observation maps to result\n TBD "Specimen" maps to specimen\n Interpretation maps to conclusion\n ObservationCategory maps to category\n\n
SHR SexualOrientation Extension
\nAn inherent and enduring emotional, romantic or sexual attraction to other people.
\nSHR CausativeFactor Extension
\nThe cause the irritation or inflammation.
\nSHR ImmersionDepth Extension
\nDepth of penetration (sinking) into a support surface.
\nSHR PressureUlcer Profile
\nA single pressure ulcer, tracked over a period of time. Multiple PressureUlcerAssessments (at different times) may be associated with a single PressureUlcer.
\nSHR Mapping Summary
\nshr.skin.PressureUlcer maps to Condition:\n Entry.Informant maps to asserter\n Entry.OriginalCreationDate maps to assertedDate\n CodeableConcept maps to code\n ProblemCategory maps to category\n ClinicalStatus maps to clinicalStatus\n Onset maps to onset[x]\n Abatement maps to abatement[x]\n BodySite maps to bodySite\n Severity maps to severity\n GradeOrStage maps to stage\n GradeOrStage.CodeableConcept maps to stage.summary\n Manifestation maps to evidence\n Manifestation.ObservationCode maps to evidence.code\n\n
SHR PressureUlcerBodySite Profile
\nThe site of a pressure ulcer.
\nSHR Mapping Summary
\nshr.skin.PressureUlcerBodySite maps to BodySite:\n CodeableConcept maps to code\n Laterality maps to modifier (slice on = coding.code)\n Directionality maps to modifier\n PortionTotality maps to modifier\n Description maps to description\n\n
SHR PressureUlcerManifestation Profile
\nObservation regarding the properties and severity of a single pressure ulcer.
\nSHR Mapping Summary
\nshr.skin.PressureUlcerManifestation maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n\n
SHR PressureUlcerNotPresent Profile
\nA statement that there is no pressure ulcer at a given body site. If body site is omitted, or if the body site is a coding representing the entire body, then the inference is that no pressure ulcers is present anywhere on the body.
\nSHR Mapping Summary
\nshr.skin.PressureUlcerNotPresent maps to Condition:\n Entry.Informant maps to asserter\n Entry.OriginalCreationDate maps to assertedDate\n CodeableConcept maps to code\n ProblemCategory maps to category\n ClinicalStatus maps to clinicalStatus\n Onset maps to onset[x]\n Abatement maps to abatement[x]\n BodySite maps to bodySite\n Severity maps to severity\n GradeOrStage maps to stage\n GradeOrStage.CodeableConcept maps to stage.summary\n Manifestation maps to evidence\n Manifestation.ObservationCode maps to evidence.code\n\n
SHR SupportSurface Profile
\nA specific instance of a support surface used to distribute pressure and support a patient. The value is coding of the type of support surface.
\nSHR Mapping Summary
\nshr.skin.SupportSurface maps to Device:\n CodeableConcept maps to type\n DeviceUdi maps to udiCarrier.value\n VendorModelNumber maps to model\n\n
SHR SupportSurfaceBodyPosition Extension
\nWhat body positions the surface can be used for, specifically, sitting or lying.
\nSHR SupportSurfaceCategory Extension
\nThe category of support surface.
\nSHR SupportSurfaceComponent Extension
\nA physical material, structure, or system used alone or in combination with other components to fashion a support surface.
\nSHR SupportSurfaceEmployed Profile
\nA paricular instance of the use of a support surface in patient care.
\nSHR Mapping Summary
\nshr.skin.SupportSurfaceEmployed maps to DeviceUseStatement:\n Entry.FocalSubject maps to subject\n Device maps to device\n Reason maps to indication\n PeriodOfUse maps to whenUsed\n\n
SHR VisibleInternalStructure Extension
\nAn internal body structure visible from outside the body, for example, due to injury.
\nSHR WoundBedAndEdge Extension
\n \nSHR WoundEdgeAppearance Extension
\nEvaluation of the state of the tissue at the edge of the wound.
\nSHR WoundExudate Extension
\nA mass of cells and fluid that has seeped out of a wound.
\nSHR WoundSize Extension
\nThe estimated or measured dimensions of a wound.
\nSHR WoundTunnelling Extension
\nA discharging blind-ended track that extends from the surface of an organ to an underlying area or abscess cavity. The track is invariably lined with granulation tissue. In chronic cases this may be augmented with epithelial tissue.
\nSHR WoundUndermining Extension
\nAssessment of deep tissue (subcutaneous fat and muscle) damage around the wound margin. Tunneling is just under the skin surface and doesn't involve deep tissue, and sinus tracts are a narrow tract that are away from the wound margins and go downward into the wound.
\nSHR BloodPressure Profile
\nThe force of circulating blood on the walls of the arteries.
\nSHR Mapping Summary
\nshr.vital.BloodPressure maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n BodySite maps to bodySite\n BodyPosition maps to http://hl7.org/fhir/StructureDefinition/observation-bodyPosition\n Device maps to device\n TBD "Specimen" maps to specimen\n Interpretation maps to interpretation\n ReferenceRange maps to referenceRange\n ChangeFlag maps to http://hl7.org/fhir/StructureDefinition/observation-delta\n Quantity maps to value[x].Quantity\n SystolicPressure maps to component (slice on = code)\n SystolicPressure.Quantity maps to component.value[x].Quantity\n SystolicPressure.ObservationCode maps to component.code\n DiastolicPressure maps to component\n DiastolicPressure.Quantity maps to component.value[x].Quantity\n DiastolicPressure.ObservationCode maps to component.code\n\n
SHR BodyHeight Profile
\nThe distance from the sole to the crown of the head.
\nSHR Mapping Summary
\nshr.vital.BodyHeight maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n BodySite maps to bodySite\n BodyPosition maps to http://hl7.org/fhir/StructureDefinition/observation-bodyPosition\n Device maps to device\n TBD "Specimen" maps to specimen\n Interpretation maps to interpretation\n ReferenceRange maps to referenceRange\n ChangeFlag maps to http://hl7.org/fhir/StructureDefinition/observation-delta\n Quantity maps to value[x].Quantity\n\n
SHR BodyLength Profile
\nThe distance from the sole of the foot to the crown of the head, lying down (typically 0-2 years).
\nSHR Mapping Summary
\nshr.vital.BodyLength maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n BodySite maps to bodySite\n BodyPosition maps to http://hl7.org/fhir/StructureDefinition/observation-bodyPosition\n Device maps to device\n TBD "Specimen" maps to specimen\n Interpretation maps to interpretation\n ReferenceRange maps to referenceRange\n ChangeFlag maps to http://hl7.org/fhir/StructureDefinition/observation-delta\n Quantity maps to value[x].Quantity\n\n
SHR BodyMassIndex Profile
\nA general indicator of the body fat an individual is carrying based upon the ratio of weight to height.
\nSHR Mapping Summary
\nshr.vital.BodyMassIndex maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n BodySite maps to bodySite\n BodyPosition maps to http://hl7.org/fhir/StructureDefinition/observation-bodyPosition\n Device maps to device\n TBD "Specimen" maps to specimen\n Interpretation maps to interpretation\n ReferenceRange maps to referenceRange\n ChangeFlag maps to http://hl7.org/fhir/StructureDefinition/observation-delta\n Quantity maps to value[x].Quantity\n BodyWeight maps to component (slice on = code)\n BodyWeight.Quantity maps to component.value[x].Quantity\n BodyWeight.ObservationCode maps to component.code\n BodyWeight.Interpretation maps to component.interpretation\n BodyWeight.ReferenceRange maps to component.referenceRange\n BodyHeight maps to component\n BodyHeight.Quantity maps to component.value[x].Quantity\n BodyHeight.ObservationCode maps to component.code\n BodyHeight.Interpretation maps to component.interpretation\n BodyHeight.ReferenceRange maps to component.referenceRange\n\n
SHR BodyTemperature Profile
\nThe measure of the level of heat in a human or animal.
\nSHR Mapping Summary
\nshr.vital.BodyTemperature maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n BodySite maps to bodySite\n BodyPosition maps to http://hl7.org/fhir/StructureDefinition/observation-bodyPosition\n Device maps to device\n TBD "Specimen" maps to specimen\n Interpretation maps to interpretation\n ReferenceRange maps to referenceRange\n ChangeFlag maps to http://hl7.org/fhir/StructureDefinition/observation-delta\n Quantity maps to value[x].Quantity\n\n
SHR BodyWeight Profile
\nThe mass or quantity of heaviness of an individual. Does not include estimates of fetal bodyweight.
\nSHR Mapping Summary
\nshr.vital.BodyWeight maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n BodySite maps to bodySite\n BodyPosition maps to http://hl7.org/fhir/StructureDefinition/observation-bodyPosition\n Device maps to device\n TBD "Specimen" maps to specimen\n Interpretation maps to interpretation\n ReferenceRange maps to referenceRange\n ChangeFlag maps to http://hl7.org/fhir/StructureDefinition/observation-delta\n Quantity maps to value[x].Quantity\n\n
SHR DiastolicPressure Profile
\nThe blood pressure after the contraction of the heart while the chambers of the heart refill with blood, when the pressure is lowest.
\nSHR Mapping Summary
\nshr.vital.DiastolicPressure maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n\n
SHR HeadCircumference Profile
\nCircumference of the head (typically 0-2 years).
\nSHR Mapping Summary
\nshr.vital.HeadCircumference maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n BodySite maps to bodySite\n BodyPosition maps to http://hl7.org/fhir/StructureDefinition/observation-bodyPosition\n Device maps to device\n TBD "Specimen" maps to specimen\n Interpretation maps to interpretation\n ReferenceRange maps to referenceRange\n ChangeFlag maps to http://hl7.org/fhir/StructureDefinition/observation-delta\n Quantity maps to value[x].Quantity\n\n
SHR HeadTiltAngle Extension
\nThe angle at which the head is tilted relative to a level position while physiologic tests are taken.
\nSHR HeartRate Profile
\nThe number of times the heart ventricles contract per unit of time, usually per minute.
\nSHR Mapping Summary
\nshr.vital.HeartRate maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n BodySite maps to bodySite\n BodyPosition maps to http://hl7.org/fhir/StructureDefinition/observation-bodyPosition\n Device maps to device\n TBD "Specimen" maps to specimen\n Interpretation maps to interpretation\n ReferenceRange maps to referenceRange\n ChangeFlag maps to http://hl7.org/fhir/StructureDefinition/observation-delta\n Quantity maps to value[x].Quantity\n\n
SHR OxygenSaturation Profile
\nOxygen saturation in Arterial blood by Pulse oximetry.
\nSHR Mapping Summary
\nshr.vital.OxygenSaturation maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n BodySite maps to bodySite\n BodyPosition maps to http://hl7.org/fhir/StructureDefinition/observation-bodyPosition\n Device maps to device\n TBD "Specimen" maps to specimen\n Interpretation maps to interpretation\n ReferenceRange maps to referenceRange\n ChangeFlag maps to http://hl7.org/fhir/StructureDefinition/observation-delta\n Quantity maps to value[x].Quantity\n\n
SHR RespiratoryRate Profile
\nThe rate of breathing (inhalation and exhalation) measured within in a unit time, expressed as breaths per minute.
\nSHR Mapping Summary
\nshr.vital.RespiratoryRate maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n BodySite maps to bodySite\n BodyPosition maps to http://hl7.org/fhir/StructureDefinition/observation-bodyPosition\n Device maps to device\n TBD "Specimen" maps to specimen\n Interpretation maps to interpretation\n ReferenceRange maps to referenceRange\n ChangeFlag maps to http://hl7.org/fhir/StructureDefinition/observation-delta\n Quantity maps to value[x].Quantity\n\n
SHR SystolicPressure Profile
\nThe blood pressure during the contraction of the left ventricle of the heart, when blood pressure is at its highest.
\nSHR Mapping Summary
\nshr.vital.SystolicPressure maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n\n
SHR VitalSign Profile
\n \nSHR Mapping Summary
\nshr.vital.VitalSign maps to Observation:\n Entry.FocalSubject maps to subject\n Entry.AssociatedEncounter maps to encounter\n Entry.OriginalCreationDate maps to issued\n ObservationCode maps to code\n ObservationCategory maps to category\n ObservationStatus maps to status\n ObservationMethod maps to method\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.TimePeriod maps to effective[x].Period\n ClinicallyRelevantTime.GeneralizedTemporalContext.GeneralizedDateTime.dateTime maps to effective[x].dateTime\n Participant maps to performer\n BodySite maps to bodySite\n BodyPosition maps to http://hl7.org/fhir/StructureDefinition/observation-bodyPosition\n Device maps to device\n TBD "Specimen" maps to specimen\n Interpretation maps to interpretation\n ReferenceRange maps to referenceRange\n ChangeFlag maps to http://hl7.org/fhir/StructureDefinition/observation-delta\n Quantity maps to value[x].Quantity\n\n
SHR AgeGroupVS ValueSet
\n\nSHR HealthcareRoleVS ValueSet
\n\nSHR LanguageQualifierVS ValueSet
\n\nSHR AllergenIrritantVS ValueSet
\n\nSHR AllergyVerificationStatusVS ValueSet
\nWhether the allergy has been verified or not. Intentionally a subset of the codes in FHIR, since refuted would be reflected by correcting the 'elevated risk' element, and records entered in error are not included in SHR.
\nSHR DrugIngredientVS ValueSet
\nDrug allergies involve ingredients or mixtures, not specific dose forms. The value set focuses on drug ingredients.
\nSHR FoodSubstanceVS ValueSet
\n\nSHR GenericAnswersVS ValueSet
\n\nSHR MissingValueReasonVS ValueSet
\nReasons that a value associated with a test or other observation is missing.
\nSHR AlcoholUseScreeningToolVS ValueSet
\n\nSHR DietNutritionConcernVS ValueSet
\n\nSHR PhysicalActivityLimitationVS ValueSet
\n\nSHR ReligiousPracticeStatusVS ValueSet
\n\nSHR ReligiousRestrictionVS ValueSet
\nIncludes religious restrictions that could impact care, other than dietary restrictions (handled elsewhere).
\nSHR SleepQualityReasonVS ValueSet
\n\nSHR SpecialDietFollowedVS ValueSet
\n\nSHR SubstanceAbuseTreatmentTypeVS ValueSet
\n\nSHR SubstanceOfAbuseVS ValueSet
\n\nSHR BodyPositionVS ValueSet
\nThe body position with respect to gravity.
\nSHR BodySiteVS ValueSet
\nLocation on or in the body.
\nSHR ClinicalFindingAbsentVS ValueSet
\n\nSHR ClockDirectionVS ValueSet
\n\nSHR CodingQualifierVS ValueSet
\n\nSHR DirectionalityVS ValueSet
\nAnatomical location or specimen further detailing directionality.
\nSHR DiseaseFindingVS ValueSet
\n\nSHR LateralityVS ValueSet
\nAnatomical location or specimen further detailing the side(s) of interest.
\nSHR LowerBoundTypeVS ValueSet
\n\nSHR ManifestationVS ValueSet
\n\nSHR PerformanceGradingScaleVS ValueSet
\nA simple performance grading scale. Also useful for grading quality.
\nSHR PortionTotalityVS ValueSet
\nObservationQualifier for anatomical location or specimen further detailing the portion or totality, which means arrangement of, or apportioning of an entity.
\nSHR QualitativeDateTimeVS ValueSet
\n\nSHR QualitativeFrequencyVS ValueSet
\n\nSHR QualitativeLikelihoodVS ValueSet
\nThe likelihood of an event or state, expressed qualitatively. Qualitative likelihoods are associated with judgments and assessments. Values are based on US Intelligence Community's standard language used to describe judgements of likelihood.
\nSHR QualitativeValueScaleVS ValueSet
\n\nSHR SemiquantitativeDurationVS ValueSet
\n\nSHR SemiquantitativeFrequencyVS ValueSet
\n\nSHR SettingVS ValueSet
\nWhat type of place is found at a given location. More than one descriptor may be applicable.
\nSHR StatisticTypeVS ValueSet
\nHow to interpret a reported quantity, i.e, whether the quantity is an maximum, minimum, mean, median, etc.
\nSHR ThreePriorityVS ValueSet
\n\nSHR ThreeValueLogicVS ValueSet
\n\nSHR TimeUnitOfMeasureVS ValueSet
\n\nSHR UpperBoundTypeVS ValueSet
\n\nSHR AddressUseVS ValueSet
\nHow an address is used by the subject, for example, as a dwelling or as a mailing address.
\nSHR InsuranceProviderTypeVS ValueSet
\n\nSHR TelecomQualifierVS ValueSet
\n\nSHR TelephoneTypeVS ValueSet
\n\nSHR RespiratoryAssistDeviceVS ValueSet
\n\nSHR RespiratoryRateSettingVS ValueSet
\n\nSHR EncounterTypeVS ValueSet
\n\nSHR EncounterUrgencyVS ValueSet
\n\nSHR EpisodeOfCareCompletionVS ValueSet
\n\nSHR ReasonEncounterDidNotHappenVS ValueSet
\n\nSHR ReferralSourceTypeVS ValueSet
\n\nSHR TreatmentCooperationVS ValueSet
\n\nSHR AnimalExposureVS ValueSet
\n\nSHR CoinhabitantVS ValueSet
\n\nSHR HomeEnvironmentRiskVS ValueSet
\n\nSHR IncomeSourceVS ValueSet
\n\nSHR NonCashBenefitVS ValueSet
\n\nSHR ResourceStabilityVS ValueSet
\n\nSHR ImmunizationNotGivenReasonVS ValueSet
\nReasons for an immunization not given or not recommended. SHR does not use http://hl7.org/fhir/ValueSet/no-immunization-reason because it includes SNOMED precoordinated codes,such as SCT#171266004 No consent - diphtheria immunization.
\nSHR ChangeFlagVS ValueSet
\n\nSHR HIVScreeningTestCodeVS ValueSet
\n\nSHR HIVScreeningTestResultVS ValueSet
\n\nSHR HIVSupplementalTestCodeVS ValueSet
\n\nSHR HIVSupplementalTestResultVS ValueSet
\n\nSHR RequestStatusVS ValueSet
\n\nSHR TestInterpretationVS ValueSet
\n\nSHR CongenitalAbnormalitiesVS ValueSet
\n\nSHR EducationalAttainmentVS ValueSet
\n\nSHR EmploymentStatusVS ValueSet
\n\nSHR MilitaryServiceDischargeStatusVS ValueSet
\n\nSHR MilitaryServiceEraVS ValueSet
\nValues were taken from Final HMIS Data Standards March 2010 (Homeless Management Information System), field 4.15E Veteran’s Information. See: https://www.onecpd.info/resources/documents/FinalHMISDataStandards_March2010.pdf.
\nSHR MilitaryStatusVS ValueSet
\n\nSHR TeratogenVS ValueSet
\n\nSHR USMilitaryBranchVS ValueSet
\n\nSHR MedicationChangeReasonVS ValueSet
\n\nSHR MedicationChangeTypeVS ValueSet
\n\nSHR MedicationNonAdherenceReasonVS ValueSet
\n\nSHR ReasonMedicationNotUsedVS ValueSet
\n\nSHR ExposureReasonVS ValueSet
\nThe reason that an exposure occurred.
\nSHR NonLabObservationStatusVS ValueSet
\nWhether the observation is complete and definite. The set of values is a subset of status values associated with lab tests.
\nSHR ObservationNotMadeReasonVS ValueSet
\nAn explanation of why the observation was not made (or ordered), i.e., why test was not ordered, or why a question was not asked. Since an observation is really a type of procedure, reasons that an observation was not carried out are similar to reasons any procedure might not be carried out.
\nSHR EvidenceQualityVS ValueSet
\n\nSHR GradeOrStageVS ValueSet
\n\nSHR ProblemCategoryVS ValueSet
\n\nSHR CommonPregnancyComplicationVS ValueSet
\n\nSHR ContraceptiveMethodReasonVS ValueSet
\n\nSHR ContraceptiveMethodVS ValueSet
\n\nSHR ContraceptiveNotUsedReasonVS ValueSet
\n\nSHR DifficultyWithIntercourseVS ValueSet
\n\nSHR GenderIdentityVS ValueSet
\n\nSHR SexualActivityVS ValueSet
\n\nSHR SexualOrientationVS ValueSet
\n\nSHR PressureUlcerAssociationVS ValueSet
\n\nSHR PressureUlcerBodySiteVS ValueSet
\n\nSHR SupportSurfaceBodyPositionVS ValueSet
\n\nSHR SupportSurfaceCategoryVS ValueSet
\n\nSHR SupportSurfaceComponentVS ValueSet
\n\nSHR SupportSurfaceFeatureVS ValueSet
\n\nSHR SupportSurfaceVS ValueSet
\n\nSHR VisibleInternalStructureVS ValueSet
\n\nSHR WoundEdgeAppearanceVS ValueSet
\n\nSHR BloodPressureBodySiteVS ValueSet
\n\nSHR BloodPressureMethodVS ValueSet
\nThe method used to measure blood pressure.
\nSHR BloodPressureQualifierVS ValueSet
\nCode further describing the blood pressure measurement.
\nSHR BodyHeightQualifierVS ValueSet
\n\nSHR BodyTemperatureBodySiteVS ValueSet
\n\nSHR BodyTemperatureQualifierVS ValueSet
\n\nSHR BodyWeightQualifierVS ValueSet
\n\nSHR HeartRateMethodVS ValueSet
\nMethod of measuring heart rate.
\nSHR HeartRateQualifierVS ValueSet
\nDetails of a heart rate measurement.
\nSHR OxygenSaturationBodySiteVS ValueSet
\n\nSHR RespiratoryRateMethodVS ValueSet
\nMethods of measuring respiratory rate.
\nSHR RespiratoryRateQualifierVS ValueSet
\nDetails of a respiratory rate measurement.
\n(Requirements Definition)
\n\t\t\tPublished: 2015-04-02 (draft)
\n\t\t\tPublished by: U.S. Office of the National Coordinator (ONC)
\n\t\t\tThis profile defines the expected capabilities of the US Core Requestor actor when conforming to the US Core IG.
\n\t\t\tFHIR Version: | \n\t\t\t\t\t\t1.8.0 | \n\t\t\t\t\t
---|---|
Accepts elements from future versions: | \n\t\t\t\t\t\textensions | \n\t\t\t\t\t
Supported formats: | \n\t\t\t\t\t\txml, json | \n\t\t\t\t\t
The US Core Requestor SHOULD support querying of one or more FHIR resources using appropriate US Core profile(s), RESTful operations defined for the profile and Search parameters identified for the profile.
\n\t\t\t\n\t\t\t\tSecurity:\n\t\t\t
\n\t\t\tUS Core Requestors SHALL implement applicable security requirements documented in the US Core IG.
\n\t\t\tProfile (Resource) | \n\t\t\t\t\t\tSearch | \n\t\t\t\t\t\tRead | \n\t\t\t\t\t\tRead Version | \n\t\t\t\t\t\tInstance History | \n\t\t\t\t\t\tResource History | \n\t\t\t\t\t\tCreate | \n\t\t\t\t\t\tUpdate | \n\t\t\t\t\t\tDelete | \n\t\t\t\t\t
---|---|---|---|---|---|---|---|---|
\n\t\t\t\t\t\t\t (Patient) | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t |
\n\t\t\t\t\t\t\t (AllergyIntolerance) | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t |
\n\t\t\t\t\t\t\t (CarePlan) | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t |
\n\t\t\t\t\t\t\t (CarePlan) | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t |
\n\t\t\t\t\t\t\t (Condition) | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t |
\n\t\t\t\t\t\t\t (Device) | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t |
\n\t\t\t\t\t\t\t (Goal) | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t |
\n\t\t\t\t\t\t\t (Immunization) | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t |
\n\t\t\t\t\t\t\t (DiagnosticReport) | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t |
\n\t\t\t\t\t\t\t (Observation) | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t |
\n\t\t\t\t\t\t\t (Medication) | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t |
\n\t\t\t\t\t\t\t (MedicationStatement) | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t |
\n\t\t\t\t\t\t\t (MedicationRequest) | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t |
\n\t\t\t\t\t\t\t (Observation) | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t |
\n\t\t\t\t\t\t\t (Observation) | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t |
\n\t\t\t\t\t\t\t (Procedure) | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t |
\n\t\t\t\tOperations:\n\t\t\t\tpatient-everything SHOULD
\n\t\t\tThe MedicationStatement and MedicationRequest resources can represent a medication, using either a code or refer to a Medication resource. If the Medication Resource is used in a MedicationStatement or a MedicationRequest, then the READ and SEARCH Criteria **SHALL** be supported.
\n\t\t\tThe MedicationStatement and MedicationRequest resources can represent a medication, using either a code or refer to a Medication resource. * When referencing a Medication resource, the resource may be contained or an external resource. * The server application can choose any one way or more than one method, but if the an external reference to Medication is used, the server SHALL support the include parameter for searching this element. * The client application must support both methods. include: http://hl7.org/fhir/2017Jan/search.html#include contained: http://hl7.org/fhir/2017Jan/references.html#contained Medication:http://hl7.org/fhir/2017Jan/medication.html
\n\t\t\tThe MedicationStatement and MedicationRequest resources can represent a medication, using either a code or refer to a Medication resource. * When referencing a Medication resource, the resource may be contained or an external resource. * The server application can choose any one way or more than one method, but if the an external reference to Medication is used, the server SHALL support the include parameter for searching this element. * The client application must support both methods. include: http://hl7.org/fhir/2017Jan/search.html#include contained: http://hl7.org/fhir/2017Jan/references.html#contained Medication:http://hl7.org/fhir/2017Jan/medication.html
\n\t\t\t(Requirements Definition)
\n\t\t\tPublished: 2016-08-10 (draft)
\n\t\t\tPublished by: U.S. Office of the National Coordinator (ONC)\n\t\t\t
\n\t\t\tThis profile defines the expected capabilities of the US Core Server actor when conforming to the US-Core IG The statement includes the complete list of actual profiles, RESTful operations, search parameters supported by US Core Servers. US Core Requesters have the option of choosing from this list to access necessary data based on their local use cases and other contextual requirements.
\n\t\t\tFHIR Version: | \n\t\t\t\t\t\t1.8.0 | \n\t\t\t\t\t
---|---|
Accepts elements from future versions: | \n\t\t\t\t\t\textensions | \n\t\t\t\t\t
Supported formats: | \n\t\t\t\t\t\txml, json | \n\t\t\t\t\t
Supported profiles: | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\t \n\t\t\t\t\t\t\t\tUS CORE ALLERGYINTOLERANCE\n\t\t\t\t\t\t\t \n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tUS CORE CAREPLAN\n\t\t\t\t\t\t\t \n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tUS CORE CARETEAM\n\t\t\t\t\t\t\t \n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tUS CORE CONDITION\n\t\t\t\t\t\t\t \n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tUS CORE DEVICE\n\t\t\t\t\t\t\t \n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tUS CORE GOAL\n\t\t\t\t\t\t\t \n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tUS CORE IMMUNIZATION\n\t\t\t\t\t\t\t \n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tUS CORE DIAGNOSTICREPORT\n\t\t\t\t\t\t\t \n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tUS CORE OBSERVATIONRESULTS\n\t\t\t\t\t\t\t \n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tUS CORE LOCATION\n\t\t\t\t\t\t\t \n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tUS CORE MEDICATION\n\t\t\t\t\t\t\t \n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tUS CORE MEDICATIONREQUEST\n\t\t\t\t\t\t\t \n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tUS CORE VITALSIGNS\n\t\t\t\t\t\t\t \n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tUS CORE PATIENT\n\t\t\t\t\t\t\t \n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tUS CORE PRACT\n\t\t\t\t\t\t\t \n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tUS CORE PROCEDURE\n\t\t\t\t\t\t\t \n\t\t\t\t\t\t | \n\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t\tSecurity:\n\t\t\t
\n\t\t\tUS Core Servers SHALL implement the security requirements documented in the US-Core IG.
\n\t\t\tProfile (Resource) | \n\t\t\t\t\t\tSearch | \n\t\t\t\t\t\tRead | \n\t\t\t\t\t\tRead Version | \n\t\t\t\t\t\tInstance History | \n\t\t\t\t\t\tResource History | \n\t\t\t\t\t\tCreate | \n\t\t\t\t\t\tUpdate | \n\t\t\t\t\t\tDelete | \n\t\t\t\t\t
---|---|---|---|---|---|---|---|---|
\n\t\t\t\t\t\t\tUS CORE PATIENT (Patient) | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHALL\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHALL\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t |
\n\t\t\t\t\t\t\tUS CORE ALLERGYINTOLERANCE (AllergyIntolerance) | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHALL\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHALL\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t |
\n\t\t\t\t\t\t\tUS CORE CAREPLAN (CarePlan) | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHALL\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHALL\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t |
\n\t\t\t\t\t\t\tUS CORE CARETEAM (CareTeam) | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHALL\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHALL\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t |
\n\t\t\t\t\t\t\tUS CORE CONDITION (Condition) | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHALL\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHALL\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t |
\n\t\t\t\t\t\t\tUS CORE DEVICE (Device) | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHALL\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHALL\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t |
\n\t\t\t\t\t\t\tUS CORE GOAL (Goal) | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHALL\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHALL\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t |
\n\t\t\t\t\t\t\tUS CORE IMMUNIZATION (Immunization) | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHALL\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHALL\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t |
\n\t\t\t\t\t\t\tUS CORE DIAGNOSTICREPORT (DiagnosticReport) | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHALL\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHALL\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t |
\n\t\t\t\t\t\t\tUS CORE OBSERVATIONRESULTS (Observation) | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHALL\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHALL\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t |
\n\t\t\t\t\t\t\tUS CORE MEDICATION (Medication) | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t |
\n\t\t\t\t\t\t\tUS CORE MEDICATIONSTATEMENT (MedicationStatement) | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHALL\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHALL\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t |
\n\t\t\t\t\t\t\tUS CORE MEDICATIONREQUEST (MedicationRequest) | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHALL\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHALL\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t |
\n\t\t\t\t\t\t\tUS CORE SMOKINGSTATUS (Observation) | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHALL\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHALL\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t |
\n\t\t\t\t\t\t\tUS CORE VITALSIGNS (Observation) | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHALL\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHALL\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t |
\n\t\t\t\t\t\t\tUS CORE PROCEDURE (Procedure) | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHALL\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHALL\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\tSHOULD\n\t\t\t\t\t\t | \n\t\t\t\t\t\t\n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t\t | \n\t\t\t\t\t |
Profile: US CORE PATIENT\n\t\t\t
\n\t\t\tParameter | \n\t\t\t\t\t\tConformance | \n\t\t\t\t\t\tType | \n\t\t\t\t\t\tDefinition & Chaining | \n\t\t\t\t\t
---|---|---|---|
name | \n\t\t\t\t\t\tSHALL | \n\t\t\t\t\t\tstring | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\t todo \n\t\t\t\t\t\t | \n\t\t\t\t\t
family | \n\t\t\t\t\t\tSHALL | \n\t\t\t\t\t\tstring | \n\t\t\t\t\t\t\n\t\t\t\t\t |
given | \n\t\t\t\t\t\tSHALL | \n\t\t\t\t\t\tstring | \n\t\t\t\t\t\t\n\t\t\t\t\t |
identifier | \n\t\t\t\t\t\tSHALL | \n\t\t\t\t\t\ttoken | \n\t\t\t\t\t\t\n\t\t\t\t\t |
gender | \n\t\t\t\t\t\tSHALL | \n\t\t\t\t\t\ttoken | \n\t\t\t\t\t\t\n\t\t\t\t\t |
birthdate | \n\t\t\t\t\t\tSHALL | \n\t\t\t\t\t\tdate | \n\t\t\t\t\t\t\n\t\t\t\t\t |
Profile: US CORE ALLERGYINTOLERANCE\n\t\t\t
\n\t\t\tParameter | \n\t\t\t\t\t\tConformance | \n\t\t\t\t\t\tType | \n\t\t\t\t\t\tDefinition & Chaining | \n\t\t\t\t\t
---|---|---|---|
patient | \n\t\t\t\t\t\tSHALL | \n\t\t\t\t\t\treference | \n\t\t\t\t\t\t\n\t\t\t\t\t |
Profile: US CORE CAREPLAN\n\t\t\t
\n\t\t\tParameter | \n\t\t\t\t\t\tConformance | \n\t\t\t\t\t\tType | \n\t\t\t\t\t\tDefinition & Chaining | \n\t\t\t\t\t
---|---|---|---|
patient | \n\t\t\t\t\t\tSHALL | \n\t\t\t\t\t\treference | \n\t\t\t\t\t\t\n\t\t\t\t\t |
category | \n\t\t\t\t\t\tSHALL | \n\t\t\t\t\t\ttoken | \n\t\t\t\t\t\t\n\t\t\t\t\t |
status | \n\t\t\t\t\t\tSHALL | \n\t\t\t\t\t\ttoken | \n\t\t\t\t\t\t\n\t\t\t\t\t |
date | \n\t\t\t\t\t\tSHALL | \n\t\t\t\t\t\tdate | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\t The server SHALL support the date search modifiers 'ge','le','eq' for this profile \n\t\t\t\t\t\t | \n\t\t\t\t\t
Profile: US CORE CARETEAM\n\t\t\t
\n\t\t\tParameter | \n\t\t\t\t\t\tConformance | \n\t\t\t\t\t\tType | \n\t\t\t\t\t\tDefinition & Chaining | \n\t\t\t\t\t
---|---|---|---|
patient | \n\t\t\t\t\t\tSHALL | \n\t\t\t\t\t\treference | \n\t\t\t\t\t\t\n\t\t\t\t\t |
status | \n\t\t\t\t\t\tSHALL | \n\t\t\t\t\t\ttoken | \n\t\t\t\t\t\t\n\t\t\t\t\t |
Profile: US CORE CONDITION\n\t\t\t
\n\t\t\tParameter | \n\t\t\t\t\t\tConformance | \n\t\t\t\t\t\tType | \n\t\t\t\t\t\tDefinition & Chaining | \n\t\t\t\t\t
---|---|---|---|
patient | \n\t\t\t\t\t\tSHALL | \n\t\t\t\t\t\treference | \n\t\t\t\t\t\t\n\t\t\t\t\t |
category | \n\t\t\t\t\t\tSHALL | \n\t\t\t\t\t\ttoken | \n\t\t\t\t\t\t\n\t\t\t\t\t |
clinicalstatus | \n\t\t\t\t\t\tSHALL | \n\t\t\t\t\t\ttoken | \n\t\t\t\t\t\t\n\t\t\t\t\t |
Profile: US CORE DEVICE\n\t\t\t
\n\t\t\tParameter | \n\t\t\t\t\t\tConformance | \n\t\t\t\t\t\tType | \n\t\t\t\t\t\tDefinition & Chaining | \n\t\t\t\t\t
---|---|---|---|
patient | \n\t\t\t\t\t\tSHALL | \n\t\t\t\t\t\treference | \n\t\t\t\t\t\t\n\t\t\t\t\t |
Profile: US CORE GOAL\n\t\t\t
\n\t\t\tParameter | \n\t\t\t\t\t\tConformance | \n\t\t\t\t\t\tType | \n\t\t\t\t\t\tDefinition & Chaining | \n\t\t\t\t\t
---|---|---|---|
patient | \n\t\t\t\t\t\tSHALL | \n\t\t\t\t\t\treference | \n\t\t\t\t\t\t\n\t\t\t\t\t |
date | \n\t\t\t\t\t\tSHALL | \n\t\t\t\t\t\tdate | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\t The server SHALL support the date search modifiers 'ge','le','eq' for this profile \n\t\t\t\t\t\t | \n\t\t\t\t\t
Profile: US CORE IMMUNIZATION\n\t\t\t
\n\t\t\tParameter | \n\t\t\t\t\t\tConformance | \n\t\t\t\t\t\tType | \n\t\t\t\t\t\tDefinition & Chaining | \n\t\t\t\t\t
---|---|---|---|
patient | \n\t\t\t\t\t\tSHALL | \n\t\t\t\t\t\treference | \n\t\t\t\t\t\t\n\t\t\t\t\t |
Profile: US CORE DIAGNOSTICREPORT\n\t\t\t
\n\t\t\tParameter | \n\t\t\t\t\t\tConformance | \n\t\t\t\t\t\tType | \n\t\t\t\t\t\tDefinition & Chaining | \n\t\t\t\t\t
---|---|---|---|
patient | \n\t\t\t\t\t\tSHALL | \n\t\t\t\t\t\treference | \n\t\t\t\t\t\t\n\t\t\t\t\t |
category | \n\t\t\t\t\t\tSHALL | \n\t\t\t\t\t\ttoken | \n\t\t\t\t\t\t\n\t\t\t\t\t |
code | \n\t\t\t\t\t\tSHALL | \n\t\t\t\t\t\ttoken | \n\t\t\t\t\t\t\n\t\t\t\t\t |
date | \n\t\t\t\t\t\tSHALL | \n\t\t\t\t\t\tdate | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\t The server SHALL support the date search modifiers 'ge','le','eq' for this profile \n\t\t\t\t\t\t | \n\t\t\t\t\t
Profile: US CORE OBSERVATIONRESULTS\n\t\t\t
\n\t\t\tParameter | \n\t\t\t\t\t\tConformance | \n\t\t\t\t\t\tType | \n\t\t\t\t\t\tDefinition & Chaining | \n\t\t\t\t\t
---|---|---|---|
patient | \n\t\t\t\t\t\tSHALL | \n\t\t\t\t\t\treference | \n\t\t\t\t\t\t\n\t\t\t\t\t |
category | \n\t\t\t\t\t\tSHALL | \n\t\t\t\t\t\ttoken | \n\t\t\t\t\t\t\n\t\t\t\t\t |
code | \n\t\t\t\t\t\tSHALL | \n\t\t\t\t\t\ttoken | \n\t\t\t\t\t\t\n\t\t\t\t\t |
date | \n\t\t\t\t\t\tSHALL | \n\t\t\t\t\t\tdate | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\t The server SHALL support the date search modifiers 'ge','le','eq' for this profile \n\t\t\t\t\t\t | \n\t\t\t\t\t
Profile: US CORE MEDICATION\n\t\t\t
\n\t\t\tThe MedicationStatement and MedicationRequest resources can represent a medication, using either a code or refer to a Medication resource. If the Medication Resource is used in a MedicationStatement or a MedicationRequest, then the READ and SEARCH Criteria SHALL be supported.
\n\t\t\tProfile: US CORE MEDICATIONSTATEMENT\n\t\t\t
\n\t\t\tThe MedicationStatement and MedicationRequest resources can represent a medication, using either a code or refer to a Medication resource. When referencing a Medication resource, the resource may be contained or an external resource. The server application can choose any one way or more than one method, but if the an external reference to Medication is used, the server SHALL support the include parameter for searching this element. The client application must support both methods.
\n\t\t\tSupported Includes: MedicationStatement.medicationReference
\n\t\t\tParameter | \n\t\t\t\t\t\tConformance | \n\t\t\t\t\t\tType | \n\t\t\t\t\t\tDefinition & Chaining | \n\t\t\t\t\t
---|---|---|---|
patient | \n\t\t\t\t\t\tSHALL | \n\t\t\t\t\t\treference | \n\t\t\t\t\t\t\n\t\t\t\t\t |
Profile: US CORE MEDICATIONREQUEST\n\t\t\t
\n\t\t\tThe MedicationStatement and MedicationRequest resources can represent a medication, using either a code or refer to a Medication resource. When referencing a Medication resource, the resource may be contained or an external resource. The server application can choose any one way or more than one method, but if the an external reference to Medication is used, the server SHALL support the include parameter for searching this element. The client application must support both methods.
\n\t\t\tSupported Includes: MedicationRequest.medicationReference
\n\t\t\tParameter | \n\t\t\t\t\t\tConformance | \n\t\t\t\t\t\tType | \n\t\t\t\t\t\tDefinition & Chaining | \n\t\t\t\t\t
---|---|---|---|
patient | \n\t\t\t\t\t\tSHALL | \n\t\t\t\t\t\treference | \n\t\t\t\t\t\t\n\t\t\t\t\t |
Profile: US CORE SMOKINGSTATUS\n\t\t\t
\n\t\t\tParameter | \n\t\t\t\t\t\tConformance | \n\t\t\t\t\t\tType | \n\t\t\t\t\t\tDefinition & Chaining | \n\t\t\t\t\t
---|---|---|---|
patient | \n\t\t\t\t\t\tSHALL | \n\t\t\t\t\t\treference | \n\t\t\t\t\t\t\n\t\t\t\t\t |
code | \n\t\t\t\t\t\tSHALL | \n\t\t\t\t\t\ttoken | \n\t\t\t\t\t\t\n\t\t\t\t\t |
Profile: US CORE VITALSIGNS\n\t\t\t
\n\t\t\tParameter | \n\t\t\t\t\t\tConformance | \n\t\t\t\t\t\tType | \n\t\t\t\t\t\tDefinition & Chaining | \n\t\t\t\t\t
---|---|---|---|
patient | \n\t\t\t\t\t\tSHALL | \n\t\t\t\t\t\treference | \n\t\t\t\t\t\t\n\t\t\t\t\t |
category | \n\t\t\t\t\t\tSHALL | \n\t\t\t\t\t\ttoken | \n\t\t\t\t\t\t\n\t\t\t\t\t |
code | \n\t\t\t\t\t\tSHALL | \n\t\t\t\t\t\ttoken | \n\t\t\t\t\t\t\n\t\t\t\t\t |
date | \n\t\t\t\t\t\tSHALL | \n\t\t\t\t\t\tdate | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\t The server SHALL support the date search modifiers 'ge','le','eq' for this profile \n\t\t\t\t\t\t | \n\t\t\t\t\t
Profile: US CORE PROCEDURE\n\t\t\t
\n\t\t\tParameter | \n\t\t\t\t\t\tConformance | \n\t\t\t\t\t\tType | \n\t\t\t\t\t\tDefinition & Chaining | \n\t\t\t\t\t
---|---|---|---|
patient | \n\t\t\t\t\t\tSHALL | \n\t\t\t\t\t\treference | \n\t\t\t\t\t\t\n\t\t\t\t\t |
date | \n\t\t\t\t\t\tSHALL | \n\t\t\t\t\t\tdate | \n\t\t\t\t\t\t\n\t\t\t\t\t\t\t The server SHALL support the date search modifiers 'ge','le','eq' for this profile \n\t\t\t\t\t\t | \n\t\t\t\t\t
Set of codes that are needed for implementation of the US-Core profiles. These codes are used as extensions to the FHIR and US Core value sets.
\nThis code system http://hl7.org/fhir/us/core/CodeSystem/careplan-category defines the following codes:
Indicates whether the team is current , represents future intentions or is now a historical record.
\nThis code system http://hl7.org/fhir/us/core/CodeSystem/careteam-status defines the following codes:
Set of codes that are needed for implementation of the US-Core profiles. These codes are used as extensions to the FHIR and US Core value sets.
\nThis code system http://hl7.org/fhir/us/core/CodeSystem/condition-category defines the following codes:
Generated Narrative with Details
url: http://hl7.org/fhir/us/core/StructureDefinition/us-core-allergyintolerance
name: US Core Allergies Profile
status: DRAFT
date: 01/08/2016
publisher: Health Level Seven International (FHIR - Infrastructure)
contact:
url: http://hl7.org/fhir/us/core/StructureDefinition/us-core-allergyintolerance
name: US Core Allergies Profile
status: DRAFT
publisher: Health Level Seven International (FHIR - Infrastructure)
contact:
date: 01/08/2016
mapping
identity: rim
uri: http://hl7.org/v3
name: RIM Mapping
mapping
identity: w5
name: W5 Mapping
mapping
identity: v2
uri: http://hl7.org/v2
name: HL7 v2 Mapping
kind: RESOURCE
abstract: false
type: AllergyIntolerance
baseDefinition: http://hl7.org/fhir/StructureDefinition/AllergyIntolerance
derivation: CONSTRAINT
- | Element |
* | todo-bundle |
- | Element |
* | todo-bundle |
Generated Narrative with Details
url: http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex
name: US Core Birth Sex Extension
title: US Core Birth Sex Extension
status: DRAFT
date: 01/08/2016
publisher: Health Level Seven International (FHIR-Infrastructure)
contact:
description: A code classifying the person's sex assigned at birth as specified by the [Office of the National Coordinator for Health IT (ONC)](https://www.healthit.gov/newsroom/about-onc).
url: http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex
name: US Core Birth Sex Extension
title: US Core Birth Sex Extension
status: DRAFT
publisher: Health Level Seven International (FHIR-Infrastructure)
contact:
date: 01/08/2016
description: A code classifying the person's sex assigned at birth as specified by the [Office of the National Coordinator for Health IT (ONC)](https://www.healthit.gov/newsroom/about-onc).
fhirVersion: 1.8.0
- | Identity | Uri | Name |
* | rim | http://hl7.org/v3 | RIM Mapping |
kind: COMPLEXTYPE
abstract: false
contextType: RESOURCE
context: Patient
type: Extension
baseDefinition: http://hl7.org/fhir/StructureDefinition/Extension
derivation: CONSTRAINT
- | Element |
* | todo-bundle |
- | Element |
* | todo-bundle |
Generated Narrative with Details
url: http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan
name: US Core CarePlan Profile
status: DRAFT
date: 01/08/2016
publisher: Health Level Seven International (FHIR-Infrastructure)
contact:
url: http://hl7.org/fhir/us/core/StructureDefinition/us-core-careplan
name: US Core CarePlan Profile
status: DRAFT
publisher: Health Level Seven International (FHIR-Infrastructure)
contact:
date: 01/08/2016
mapping
identity: rim
uri: http://hl7.org/v3
name: RIM Mapping
mapping
identity: w5
name: W5 Mapping
mapping
identity: v2
uri: http://hl7.org/v2
name: HL7 v2 Mapping
kind: RESOURCE
abstract: false
type: CarePlan
baseDefinition: http://hl7.org/fhir/StructureDefinition/CarePlan
derivation: CONSTRAINT
- | Element |
* | todo-bundle |
- | Element |
* | todo-bundle |
Generated Narrative with Details
url: http://hl7.org/fhir/us/core/StructureDefinition/us-core-careteam
name: US Core CareTeam Profile
status: DRAFT
date: 01/08/2016
publisher: Health Level Seven International (FHIR-Infrastructure)
contact:
url: http://hl7.org/fhir/us/core/StructureDefinition/us-core-careteam
name: US Core CareTeam Profile
status: DRAFT
publisher: Health Level Seven International (FHIR-Infrastructure)
contact:
date: 01/08/2016
mapping
identity: w5
name: W5 Mapping
mapping
identity: v2
uri: http://hl7.org/v2
name: HL7 v2 Mapping
mapping
identity: rim
uri: http://hl7.org/v3
name: RIM Mapping
kind: RESOURCE
abstract: false
type: CareTeam
baseDefinition: http://hl7.org/fhir/StructureDefinition/CareTeam
derivation: CONSTRAINT
- | Element |
* | todo-bundle |
- | Element |
* | todo-bundle |
Generated Narrative with Details
url: http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition
name: US Core Condition Profile
status: DRAFT
date: 21/08/2014
publisher: Health Level Seven International (Infrastructure and Messaging - Data Access Framework)
contact:
url: http://hl7.org/fhir/us/core/StructureDefinition/us-core-condition
name: US Core Condition Profile
status: DRAFT
publisher: Health Level Seven International (Infrastructure and Messaging - Data Access Framework)
contact:
date: 21/08/2014
mapping
identity: sct-concept
uri: http://snomed.info/conceptdomain
name: SNOMED CT Concept Domain Binding
mapping
identity: v2
uri: http://hl7.org/v2
name: HL7 v2 Mapping
mapping
identity: rim
uri: http://hl7.org/v3
name: RIM Mapping
mapping
identity: w5
name: W5 Mapping
mapping
identity: sct-attr
name: SNOMED CT Attribute Binding
kind: RESOURCE
abstract: false
type: Condition
baseDefinition: http://hl7.org/fhir/StructureDefinition/Condition
derivation: CONSTRAINT
- | Element |
* | todo-bundle |
- | Element |
* | todo-bundle |
Generated Narrative with Details
url: http://hl7.org/fhir/us/core/StructureDefinition/us-core-device
name: US Core Implanted Device Profile
status: DRAFT
date: 01/08/2016
publisher: Health Level Seven International (FHIR-Infrastructure)
contact:
url: http://hl7.org/fhir/us/core/StructureDefinition/us-core-device
name: US Core Implanted Device Profile
status: DRAFT
publisher: Health Level Seven International (FHIR-Infrastructure)
contact:
date: 01/08/2016
mapping
identity: udi
uri: http://www.fda.gov/MedicalDevices/DeviceRegulationandGuidance/UniqueDeviceIdentification/default.htm
name: UDI Mapping
mapping
identity: rim
uri: http://hl7.org/v3
name: RIM Mapping
mapping
identity: w5
name: W5 Mapping
kind: RESOURCE
abstract: false
type: Device
baseDefinition: http://hl7.org/fhir/StructureDefinition/Device
derivation: CONSTRAINT
- | Element |
* | todo-bundle |
- | Element |
* | todo-bundle |
Generated Narrative with Details
url: http://hl7.org/fhir/us/core/StructureDefinition/us-core-diagnosticreport
name: US Core Diagnostic Report Profile
status: DRAFT
date: 01/08/2016
publisher: Health Level Seven International (FHIR-Infrastructure)
contact:
url: http://hl7.org/fhir/us/core/StructureDefinition/us-core-diagnosticreport
name: US Core Diagnostic Report Profile
status: DRAFT
publisher: Health Level Seven International (FHIR-Infrastructure)
contact:
date: 01/08/2016
mapping
identity: v2
uri: http://hl7.org/v2
name: HL7 v2 Mapping
mapping
identity: rim
uri: http://hl7.org/v3
name: RIM Mapping
mapping
identity: w5
name: W5 Mapping
kind: RESOURCE
abstract: false
type: DiagnosticReport
baseDefinition: http://hl7.org/fhir/StructureDefinition/DiagnosticReport
derivation: CONSTRAINT
- | Element |
* | todo-bundle |
- | Element |
* | todo-bundle |
Generated Narrative with Details
url: http://hl7.org/fhir/us/core/StructureDefinition/us-core-direct
name: Email is a "direct" email
title: US Core Direct email Extension
status: DRAFT
date: 01/08/2016
publisher: Health Level Seven International (FHIR-Infrastructure)
contact:
description: This email address is associated with a "direct" service - e.g. http://wiki.directproject.org/Addressing+Specification.
url: http://hl7.org/fhir/us/core/StructureDefinition/us-core-direct
name: Email is a "direct" email
title: US Core Direct email Extension
status: DRAFT
publisher: Health Level Seven International (FHIR-Infrastructure)
contact:
date: 01/08/2016
description: This email address is associated with a "direct" service - e.g. http://wiki.directproject.org/Addressing+Specification.
fhirVersion: 1.8.0
- | Identity | Uri | Name |
* | rim | http://hl7.org/v3 | RIM Mapping |
kind: COMPLEXTYPE
abstract: false
contextType: DATATYPE
context: ContactPoint
type: Extension
baseDefinition: http://hl7.org/fhir/StructureDefinition/Extension
derivation: CONSTRAINT
- | Element |
* | todo-bundle |
- | Element |
* | todo-bundle |
Generated Narrative with Details
url: http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity
name: US Core ethnicity Extension
title: US Core ethnicity Extension
status: DRAFT
date: 01/08/2016
publisher: Health Level Seven International (FHIR-Infrastructure)
contact:
description: Concepts classifying the person into a named category of humans sharing common history, traits, geographical origin or nationality. The ethnicity codes used to represent these concepts are based upon the [CDC ethnicity and Ethnicity Code Set Version 1.0](http://www.cdc.gov/phin/resources/vocabulary/index.html) which includes over 900 concepts for representing race and ethnicity of which 43 reference ethnicity. The ethnicity concepts are grouped by and pre-mapped to the 2 OMB ethnicity categories:\r- Hispanic or Latino\r- Not Hispanic or Latino.
url: http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity
name: US Core ethnicity Extension
title: US Core ethnicity Extension
status: DRAFT
publisher: Health Level Seven International (FHIR-Infrastructure)
contact:
date: 01/08/2016
description: Concepts classifying the person into a named category of humans sharing common history, traits, geographical origin or nationality. The ethnicity codes used to represent these concepts are based upon the [CDC ethnicity and Ethnicity Code Set Version 1.0](http://www.cdc.gov/phin/resources/vocabulary/index.html) which includes over 900 concepts for representing race and ethnicity of which 43 reference ethnicity. The ethnicity concepts are grouped by and pre-mapped to the 2 OMB ethnicity categories:\r- Hispanic or Latino\r- Not Hispanic or Latino.
purpose: Complies with 2015 Edition Common Clinical Data Set for patient race.
fhirVersion: 1.8.0
- | Identity | Uri | Name |
* | rim | http://hl7.org/v3 | RIM Mapping |
kind: COMPLEXTYPE
abstract: false
contextType: RESOURCE
context: Patient
type: Extension
baseDefinition: http://hl7.org/fhir/StructureDefinition/Extension
derivation: CONSTRAINT
- | Element |
* | todo-bundle |
- | Element |
* | todo-bundle |
Generated Narrative with Details
url: http://hl7.org/fhir/us/core/StructureDefinition/us-core-goal
name: US Core Goal Profile
status: DRAFT
date: 01/08/2016
publisher: Health Level Seven International (FHIR-Infrastructure)
contact:
url: http://hl7.org/fhir/us/core/StructureDefinition/us-core-goal
name: US Core Goal Profile
status: DRAFT
publisher: Health Level Seven International (FHIR-Infrastructure)
contact:
date: 01/08/2016
mapping
identity: v2
uri: http://hl7.org/v2
name: HL7 v2 Mapping
mapping
identity: rim
uri: http://hl7.org/v3
name: RIM Mapping
mapping
identity: w5
name: W5 Mapping
kind: RESOURCE
abstract: false
type: Goal
baseDefinition: http://hl7.org/fhir/StructureDefinition/Goal
derivation: CONSTRAINT
- | Element |
* | todo-bundle |
- | Element |
* | todo-bundle |
Generated Narrative with Details
url: http://hl7.org/fhir/us/core/StructureDefinition/us-core-immunization
name: US Core Immunization Profile
status: DRAFT
date: 01/08/2016
publisher: Health Level Seven International (FHIR-Infrastructure)
contact:
url: http://hl7.org/fhir/us/core/StructureDefinition/us-core-immunization
name: US Core Immunization Profile
status: DRAFT
publisher: Health Level Seven International (FHIR-Infrastructure)
contact:
date: 01/08/2016
mapping
identity: quick
uri: http://wiki.siframework.org/CQF
name: Quality Improvement and Clinical Knowledge (QUICK)
mapping
identity: v2
uri: http://hl7.org/v2
name: HL7 v2 Mapping
mapping
identity: rim
uri: http://hl7.org/v3
name: RIM Mapping
mapping
identity: w5
name: W5 Mapping
mapping
identity: cda
name: CDA (R2)
kind: RESOURCE
abstract: false
type: Immunization
baseDefinition: http://hl7.org/fhir/StructureDefinition/Immunization
derivation: CONSTRAINT
- | Element |
* | todo-bundle |
- | Element |
* | todo-bundle |
Generated Narrative with Details
url: http://hl7.org/fhir/us/core/StructureDefinition/us-core-location
name: US Core Location Profile
status: DRAFT
date: 01/08/2016
publisher: Health Level Seven International (FHIR-Infrastructure)
contact:
url: http://hl7.org/fhir/us/core/StructureDefinition/us-core-location
name: US Core Location Profile
status: DRAFT
publisher: Health Level Seven International (FHIR-Infrastructure)
contact:
date: 01/08/2016
mapping
identity: servd
uri: http://www.omg.org/spec/ServD/1.0/
name: ServD
mapping
identity: rim
uri: http://hl7.org/v3
name: RIM Mapping
mapping
identity: w5
name: W5 Mapping
kind: RESOURCE
abstract: false
type: Location
baseDefinition: http://hl7.org/fhir/StructureDefinition/Location
derivation: CONSTRAINT
- | Element |
* | todo-bundle |
- | Element |
* | todo-bundle |
Generated Narrative with Details
url: http://hl7.org/fhir/us/core/StructureDefinition/us-core-medication
name: US Core Medication Profile
status: DRAFT
date: 01/08/2016
publisher: Health Level Seven International (FHIR-Infrastructure)
contact:
url: http://hl7.org/fhir/us/core/StructureDefinition/us-core-medication
name: US Core Medication Profile
status: DRAFT
publisher: Health Level Seven International (FHIR-Infrastructure)
contact:
date: 01/08/2016
mapping
identity: script10.6
uri: http://ncpdp.org/SCRIPT10_6
name: Mapping to NCPDP SCRIPT 10.6
mapping
identity: rim
uri: http://hl7.org/v3
name: RIM Mapping
mapping
identity: w5
name: W5 Mapping
mapping
identity: v2
uri: http://hl7.org/v2
name: HL7 v2 Mapping
kind: RESOURCE
abstract: false
type: Medication
baseDefinition: http://hl7.org/fhir/StructureDefinition/Medication
derivation: CONSTRAINT
- | Element |
* | todo-bundle |
- | Element |
* | todo-bundle |
Generated Narrative with Details
url: http://hl7.org/fhir/us/core/StructureDefinition/us-core-medicationrequest
name: US Core Medication Request Profile
status: DRAFT
date: 01/08/2016
publisher: Health Level Seven International (FHIR-Infrastructure)
contact:
url: http://hl7.org/fhir/us/core/StructureDefinition/us-core-medicationrequest
name: US Core Medication Request Profile
status: DRAFT
publisher: Health Level Seven International (FHIR-Infrastructure)
contact:
date: 01/08/2016
mapping
identity: script10.6
uri: http://ncpdp.org/SCRIPT10_6
name: Mapping to NCPDP SCRIPT 10.6
mapping
identity: rim
uri: http://hl7.org/v3
name: RIM Mapping
mapping
identity: w5
name: W5 Mapping
mapping
identity: v2
uri: http://hl7.org/v2
name: HL7 v2 Mapping
kind: RESOURCE
abstract: false
type: MedicationRequest
baseDefinition: http://hl7.org/fhir/StructureDefinition/MedicationRequest
derivation: CONSTRAINT
- | Element |
* | todo-bundle |
- | Element |
* | todo-bundle |
Generated Narrative with Details
url: http://hl7.org/fhir/us/core/StructureDefinition/us-core-medicationstatement
name: US Core Medication Statement Profile
status: DRAFT
date: 01/08/2016
publisher: Health Level Seven International (FHIR-Infrastructure)
contact:
url: http://hl7.org/fhir/us/core/StructureDefinition/us-core-medicationstatement
name: US Core Medication Statement Profile
status: DRAFT
publisher: Health Level Seven International (FHIR-Infrastructure)
contact:
date: 01/08/2016
mapping
identity: rim
uri: http://hl7.org/v3
name: RIM Mapping
mapping
identity: w5
name: W5 Mapping
mapping
identity: v2
uri: http://hl7.org/v2
name: HL7 v2 Mapping
kind: RESOURCE
abstract: false
type: MedicationStatement
baseDefinition: http://hl7.org/fhir/StructureDefinition/MedicationStatement
derivation: CONSTRAINT
- | Element |
* | todo-bundle |
- | Element |
* | todo-bundle |
Generated Narrative with Details
url: http://hl7.org/fhir/us/core/StructureDefinition/us-core-observationresults
name: US Core Result Observation
status: DRAFT
date: 01/08/2016
publisher: Health Level Seven International (FHIR-Infrastructure)
contact:
url: http://hl7.org/fhir/us/core/StructureDefinition/us-core-observationresults
name: US Core Result Observation
status: DRAFT
publisher: Health Level Seven International (FHIR-Infrastructure)
contact:
date: 01/08/2016
mapping
identity: v2
uri: http://hl7.org/v2
name: HL7 v2 Mapping
mapping
identity: rim
uri: http://hl7.org/v3
name: RIM Mapping
mapping
identity: w5
name: W5 Mapping
kind: RESOURCE
abstract: false
type: Observation
baseDefinition: http://hl7.org/fhir/StructureDefinition/Observation
derivation: CONSTRAINT
- | Element |
* | todo-bundle |
- | Element |
* | todo-bundle |
Generated Narrative with Details
url: http://hl7.org/fhir/us/core/StructureDefinition/us-core-organization
name: US Core Organization Profile
status: DRAFT
date: 01/08/2016
publisher: Health Level Seven International (FHIR-Infrastructure)
contact:
url: http://hl7.org/fhir/us/core/StructureDefinition/us-core-organization
name: US Core Organization Profile
status: DRAFT
publisher: Health Level Seven International (FHIR-Infrastructure)
contact:
date: 01/08/2016
mapping
identity: servd
uri: http://www.omg.org/spec/ServD/1.0/
name: ServD
mapping
identity: v2
uri: http://hl7.org/v2
name: HL7 v2 Mapping
mapping
identity: rim
uri: http://hl7.org/v3
name: RIM Mapping
mapping
identity: w5
name: W5 Mapping
kind: RESOURCE
abstract: false
type: Organization
baseDefinition: http://hl7.org/fhir/StructureDefinition/Organization
derivation: CONSTRAINT
- | Element |
* | todo-bundle |
- | Element |
* | todo-bundle |
Generated Narrative with Details
url: http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient
name: US Core Patient Profile
status: DRAFT
date: 01/08/2016
publisher: Health Level Seven International (FHIR-Infrastructure)
contact:
url: http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient
name: US Core Patient Profile
status: DRAFT
publisher: Health Level Seven International (FHIR-Infrastructure)
contact:
date: 01/08/2016
mapping
identity: rim
uri: http://hl7.org/v3
name: RIM Mapping
mapping
identity: cda
name: CDA (R2)
mapping
identity: w5
name: W5 Mapping
mapping
identity: v2
uri: http://hl7.org/v2
name: HL7 v2 Mapping
mapping
identity: loinc
uri: http://loinc.org
name: LOINC code for the element
kind: RESOURCE
abstract: false
type: Patient
baseDefinition: http://hl7.org/fhir/StructureDefinition/Patient
derivation: CONSTRAINT
- | Element |
* | todo-bundle |
- | Element |
* | todo-bundle |
Generated Narrative with Details
url: http://hl7.org/fhir/us/core/StructureDefinition/us-core-pract
name: US Core Practitioner
status: DRAFT
date: 01/08/2016
publisher: Health Level Seven International (FHIR-Infrastructure)
contact:
url: http://hl7.org/fhir/us/core/StructureDefinition/us-core-pract
name: US Core Practitioner
status: DRAFT
publisher: Health Level Seven International (FHIR-Infrastructure)
contact:
date: 01/08/2016
mapping
identity: v2
uri: http://hl7.org/v2
name: HL7 v2 Mapping
mapping
identity: rim
uri: http://hl7.org/v3
name: RIM Mapping
mapping
identity: servd
uri: http://www.omg.org/spec/ServD/1.0/
name: ServD
mapping
identity: w5
name: W5 Mapping
kind: RESOURCE
abstract: false
type: Practitioner
baseDefinition: http://hl7.org/fhir/StructureDefinition/Practitioner
derivation: CONSTRAINT
- | Element |
* | todo-bundle |
- | Element |
* | todo-bundle |
Generated Narrative with Details
url: http://hl7.org/fhir/us/core/StructureDefinition/us-core-procedure
name: US Core Procedure Profile
status: DRAFT
date: 01/08/2016
publisher: Health Level Seven International (FHIR-Infrastructure)
contact:
url: http://hl7.org/fhir/us/core/StructureDefinition/us-core-procedure
name: US Core Procedure Profile
status: DRAFT
publisher: Health Level Seven International (FHIR-Infrastructure)
contact:
date: 01/08/2016
mapping
identity: rim
uri: http://hl7.org/v3
name: RIM Mapping
mapping
identity: w5
name: W5 Mapping
mapping
identity: v2
uri: http://hl7.org/v2
name: HL7 v2 Mapping
kind: RESOURCE
abstract: false
type: Procedure
baseDefinition: http://hl7.org/fhir/StructureDefinition/Procedure
derivation: CONSTRAINT
- | Element |
* | todo-bundle |
- | Element |
* | todo-bundle |
Generated Narrative with Details
url: http://hl7.org/fhir/us/core/StructureDefinition/us-core-race
name: US Core Race Extension
title: US Core Race Extension
status: DRAFT
date: 01/08/2016
publisher: Health Level Seven International (FHIR-Infrastructure)
contact:
description: Concepts classifying the person into a named category of humans sharing common history, traits, geographical origin or nationality. The race codes used to represent these concepts are based upon the [CDC Race and Ethnicity Code Set Version 1.0](http://www.cdc.gov/phin/resources/vocabulary/index.html) which includes over 900 concepts for representing race and ethnicity of which 921 reference race. The race concepts are grouped by and pre-mapped to the 5 OMB race categories:\r- American Indian or Alaska Native\r- Asian\r- Black or African American\r- Native Hawaiian or Other Pacific Islander\r- White.
url: http://hl7.org/fhir/us/core/StructureDefinition/us-core-race
name: US Core Race Extension
title: US Core Race Extension
status: DRAFT
publisher: Health Level Seven International (FHIR-Infrastructure)
contact:
date: 01/08/2016
description: Concepts classifying the person into a named category of humans sharing common history, traits, geographical origin or nationality. The race codes used to represent these concepts are based upon the [CDC Race and Ethnicity Code Set Version 1.0](http://www.cdc.gov/phin/resources/vocabulary/index.html) which includes over 900 concepts for representing race and ethnicity of which 921 reference race. The race concepts are grouped by and pre-mapped to the 5 OMB race categories:\r- American Indian or Alaska Native\r- Asian\r- Black or African American\r- Native Hawaiian or Other Pacific Islander\r- White.
purpose: Complies with 2015 Edition Common Clinical Data Set for patient race.
fhirVersion: 1.8.0
- | Identity | Uri | Name |
* | rim | http://hl7.org/v3 | RIM Mapping |
kind: COMPLEXTYPE
abstract: false
contextType: RESOURCE
context: Patient
type: Extension
baseDefinition: http://hl7.org/fhir/StructureDefinition/Extension
derivation: CONSTRAINT
- | Element |
* | todo-bundle |
- | Element |
* | todo-bundle |
Generated Narrative with Details
url: http://hl7.org/fhir/us/core/StructureDefinition/us-core-smokingstatus
name: US Core Smoking Status Observation Profile
status: DRAFT
date: 01/08/2016
publisher: Health Level Seven International (FHIR-Infrastructure)
contact:
url: http://hl7.org/fhir/us/core/StructureDefinition/us-core-smokingstatus
name: US Core Smoking Status Observation Profile
status: DRAFT
publisher: Health Level Seven International (FHIR-Infrastructure)
contact:
date: 01/08/2016
mapping
identity: v2
uri: http://hl7.org/v2
name: HL7 v2 Mapping
mapping
identity: rim
uri: http://hl7.org/v3
name: RIM Mapping
mapping
identity: w5
name: W5 Mapping
kind: RESOURCE
abstract: false
type: Observation
baseDefinition: http://hl7.org/fhir/StructureDefinition/Observation
derivation: CONSTRAINT
- | Element |
* | todo-bundle |
- | Element |
* | todo-bundle |
Generated Narrative with Details
url: http://hl7.org/fhir/us/core/StructureDefinition/us-core-vitalsigns
name: US Core Vital Signs Profile
status: DRAFT
date: 01/08/2016
publisher: Health Level Seven International (FHIR-Infrastructure)
contact:
url: http://hl7.org/fhir/us/core/StructureDefinition/us-core-vitalsigns
name: US Core Vital Signs Profile
status: DRAFT
publisher: Health Level Seven International (FHIR-Infrastructure)
contact:
date: 01/08/2016
mapping
identity: v2
uri: http://hl7.org/v2
name: HL7 v2 Mapping
mapping
identity: rim
uri: http://hl7.org/v3
name: RIM Mapping
mapping
identity: w5
name: W5 Mapping
kind: RESOURCE
abstract: false
type: Observation
baseDefinition: http://hl7.org/fhir/StructureDefinition/Observation
derivation: CONSTRAINT
- | Element |
* | todo-bundle |
- | Element |
* | todo-bundle |
The 41 CDC ethnicity codes that are grouped under one of the 2 OMB ethnicity category codes.
\nThis value set includes codes from the following code systems:
Code | Display | |
2135-2 | Hispanic or Latino | Hispanic or Latino |
2186-5 | Not Hispanic or Latino | Note that this term remains in the table for completeness, even though within HL7, the notion of "not otherwise coded" term is deprecated. |
The 900+ CDC Race codes that are grouped under one of the 5 OMB race category codes.
\nThis value set includes codes from the following code systems:
Code | Display | |
1002-5 | American Indian or Alaska Native | American Indian or Alaska Native |
2028-9 | Asian | Asian |
2054-5 | Black or African American | Black or African American |
2076-8 | Native Hawaiian or Other Pacific Islander | Native Hawaiian or Other Pacific Islander |
2106-3 | White | White |
The codes for the ethnicity categories - 'Hispanic or Latino' and 'Non Hispanic or Latino' - as defined by the OMB Standards for Maintaining, Collecting, and Presenting Federal Data on Race and Ethnicity, Statistical Policy Directive No. 15, as revised, October 30, 1997.
\nThis value set includes codes from the following code systems:
Code | Display | |
2135-2 | Hispanic or Latino | |
2186-5 | Non Hispanic or Latino |
The codes for the concepts 'Unknown' and 'Asked but no answer' and the the codes for the five race categories - 'American Indian' or 'Alaska Native', 'Asian', 'Black or African American', 'Native Hawaiian or Other Pacific Islander', and 'White' - as defined by the OMB Standards for Maintaining, Collecting, and Presenting Federal Data on Race and Ethnicity, Statistical Policy Directive No. 15, as revised, October 30, 1997 .
\nThis value set includes codes from the following code systems:
Code | Display | |
1002-5 | American Indian or Alaska Native | American Indian or Alaska Native |
2028-9 | Asian | Asian |
2054-5 | Black or African American | Black or African American |
2076-8 | Native Hawaiian or Other Pacific Islander | Native Hawaiian or Other Pacific Islander |
2106-3 | White | White |
Code | Display | |
UNK | Unknown | Description:A proper value is applicable, but not known. Usage Notes: This means the actual value is not known. If the only thing that is unknown is how to properly express the value in the necessary constraints (value set, datatype, etc.), then the OTH or UNC flavor should be used. No properties should be included for a datatype with this property unless: Those properties themselves directly translate to a semantic of "unknown". (E.g. a local code sent as a translation that conveys 'unknown') Those properties further qualify the nature of what is unknown. (E.g. specifying a use code of "H" and a URL prefix of "tel:" to convey that it is the home phone number that is unknown.) |
ASKU | Asked but no answer | Information was sought but not found (e.g., patient was asked but didn't know) |
Codes for assigning sex at birth as specified by the Office of the National Coordinator for Health IT (ONC)
\nThis value set includes codes from the following code systems:
Code | Display | |
F | Female | Female |
M | Male | Male |
Code | Display | |
UNK | Unknown | Description:A proper value is applicable, but not known. Usage Notes: This means the actual value is not known. If the only thing that is unknown is how to properly express the value in the necessary constraints (value set, datatype, etc.), then the OTH or UNC flavor should be used. No properties should be included for a datatype with this property unless: Those properties themselves directly translate to a semantic of "unknown". (E.g. a local code sent as a translation that conveys 'unknown') Those properties further qualify the nature of what is unknown. (E.g. specifying a use code of "H" and a URL prefix of "tel:" to convey that it is the home phone number that is unknown.) |
Provider roles codes consist of NUCC Health Care Provider Taxonomy Code Set for providers and SNOMED-CT for - non clinical and organization roles including codes from the SCTID 125676002 Person (person) heirarchy and the SCTID 394730007 Healthcare related organization (qualifier value) heirarchy.
\nCopyright Statement: This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement. TODO: Permission to Use and Distribute the Health Care Provider Taxonomy Code Set
This value set includes codes from the following code systems:
Indicates whether the team is current , represents future intentions or is now a historical record.
\nThis value set includes codes from the following code systems:
The US core Condition Category Codes support the separate concepts of problems and health concerns in Condition.category in order for API consumers to be able to separate health concerns and problems. However this is not mandatory for 2015 certification
\nThis value set includes codes from the following code systems:
Code | Display | |
problem | Problem | The patients problems as identified by the provider(s). Items on the provider’s problem list |
health-concern | Health Concern | Additional health concerns from other stakeholders which are outside the provider’s problem list. |
This identifies the vaccine substance administered - CVX codes
\nThis value set includes codes from the following code systems:
Immunization codes constrained from the DSTU core to include only 'completed' and 'enter-in-error' which are the only two clinically relevent values.
\nCodes that may be used for implementation of the Argonaut Immunization IG and MU2015 certification.
\n \nCode | \nDisplay | \nDefinition | \n
---|---|---|
completed | \nCompleted | \nAll actions that are implied by the administration have occurred. | \n
entered-in-error | \nEntered in Error | \nThe administration was entered in error and therefore nullified. | \n
All prescribable medication formulations represented using either a 'generic' or 'brand-specific' concept. This includes RxNorm codes whose Term Type is SCD (semantic clinical drug), SBD (semantic brand drug), GPCK (generic pack), BPCK (brand pack), SCDG (semantic clinical drug group), SBDG (semantic brand drug group), SCDF (semantic clinical drug form), or SBDF (semantic brand drug form)
\nThis value set includes codes from the following code systems:
\nThis value set limits the text status for the resource narrative.
\nCopyright Statement: HL7
This value set includes codes from the following code systems:
Code | Display | |
additional | additional | The contents of the narrative may contain additional information not found in the structured data. Note that there is no computable way to determine what the extra information is, other than by human inspection |
generated | generated | The contents of the narrative are entirely generated from the structured data in the content. |
This value set includes all the Vaccine National Drug Codes (NDC). This source of this data is provided by the CDC
\nThis value set includes codes from the following code systems:
Code | Display | |
49281-0589-58 | Menactra | |
49281-0623-78 | FLUZONE QUADRIVALENT | |
49281-0515-00 | Fluzone Quadrivalent, peds | |
49281-0415-88 | Fluzone Quadrivalent PF | |
49281-0415-58 | FLUZONE QUADRIVALENT PF | |
33332-0115-11 | AFLURIA | |
33332-0015-02 | AFLURIA | |
66019-0302-01 | FluMist Quadrivalent | |
42874-0015-01 | Flublok | |
66521-0118-12 | Fluvirin | |
66521-0118-11 | Fluvirin | |
58160-0883-41 | FLUARIX | |
66521-0000-11 | Fluad | |
69401-0000-01 | Vivotif | |
66019-0301-01 | FluMist Quadrivalent | |
33332-0014-02 | AFLURIA | |
33332-0114-11 | AFLURIA | |
63851-0613-11 | Flucelvax | |
66521-0117-11 | FLUVIRIN | |
66521-0117-12 | Fluvirin | |
00006-4093-01 | RECOMBIVAX HB | |
00006-4094-01 | RECOMBIVAX HB | |
00006-4095-01 | VAQTA | |
00006-4096-01 | VAQTA | |
00006-4963-01 | ZOSTAVAX | |
00006-4963-01 | ZOSTAVAX | |
42874-0014-01 | Flublok | |
49281-0414-88 | Fluzone Quadrivalent PF | |
49281-0395-88 | Fluzone HD | |
49281-0709-48 | FLUZONE Intradermal | |
58160-0881-41 | FLUARIX | |
58160-0809-01 | MENHIBRIX | |
62577-0613-11 | Flucelvax | |
19515-0893-02 | FLULAVAL | |
49281-0621-78 | FLUZONE QUADRIVALENT | |
00005-0100-01 | Trumenba | |
00005-0100-01 | Trumenba | |
00005-0100-01 | Trumenba | |
00006-4047-01 | RotaTeq | |
00006-4109-01 | GARDASIL | |
62577-0613-11 | Flucelvax | |
00006-4121-01 | GARDASIL 9 | |
00006-4119-01 | GARDASIL 9 | |
00006-4119-01 | GARDASIL 9 | |
63851-0511-11 | RabAvert | |
49281-0562-58 | QUADRACEL | |
46028-0114-11 | Bexsero | |
46028-0114-11 | Bexsero | |
00006-4171-01 | ProQuad | |
13533-0131-00 | Tetanus and Diphtheria Toxoids Adsorbed | |
49281-0396-78 | FLUZONE | |
49281-0397-88 | FLUZONE High-Dose | |
62577-0614-11 | Flucelvax | |
58160-0903-41 | FLUARIX QUADRIVALENT | |
19515-0898-01 | Flulaval Quadrivalent | |
19515-0901-41 | Flulaval Quadrivalent | |
49281-0393-88 | FLUZONE High-Dose | |
58160-0810-43 | INFANRIX | |
58160-0810-01 | INFANRIX | |
49281-0790-38 | Typhim Vi | |
49281-0790-88 | Typhim Vi | |
49281-0640-15 | INFLUENZA A (H1N1) 2009 MONOVALENT VACCINE | |
49281-0650-10 | INFLUENZA A (H1N1) 2009 MONOVALENT VACCINE | |
49281-0650-90 | INFLUENZA A (H1N1) 2009 MONOVALENT VACCINE | |
49281-0650-25 | INFLUENZA A (H1N1) 2009 MONOVALENT VACCINE | |
49281-0650-70 | INFLUENZA A (H1N1) 2009 MONOVALENT VACCINE | |
49281-0650-50 | INFLUENZA A (H1N1) 2009 MONOVALENT VACCINE | |
49281-0707-48 | FLUZONE | |
66019-0110-01 | FluMist | |
00006-4681-01 | M-M-R II | |
49281-0215-58 | TENIVAC | |
49281-0215-88 | TENIVAC | |
46028-0218-11 | Meningococcal (Groups A) CRM197 Oligosaccharide Co | |
49281-0387-65 | FLUZONE | |
49281-0386-15 | FLUZONE | |
49281-0010-10 | FLUZONE | |
49281-0010-25 | Fluzone | |
49281-0010-50 | FLUZONE | |
54868-0980-00 | M-M-R II | |
58160-0830-43 | CERVARIX | |
58160-0830-05 | CERVARIX | |
00005-1971-01 | PREVNAR 13 | |
00005-1971-01 | PREVNAR 13 | |
00005-1971-01 | PREVNAR 13 | |
17478-0131-00 | Tetanus and Diphtheria Toxoids Adsorbed | |
58160-0812-43 | KINRIX | |
58160-0812-01 | KINRIX | |
66019-0108-01 | FluMist | |
00006-4898-01 | COMVAX | |
58160-0809-01 | MENHIBRIX | |
63851-0612-11 | Flucelvax | |
00006-4992-01 | RECOMBIVAX HB | |
00006-4981-01 | RECOMBIVAX HB | |
00006-4980-00 | RECOMBIVAX HB | |
00006-4093-01 | RECOMBIVAX HB | |
00006-4094-01 | RECOMBIVAX HB | |
00006-4109-01 | GARDASIL | |
66521-0112-02 | FLUVIRIN | |
66521-0112-10 | FLUVIRIN | |
66019-0107-01 | FluMist | |
49281-0225-58 | DIPHTHERIA AND TETANUS TOXOIDS ADSORBED | |
49281-0705-55 | FLUZONE | |
42515-0001-00 | IXIARO | |
58160-0879-41 | FLUARIX | |
58160-0880-41 | FLUARIX | |
58160-0820-01 | ENGERIX-B | |
58160-0820-43 | ENGERIX-B | |
58160-0821-01 | ENGERIX-B | |
58160-0821-43 | ENGERIX-B | |
58160-0821-05 | ENGERIX-B | |
42874-0012-01 | Flublok | |
49281-0278-10 | DIPHTHERIA AND TETANUS TOXOIDS ADSORBED | |
66019-0109-01 | FluMist | |
19515-0890-02 | FLULAVAL | |
19515-0889-02 | FLULAVAL | |
58160-0900-41 | FLUARIX QUADRIVALENT | |
49281-0860-78 | IPOL | |
49281-0860-88 | IPOL | |
49281-0389-65 | FLUZONE High-Dose | |
49281-0388-15 | FLUZONE | |
49281-0011-10 | FLUZONE | |
49281-0011-50 | FLUZONE | |
49281-0703-55 | FLUZONE Intradermal | |
49281-0111-25 | FLUZONE | |
66521-0200-10 | Influenza A (H1N1) 2009 Monovalent Vaccine | |
66521-0200-02 | Influenza A (H1N1) 2009 Monovalent Vaccine | |
49281-0298-10 | TRIPEDIA | |
58160-0806-01 | HIBERIX | |
33332-0013-02 | AFLURIA | |
33332-0113-11 | AFLURIA | |
49281-0391-65 | FLUZONE High-Dose | |
49281-0012-50 | FLUZONE | |
49281-0012-10 | FLUZONE | |
49281-0112-25 | FLUZONE | |
49281-0390-15 | FLUZONE | |
00006-4897-01 | PedvaxHIB | |
49281-0291-83 | DECAVAC | |
49281-0291-10 | DECAVAC | |
49281-0413-88 | FLUZONE QUADRIVALENT | |
49281-0413-58 | FLUZONE QUADRIVALENT | |
49281-0513-00 | FLUZONE QUADRIVALENT | |
66521-0113-02 | Fluvirin | |
66521-0113-10 | Fluvirin | |
00005-1970-49 | Prevnar | |
00006-4047-01 | RotaTeq | |
58160-0811-43 | PEDIARIX | |
58160-0811-41 | PEDIARIX | |
00006-4827-01 | VARIVAX | |
00006-4826-01 | VARIVAX | |
58160-0842-41 | BOOSTRIX | |
58160-0842-01 | BOOSTRIX | |
58160-0842-43 | BOOSTRIX | |
58160-0842-05 | BOOSTRIX | |
66019-0300-01 | FluMist Quadrivalent | |
49281-0589-58 | Menactra | |
00006-4095-01 | VAQTA | |
00006-4096-01 | VAQTA | |
00006-4831-01 | VAQTA | |
63851-0511-11 | RabAvert | |
66019-0200-01 | Influenza A H1N1 2009 Monovalent Vaccine Live Intr | |
14362-0111-03 | Tetanus and Diphtheria Toxoids Adsorbed | |
33332-0519-01 | Influenza A | |
33332-0519-25 | Influenza A | |
33332-0629-10 | Influenza A | |
58160-0825-43 | HAVRIX | |
58160-0825-01 | HAVRIX | |
58160-0826-43 | HAVRIX | |
58160-0826-05 | HAVRIX | |
58160-0826-01 | HAVRIX | |
33332-0010-01 | AFLURIA | |
33332-0110-10 | AFLURIA | |
66521-0115-10 | Fluvirin | |
66521-0115-02 | Fluvirin | |
00006-4133-01 | Tetanus and Diphtheria Toxoids Adsorbed | |
54868-4320-09 | PNEUMOVAX 23 | |
54868-3339-09 | PNEUMOVAX 23 | |
00052-0603-01 | BCG VACCINE | |
64678-0211-05 | BioThrax | |
00006-4739-01 | PNEUMOVAX 23 | |
00006-4943-01 | PNEUMOVAX 23 | |
49281-0013-58 | FLUZONE | |
49281-0013-88 | FLUZONE | |
49281-0392-78 | FLUZONE | |
49281-0113-00 | FLUZONE | |
49281-0820-10 | TETANUS TOXOID ADSORBED | |
49281-0800-83 | TETANUS TOXOID ADSORBED | |
49281-0400-88 | Adacel | |
49281-0286-58 | DAPTACEL | |
49281-0286-58 | DAPTACEL | |
49281-0286-58 | DAPTACEL | |
58160-0815-41 | TWINRIX | |
58160-0815-43 | TWINRIX | |
58160-0815-05 | TWINRIX | |
58160-0815-43 | TWINRIX | |
58160-0815-01 | TWINRIX | |
66521-0114-10 | Fluvirin | |
76420-0482-01 | FLUVIRIN | |
19515-0895-01 | Flulaval Quadrivalent | |
00006-4999-01 | ProQuad | |
49281-0545-15 | ACTHIB | |
51285-0174-02 | Adenovirus Type 4 Vaccine, Live, Oral | |
49281-0248-58 | IMOVAX RABIES | |
49281-0487-58 | MENOMUNE - A/C/Y/W-135 COMBINED | |
49281-0915-58 | YF-VAX | |
49281-0547-58 | ACTHIB | |
58160-0851-01 | ROTARIX | |
49281-0915-68 | YF-VAX | |
49281-0488-78 | MENOMUNE - A/C/Y/W-135 COMBINED | |
46028-0219-11 | Meningococcal (Groups C, Y, W-135) CRM197 Oligosac | |
51285-0175-02 | Adenovirus Type 7 Vaccine, Live, Oral | |
49281-0560-05 | DTAP-IPV | |
49281-0400-58 | Adacel | |
49281-0400-58 | Adacel | |
42874-0013-01 | Flublok | |
66521-0116-11 | FLUVIRIN | |
66521-0116-12 | FLUVIRIN | |
00006-4045-01 | GARDASIL | |
00006-4045-01 | GARDASIL | |
00006-4995-01 | RECOMBIVAX HB | |
00006-4995-01 | RECOMBIVAX HB | |
00006-4841-01 | VAQTA | |
00006-4841-01 | VAQTA | |
58160-0804-01 | INFLUENZA (H5N1), adjuvanted | |
58160-0802-02 | AS03 Adjuvant | |
58160-0901-41 | FLUARIX QUADRIVALENT | |
00006-4837-01 | PNEUMOVAX 23 | |
19515-0891-01 | Flulaval Quadrivalent | |
19515-0893-02 | FLULAVAL | |
19515-0894-41 | Flulaval Quadrivalent | |
49281-0514-00 | Fluzone Quadrivalent, Peds | |
49281-0394-78 | FLUZONE | |
49281-0014-88 | FLUZONE | |
49281-0414-58 | FLUZONE QUADRIVALENT PF |
This value set indicates the current smoking status of a patient.
\nCopyright Statement: This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement
This value set includes codes from the following code systems:
Code | Display | |
449868002 | Current every day smoker | |
428041000124106 | Current some day smoker | |
8517006 | Former smoker | |
266919005 | Never smoker | |
77176002 | Smoker, current status unknown | |
266927001 | Unknown if ever smoked | |
428071000124103 | Current Heavy tobacco smoker | |
428061000124105 | Current Light tobacco smoker |
This value set indicates the allowed vital sign result types. The vocabulary selected for this value set based on ONC 2015 Edition Common Clinical Data Set (CCDS) for vitals. Note the concept Blood pressure systolic and diastolic (55284-4) is used to group the related observations Systolic blood pressure (8480-6) and Diastolic blood pressure (8462-4). It SHALL NOT be used alone, but both 8480-6 and 8462-2 SHALL also be valued.
\nCopyright Statement: This content from LOINC® is copyright © 1995 Regenstrief Institute, Inc. and the LOINC Committee, and available at no cost under the license at http://loinc.org/terms-of-use
This value set includes codes from the following code systems:
Code | Display | |
8716-3 | Vital signs | |
9279-1 | Respiratory rate | |
8867-4 | Heart rate | |
59408-5 | Oxygen saturation in Arterial blood by Pulse oximetry | |
8310-5 | Body temperature | |
8302-2 | Body height | |
8306-3 | Body height --lying | |
8287-5 | Head Occipital-frontal circumference by Tape measure | |
29463-7 | Body weight | |
39156-5 | Body mass index (BMI) [Ratio] | |
55284-4 | Blood pressure systolic and diastolic | |
8480-6 | Systolic blood pressure | |
8462-4 | Diastolic blood pressure |
Snomed-CT concept codes for coded results
\nCopyright Statement: This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement
This value set includes codes from the following code systems:
This describes the problem. Diagnosis/Problem List is broadly defined as a series of brief statements that catalog a patient's medical, nursing, dental, social, preventative and psychiatric events and issues that are relevant to that patient's healthcare (e.g., signs, symptoms, and defined conditions)
\n\n Copyright Statement: This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement\n
\nThis value set includes codes from the following code systems:
\nThis value set defines a set of codes from ICD10-PCS that can be used to indicate a type of procedure performed
\nCopyright Statement: The International Classification of Diseases, Tenth Revision, Procedure Coding System (ICD-10-PCS) was developed for the Centers for Medicare and Medicaid Services (CMS). CMS is the U.S. governmental agency responsible for overseeing all changes and modifications to the ICD-10-PCS.
This value set includes codes from the following code systems:
This example value set defines a set of codes that can be used to indicate the type of procedure: a specific code indicating type of procedure performed, from CPT or SNOMED CT.
\nCopyright Statement: CPT copyright 2014 American Medical Association. All rights reserved. This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement
This value set includes codes from the following code systems:
Provider roles codes which are composed of the NUCC Health Care Provider Taxonomy\n\t\t\t\t\tCode Set for providers. Only concepts with a classification and no specialization are included.
\n\t\t\tCopyright Statement: TODO: Permission to Use and Distribute the Health Care\n\t\t\t\tProvider Taxonomy Code Set
\n\t\t\tThis value set includes codes from the following code systems:
\n\t\t\tProvider speciality roles codes which are composed of the NUCC Health Care Provider Taxonomy Code Set for providers
\nCopyright Statement: TODO: Permission to Use and Distribute the Health Care Provider Taxonomy Code Set
This value set includes codes from the following code systems:
All ND-FRT NUIs for concepts that are subsumed by 'Mechanism of Action - N0000000223', 'Physiologic Effect - N0000009802' or 'Chemical Structure - N0000000002'.
\nThis value set includes codes from the following code systems:
All RxNorm codes that have TTY = IN,PIN,MIN,BN, but TTY != OCD.
\nThis value set includes codes from the following code systems:
SNOMED CT concepts from SCTID 716186003 No Known allergy (situation) and substance concepts Other Than Clinical Drug Substances that are not represented by RXNORM drug concepts or FDA UNII substance concepts. This value set is meant to be quite broad and includes many substances that may never be prescribed or be a reactant. It does not remove all overlap with RXNORM and UNII; for those concepts, the alternative code system should be chosen.
\nCopyright Statement: This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement.
This value set includes codes from the following code systems:
A substance or other type of agent (e.g., sunshine) that may be associated with an intolerance reaction event or a propensity to such an event. These concepts are expected to be at a more general level of abstraction (ingredients versus more specific formulations). This value set is quite general and includes concepts that may never cause an adverse event, particularly the included SNOMED CT concepts. The code system-specific value sets in this grouping value set are intended to provide broad coverage of all kinds of agents, but the expectation for use is that the chosen concept identifier for a substance should be appropriately specific and drawn from the available code systems in the following priority order: 1. NDF-RT codes for drug class allergies 2. RxNorm codes limited to term types (TTY) , 'BN' Brand Name, 'IN' ingredient, 'MIN' multiple ingredient, and 'PIN' precise ingredient for drug ingredient allergies 3. SNOMED CT including concepts from SCTID 716186003 No Known allergy (situation) and if no other code from above code systems are available
\nCopyright Statement: This value set includes content from SNOMED CT, which is copyright © 2002+ International Health Terminology Standards Development Organisation (IHTSDO), and distributed by agreement between IHTSDO and HL7. Implementer use of SNOMED CT is not covered by this agreement
This value set includes codes from the following code systems:
UCUM unit for coded form of units
\nCopyright Statement: UCUM is Copyright © 1999-2013 Regenstrief Institute, Inc. and The UCUM Organization, Indianapolis, IN. All rights reserved. See http://unitsofmeasure.org/trac//wiki/TermsOfUse for details
This value set includes codes from the following code systems: