forked from ohs-foundation/kotlin-fhirpath
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodesystem-example.json
More file actions
91 lines (91 loc) · 2.24 KB
/
Copy pathcodesystem-example.json
File metadata and controls
91 lines (91 loc) · 2.24 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"resourceType": "CodeSystem",
"id": "example",
"meta": {
"profile": [
"http://hl7.org/fhir/StructureDefinition/shareablecodesystem"
]
},
"url": "http://hl7.org/fhir/CodeSystem/example",
"identifier": [
{
"system": "http://acme.com/identifiers/codesystems",
"value": "internal-cholesterol-inl"
}
],
"version": "20160128",
"name": "ACMECholCodesBlood",
"title": "ACME Codes for Cholesterol in Serum/Plasma",
"status": "draft",
"experimental": true,
"date": "2016-01-28",
"publisher": "Acme Co",
"contact": [
{
"name": "FHIR project team",
"telecom": [
{
"system": "url",
"value": "http://hl7.org/fhir"
}
]
}
],
"description": "This is an example code system that includes all the ACME codes for serum/plasma cholesterol from v2.36.",
"caseSensitive": true,
"content": "complete",
"filter": [
{
"code": "acme-plasma",
"description": "An internal filter used to select codes that are only used with plasma",
"operator": [
"="
],
"value": "the value of this filter is either 'true' or 'false'"
}
],
"concept": [
{
"code": "chol-mass",
"display": "SChol (mmol/L)",
"definition": "Serum Cholesterol, in mmol/L",
"designation": [
{
"use": {
"system": "http://acme.com/config/fhir/codesystems/internal",
"code": "internal-label"
},
"value": "From ACME POC Testing"
}
]
},
{
"code": "chol-mass",
"display": "SChol (mg/L)",
"definition": "Serum Cholesterol, in mg/L",
"designation": [
{
"use": {
"system": "http://acme.com/config/fhir/codesystems/internal",
"code": "internal-label"
},
"value": "From Paragon Labs"
}
]
},
{
"code": "chol",
"display": "SChol",
"definition": "Serum Cholesterol",
"designation": [
{
"use": {
"system": "http://acme.com/config/fhir/codesystems/internal",
"code": "internal-label"
},
"value": "Obdurate Labs uses this with both kinds of units..."
}
]
}
]
}