-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCondition-JamesPondCondition.ttl
71 lines (67 loc) · 4.16 KB
/
Condition-JamesPondCondition.ttl
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
@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix sct: <http://snomed.info/id/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
# - resource -------------------------------------------------------------------
<http://fhir-arf-register.nardhc.org/Condition/JamesPondCondition> a fhir:Condition ;
fhir:nodeRole fhir:treeRoot ;
fhir:id [ fhir:v "JamesPondCondition"] ; #
fhir:meta [
fhir:profile ( [
fhir:v "http://fhir-arf-register.nardhc.org/StructureDefinition/ARFCondition"^^xsd:anyURI ;
fhir:link <http://fhir-arf-register.nardhc.org/StructureDefinition/ARFCondition>
] )
] ; #
fhir:text [
fhir:status [ fhir:v "generated" ] ;
fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative: Condition</b><a name=\"JamesPondCondition\"> </a><a name=\"hcJamesPondCondition\"> </a></p><div style=\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\"><p style=\"margin-bottom: 0px\">ResourceCondition "JamesPondCondition" </p><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-ARFCondition.html\">ARFCondition</a></p></div><p><b>identifier</b>: <code>http://arf-register.nardhc.org/system/registration-id</code>/ARF1000123</p><p><b>clinicalStatus</b>: active <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> ([not stated]#active)</span></p><p><b>verificationStatus</b>: confirmed <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> ([not stated]#confirmed)</span></p><p><b>category</b>: problem-list-item <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> ([not stated]#problem-list-item)</span></p><p><b>severity</b>: moderate <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> ([not stated]#moderate)</span></p><p><b>code</b>: Acute rheumatic fever <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"https://browser.ihtsdotools.org/\">SNOWMED CT</a>#195528001)</span></p><p><b>subject</b>: <a href=\"Patient-JamesPondPatient.html\">Patient/JamesPondPatient</a> " POND"</p><p><b>onset</b>: 1995-02-02</p><p><b>recordedDate</b>: 2023-01-30</p><p><b>recorder</b>: <a href=\"Practitioner-DoctorPayne.html\">Practitioner/DoctorPayne</a> " PAYNE"</p><p><b>asserter</b>: <a href=\"Practitioner-DoctorPayne.html\">Practitioner/DoctorPayne</a> " PAYNE"</p></div>"
] ; #
fhir:identifier ( [
fhir:system [ fhir:v "http://arf-register.nardhc.org/system/registration-id"^^xsd:anyURI ] ;
fhir:value [ fhir:v "ARF1000123" ]
] ) ; #
fhir:clinicalStatus [
fhir:coding ( [
fhir:code [ fhir:v "active" ]
] )
] ; #
fhir:verificationStatus [
fhir:coding ( [
fhir:code [ fhir:v "confirmed" ]
] )
] ; #
fhir:category ( [
fhir:coding ( [
fhir:code [ fhir:v "problem-list-item" ]
] )
] ) ; #
fhir:severity [
fhir:coding ( [
fhir:code [ fhir:v "moderate" ]
] )
] ; #
fhir:code [
fhir:coding ( [
a sct:195528001 ;
fhir:system [ fhir:v "http://snomed.info/sct"^^xsd:anyURI ] ;
fhir:code [ fhir:v "195528001" ] ;
fhir:display [ fhir:v "Acute rheumatic fever" ]
] ) ;
fhir:text [ fhir:v "Acute rheumatic fever" ]
] ; #
fhir:subject [
fhir:link <http://fhir-arf-register.nardhc.org/Patient/JamesPondPatient> ;
fhir:reference [ fhir:v "Patient/JamesPondPatient" ]
] ; #
fhir:onset [ fhir:v "1995-02-02"^^xsd:date] ; #
fhir:recordedDate [ fhir:v "2023-01-30"^^xsd:date] ; #
fhir:recorder [
fhir:link <http://fhir-arf-register.nardhc.org/Practitioner/DoctorPayne> ;
fhir:reference [ fhir:v "Practitioner/DoctorPayne" ]
] ; #
fhir:asserter [
fhir:link <http://fhir-arf-register.nardhc.org/Practitioner/DoctorPayne> ;
fhir:reference [ fhir:v "Practitioner/DoctorPayne" ]
] . #
# -------------------------------------------------------------------------------------