Skip to content

plan for using FHIR resources for measures #562

Description

@faridseifi

To Do List:
☑ Add FHIR-aligned JSON-LD input file for measures using FHIR measure resource (example is given bellow) to the knowledge base.
☑ Update scaffold to use the new FHIR-aligned JSON-LD input file for measures.

Here are the proposed fields:
https://docs.google.com/spreadsheets/d/1qDjS2-a7F1El53jUx0fippL3m28pQilLcYNAv4pQkxI/edit?usp=sharing

We will use version R6 of FHIR measure resource:
https://build.fhir.org/measure.html

Here is an example of a JSON-LD measure list aligned with FHIR measure resource:
{
"@context": {
"fhir": "http://hl7.org/fhir/",
"Measure": "fhir:Measure",
"identifier": "fhir:Measure.identifier",
"name": "fhir:Measure.name",
"title": "fhir:Measure.title",
"group": "fhir:Measure.group",
"type": "fhir:Measure.group.type",
"improvementNotation": "fhir:Measure.group.improvementNotation"
},
"@graph": [
{
"@id": "http://example.org/fhir/Measure/ponv05",
"@type": "Measure",
"identifier": "PONV05",
"name": "PONV05",
"title": "Postoperative Nausea and Vomiting Measure 05",
"group": [
{
"type": "process",
"improvementNotation": "increase"
}
]
},
{
"@id": "http://example.org/fhir/Measure/ponv06",
"@type": "Measure",
"identifier": "PONV06",
"name": "PONV06",
"title": "Postoperative Nausea and Vomiting Measure 06",
"group": [
{
"type": "outcome",
"improvementNotation": "decrease"
}
]
}
]
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions