Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FHIR-46482 - Added SubjectList MeasureReport to the Receiver Server a… #240

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion input/oids.ini
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ information6 = There is never a reason to edit anything else
CodeSystem = 3
ValueSet = 3
StructureDefinition = 31
OperationDefinition = 5
OperationDefinition = 7
CapabilityStatement = 8
Library = 4
Measure = 6
Expand Down Expand Up @@ -64,6 +64,8 @@ care-gaps = 2.16.840.1.113883.4.642.40.2.33.2
deqm.collect-data = 2.16.840.1.113883.4.642.40.2.33.3
deqm.submit-data = 2.16.840.1.113883.4.642.40.2.33.4
evaluate = 2.16.840.1.113883.4.642.40.2.33.5
collect-data = 2.16.840.1.113883.4.642.40.23.33.6
submit-data = 2.16.840.1.113883.4.642.40.23.33.7

[CapabilityStatement]
consumer-client = 2.16.840.1.113883.4.642.40.2.13.1
Expand Down
1 change: 1 addition & 0 deletions input/pagecontent/change-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ The Data Exchange For Quality Measures Implementation Guide was developed under
- DEQM STU5 Final Publication: Build QA #1 (individual measure report errors)([CQF-2428](https://icf.atlassian.net/browse/CQF-2428))([Applied here](StructureDefinition-indv-measurereport-deqm.html))
- change patient-list to subject-list([FHIR-48451](https://jira.hl7.org/browse/FHIR-48451))([Applied here](index.html))
- Change GIC text to reflect optional Composition ([FHIR-48730](https://jira.hl7.org/browse/FHIR-48730))Applied ([here](gaps-in-care-reporting.html#how-to-construct-a-gaps-in-care-report))
- Added SubjectList MeasureReport to the Receiver Server and Reporter Client Capability statements ([FHIR-46482](https://jira.hl7.org/browse/FHIR-46482))([Applied Here](CapabilityStatement-receiver-server.html), [here](CapabilityStatement-reporter-client.html))


### Changes and Updates for STU5 Ballot for 2024Sept Version of the DEQM IG.
Expand Down
5 changes: 3 additions & 2 deletions input/resources/capabilitystatement-receiver-server.json
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
"valueCode": "SHALL"
}
],
"documentation": "The DaVinci DEQM Receiver Server **SHALL** be capable of supporting the DEQM Summary MeasureReport Profile and DEQM Individual MeasureReport Profile and all the DEQM and QI Core Profiles they reference.",
"documentation": "The DaVinci DEQM Receiver Server **SHALL** be capable of supporting the DEQM Summary MeasureReport Profile, the DEQM SubjectList MeasureReport Profile, and DEQM Individual MeasureReport Profile and all the DEQM and QI Core Profiles they reference.",
"interaction": [
{
"extension": [
Expand Down Expand Up @@ -121,7 +121,8 @@
],
"supportedProfile": [
"http://hl7.org/fhir/us/davinci-deqm/StructureDefinition/summary-measurereport-deqm",
"http://hl7.org/fhir/us/davinci-deqm/StructureDefinition/indv-measurereport-deqm"
"http://hl7.org/fhir/us/davinci-deqm/StructureDefinition/indv-measurereport-deqm",
"http://hl7.org/fhir/us/davinci-deqm/StructureDefinition/subjectlist-measurereport-deqm"
],
"type": "MeasureReport"
}
Expand Down
3 changes: 2 additions & 1 deletion input/resources/capabilitystatement-reporter-client.json
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,8 @@
],
"supportedProfile": [
"http://hl7.org/fhir/us/davinci-deqm/StructureDefinition/summary-measurereport-deqm",
"http://hl7.org/fhir/us/davinci-deqm/StructureDefinition/indv-measurereport-deqm"
"http://hl7.org/fhir/us/davinci-deqm/StructureDefinition/indv-measurereport-deqm",
"http://hl7.org/fhir/us/davinci-deqm/StructureDefinition/subjectlist-measurereport-deqm"
],
"type": "MeasureReport"
}
Expand Down