-
Notifications
You must be signed in to change notification settings - Fork 0
/
example-measure-1.json
56 lines (56 loc) · 1.57 KB
/
example-measure-1.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"resourceType": "Measure",
"meta": {
"profile": [
"http://fhir-data-evaluator/StructureDefinition/FhirDataEvaluatorBasicMeasure"
]
},
"version": "1.0",
"url": "https://medizininformatik-initiative.de/fhir/fdpg/Measure/ExampleConditionIcd10",
"status": "active",
"experimental": false,
"publisher": "FDPG-Plus",
"name": "ExampleConditionIcd10",
"title": "Example Condition Icd10",
"description": "Example Measure to count all ICD-10 codes.",
"date": "2024-05-10",
"group": [
{
"description": "Simple Stratifier concept",
"population": [
{
"code": {
"coding": [
{
"system": "http://terminology.hl7.org/CodeSystem/measure-population",
"code": "initial-population"
}
]
},
"criteria": {
"language": "text/x-fhir-query",
"expression": "Condition?_profile=https://www.medizininformatik-initiative.de/fhir/core/modul-diagnose/StructureDefinition/Diagnose"
},
"id": "initial-population-identifier"
}
],
"stratifier": [
{
"criteria": {
"language": "text/fhirpath",
"expression": "Condition.code.coding.where(system='http://fhir.de/CodeSystem/bfarm/icd-10-gm')"
},
"code": {
"coding": [
{
"system": "http://fhir-evaluator/strat/system",
"code": "icd10-code"
}
]
},
"id": "strat-1"
}
]
}
]
}