-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPatient-example.ttl
72 lines (68 loc) · 3.3 KB
/
Patient-example.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
71
72
@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 xsd: <http://www.w3.org/2001/XMLSchema#> .
# - resource -------------------------------------------------------------------
<http://smartva.org/Patient/example> a fhir:Patient ;
fhir:nodeRole fhir:treeRoot ;
fhir:id [ fhir:v "example"] ; #
fhir:meta [
fhir:profile ( [
fhir:v "http://hl7.org/fhir/StructureDefinition/Patient"^^xsd:anyURI ;
fhir:link <http://hl7.org/fhir/StructureDefinition/Patient>
] )
] ; #
fhir:text [
fhir:status [ fhir:v "generated" ] ;
fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p style=\"border: 1px #661aff solid; background-color: #e6e6ff; padding: 10px;\"><b>Amy V. Baxter </b> female, DoB: 1987-02-20</p><hr/><table class=\"grid\"><tr><td style=\"background-color: #f3f5da\" title=\"Record is active\">Active:</td><td>false</td><td style=\"background-color: #f3f5da\" title=\"Known status of Patient\">Deceased:</td><td colspan=\"3\">true</td></tr><tr><td style=\"background-color: #f3f5da\" title=\"Alternate names (see the one above)\">Alt. Name:</td><td colspan=\"3\">Amy V. Shaw (OLD)</td></tr><tr><td style=\"background-color: #f3f5da\" title=\"Ways to contact the Patient\">Contact Details:</td><td colspan=\"3\"><ul><li>ph: 555-555-5555(HOME)</li><li><a href=\"mailto:[email protected]\">[email protected]</a></li><li>49 MEADOW ST MOUNDS OK 74047 US (OLD)</li><li>183 MOUNTAIN VIEW ST MOUNDS OK 74048 US </li></ul></td></tr></table></div>"
] ; #
fhir:active [ fhir:v "false"^^xsd:boolean] ; #
fhir:name ( [
fhir:use [ fhir:v "old" ] ;
fhir:family [ fhir:v "Shaw" ] ;
fhir:given ( [ fhir:v "Amy" ] [ fhir:v "V." ] ) ;
fhir:period [
fhir:start [ fhir:v "2016-12-06"^^xsd:date ] ;
fhir:end [ fhir:v "2020-07-22"^^xsd:date ]
]
] [
fhir:family [ fhir:v "Baxter" ] ;
fhir:given ( [ fhir:v "Amy" ] [ fhir:v "V." ] ) ;
fhir:suffix ( [ fhir:v "PharmD" ] ) ;
fhir:period [
fhir:start [ fhir:v "2020-07-22"^^xsd:date ]
]
] ) ; #
fhir:telecom ( [
fhir:system [ fhir:v "phone" ] ;
fhir:value [ fhir:v "555-555-5555" ] ;
fhir:use [ fhir:v "home" ]
] [
fhir:system [ fhir:v "email" ] ;
fhir:value [ fhir:v "[email protected]" ]
] ) ; #
fhir:gender [ fhir:v "female"] ; #
fhir:birthDate [ fhir:v "1987-02-20"^^xsd:date] ; #
fhir:deceased [ fhir:v "true"^^xsd:boolean] ; #
fhir:address ( [
fhir:use [ fhir:v "old" ] ;
fhir:line ( [ fhir:v "49 MEADOW ST" ] ) ;
fhir:city [ fhir:v "MOUNDS" ] ;
fhir:state [ fhir:v "OK" ] ;
fhir:postalCode [ fhir:v "74047" ] ;
fhir:country [ fhir:v "US" ] ;
fhir:period [
fhir:start [ fhir:v "2016-12-06"^^xsd:date ] ;
fhir:end [ fhir:v "2020-07-22"^^xsd:date ]
]
] [
fhir:line ( [ fhir:v "183 MOUNTAIN VIEW ST" ] ) ;
fhir:city [ fhir:v "MOUNDS" ] ;
fhir:state [ fhir:v "OK" ] ;
fhir:postalCode [ fhir:v "74048" ] ;
fhir:country [ fhir:v "US" ] ;
fhir:period [
fhir:start [ fhir:v "2020-07-22"^^xsd:date ]
]
] ) . #
# -------------------------------------------------------------------------------------