us_core_test_kit 0.9.0 → 0.9.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d0b4059c21c91aac9937415541f2104a2f15ea911181d73e0e71b37efdb30d80
4
- data.tar.gz: bc52f233f6620307ab10c64c03bfc3e223f7a9d6bd5e80e5bcecc4ace255a399
3
+ metadata.gz: b932717dea1b608f8b882d319b8b0bb9ae55602f88ae33f237c11a145f545835
4
+ data.tar.gz: 64ddbccbc2e8cea67a65013931fc0b1022425ca18fe5b86bece509c154a724d5
5
5
  SHA512:
6
- metadata.gz: b786a061e34bb45029cebf15641f360607d89f6c5b4c2249bd11171b6ca74403958795c7579ef170bee76a8061cb4f4b23dac257a3cdee91675510de3901eed5
7
- data.tar.gz: b8ebd86009a0fc9cd4b3ab35a5f8078320d4c81612f3445793d524367cc446096a537461c1f30aaf5686f27110282a6717ed44f3460415b7def5ddd61ab905ae
6
+ metadata.gz: 12f75e241b6c1d939bd707fe072abca55b162333fce4c58d16999ebf1795cf0272aeb6be2e89ce15806c5a033e28961fd13a5331b70119811862a2bc4967d751
7
+ data.tar.gz: 5e864dac05137ff3ddb47eb517700113292b9988fcafa36eb94cd4088bde194e7733eb74ad339b5b796c3517e7e452cd4e97ad117c875e05aa667afe54180dae
@@ -91,7 +91,7 @@ module USCoreTestKit
91
91
  VERSION_SPECIFIC_MESSAGE_FILTERS = [
92
92
  %r{Observation\.effective\.ofType\(Period\):.*http://hl7.org/fhir/us/core/StructureDefinition/us-core-smokingstatus|6.1.0},
93
93
  %r{Observation: Slice 'Observation\.effective\[x\]:effectiveDateTime':.*http://hl7.org/fhir/us/core/StructureDefinition/us-core-smokingstatus|6.1.0},
94
- %r{Observation\.effective\.ofType\(Period\)\.end: This element is not allowed by the profile http://hl7.org/fhir/StructureDefinition/dateTime}
94
+ %r{Observation\.effective\.ofType\(Period\)\.(start|end): This element is not allowed by the profile http://hl7.org/fhir/StructureDefinition/dateTime}
95
95
  ].freeze
96
96
 
97
97
  VALIDATION_MESSAGE_FILTERS = GENERAL_MESSAGE_FILTERS + VERSION_SPECIFIC_MESSAGE_FILTERS
@@ -18,6 +18,8 @@ module USCoreTestKit
18
18
  * DiagnosticReport.effectiveDateTime
19
19
  * DiagnosticReport.encounter
20
20
  * DiagnosticReport.issued
21
+ * DiagnosticReport.media
22
+ * DiagnosticReport.media.link
21
23
  * DiagnosticReport.performer
22
24
  * DiagnosticReport.presentedForm
23
25
  * DiagnosticReport.result
@@ -16,6 +16,7 @@ module USCoreTestKit
16
16
  Elements which may provide external references include:
17
17
 
18
18
  * DiagnosticReport.encounter
19
+ * DiagnosticReport.media.link
19
20
  * DiagnosticReport.performer
20
21
  * DiagnosticReport.result
21
22
  * DiagnosticReport.subject
@@ -219,6 +219,10 @@
219
219
  :target_profiles:
220
220
  - http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-lab
221
221
  - http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-clinical-result
222
+ - :path: media
223
+ - :path: media.link
224
+ :types:
225
+ - Reference
222
226
  - :path: presentedForm
223
227
  :mandatory_elements:
224
228
  - DiagnosticReport.status
@@ -1981,6 +1981,10 @@
1981
1981
  :target_profiles:
1982
1982
  - http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-lab
1983
1983
  - http://hl7.org/fhir/us/core/StructureDefinition/us-core-observation-clinical-result
1984
+ - :path: media
1985
+ - :path: media.link
1986
+ :types:
1987
+ - Reference
1984
1988
  - :path: presentedForm
1985
1989
  :mandatory_elements:
1986
1990
  - DiagnosticReport.status
@@ -170,7 +170,7 @@ module USCoreTestKit
170
170
  )
171
171
 
172
172
  group from: :us_core_v700_capability_statement
173
-
173
+
174
174
  group from: :us_core_v700_patient
175
175
  group from: :us_core_v700_allergy_intolerance
176
176
  group from: :us_core_v700_care_plan
@@ -231,7 +231,7 @@ module USCoreTestKit
231
231
  group from: :us_core_v700_smart_granular_scopes,
232
232
  id: :us_core_v700_smart_granular_scopes_stu2_2,
233
233
  required_suite_options: USCoreOptions::SMART_2_2_REQUIREMENT
234
-
234
+
235
235
  end
236
236
  end
237
237
  end
@@ -93,14 +93,15 @@ module USCoreTestKit
93
93
  must_supports[:elements] << { path: 'effective[x]' }
94
94
  end
95
95
 
96
- # US Core v6.1.0 Patch FI-44693, Add MustSupport choice between Practitioner.address and PractitionerRole
96
+ # US Core v6.1.0 Patch FHIR-44693, Add MustSupport choice between Practitioner.address and PractitionerRole
97
+ # This is fixed formally in US Core v7
97
98
  def remove_practitioner_address
98
99
  return unless profile.type == 'Practitioner'
99
100
 
100
101
  must_supports[:elements].delete_if { |element| element[:path].start_with?('address') }
101
102
  end
102
103
 
103
- # US Core v6.1.0 Patch FI-46240, Remove the Must Support on media and media.link
104
+ # US Core v6.1.0 Patch FHIR-46240, Remove the Must Support on media and media.link
104
105
  def remove_diagnosticreport_media
105
106
  return unless profile.id == 'us-core-diagnosticreport-note'
106
107
  must_supports[:elements].delete_if { |element| element[:path].start_with?('media') }
@@ -20,7 +20,6 @@ module USCoreTestKit
20
20
  us_core_6_extractor.add_patient_uscdi_elements
21
21
  add_must_support_choices
22
22
  us_core_6_extractor.remove_practitioner_address
23
- us_core_6_extractor.remove_diagnosticreport_media
24
23
  end
25
24
 
26
25
  def add_must_support_choices
@@ -23,7 +23,7 @@ module USCoreTestKit
23
23
  [
24
24
  %r{Observation\.effective\.ofType\(Period\):.*http://hl7.org/fhir/us/core/StructureDefinition/us-core-smokingstatus|6.1.0},
25
25
  %r{Observation: Slice 'Observation\.effective\[x\]:effectiveDateTime':.*http://hl7.org/fhir/us/core/StructureDefinition/us-core-smokingstatus|6.1.0},
26
- %r{Observation\.effective\.ofType\(Period\)\.end: This element is not allowed by the profile http://hl7.org/fhir/StructureDefinition/dateTime}
26
+ %r{Observation\.effective\.ofType\(Period\)\.(start|end): This element is not allowed by the profile http://hl7.org/fhir/StructureDefinition/dateTime}
27
27
  ]
28
28
  else
29
29
  []
@@ -697,7 +697,8 @@ module USCoreTestKit
697
697
  resources.each do |resource|
698
698
  references_to_save(containing_resource_type).each do |reference_to_save|
699
699
  resolve_path(resource, reference_to_save[:path])
700
- .select { |reference| reference.is_a?(FHIR::Reference) && !reference.contained? }
700
+ .select { |reference| reference.is_a?(FHIR::Reference) &&
701
+ !reference.contained? && reference.reference.present? }
701
702
  .each do |reference|
702
703
  resource_type = reference.resource_class.name.demodulize
703
704
  need_to_save = reference_to_save[:resources].include?(resource_type)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module USCoreTestKit
4
- VERSION = '0.9.0'
4
+ VERSION = '0.9.2'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: us_core_test_kit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.0
4
+ version: 0.9.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stephen MacVicar
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-11-06 00:00:00.000000000 Z
11
+ date: 2024-11-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: inferno_core
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.4.37
19
+ version: 0.5.0
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - ">="
25
25
  - !ruby/object:Gem::Version
26
- version: 0.4.37
26
+ version: 0.5.0
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: smart_app_launch_test_kit
29
29
  requirement: !ruby/object:Gem::Requirement