-
Notifications
You must be signed in to change notification settings - Fork 0
/
pieter_fhir.ttl
107 lines (106 loc) · 3.92 KB
/
pieter_fhir.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix string: <http://www.w3.org/2000/10/swap/string#>.
@prefix xsd: <http://www.w3.org/2001/XMLSchema#>.
@prefix schema: <http://schema.org/>.
@prefix prov: <http://www.w3.org/ns/prov#>.
@prefix person: <http://www.w3.org/ns/person#>.
@prefix locn: <http://www.w3.org/ns/locn#>.
@prefix vp: <https://data.vlaanderen.be/ns/persoon#>.
@prefix va: <https://data.vlaanderen.be/ns/adres#>.
@prefix : <http://example.org/>.
@prefix func: <http://www.w3.org/2007/rif-builtin-function#>.
@prefix fhir: <http://hl7.org/fhir/>.
@prefix owl: <http://www.w3.org/2002/07/owl#>.
@prefix foaf: <http://xmlns.com/foaf/0.1/>.
<https://raw.githubusercontent.com/doerthe/oslo-to-fhir/main/pieter_oslo.ttl>
fhir:Patient.address [
fhir:Address.city [
fhir:value "Gent";
fhir:Address.line [
fhir:index 0;
fhir:value "Hoogstaat 99" ];
fhir:Address.postalCode [
fhir:value "9000" ];
fhir:index 0 ];
fhir:Patient.birthDate [
fhir:Element.extension [
fhir:Extension.url [
fhir:value "http://hl7.org/fhir/StructureDefinition/patient-birthTime" ];
fhir:Extension.valueDateTime [
fhir:value "1974-12-25T14:35:45-05:00"^^xsd:dateTime ];
fhir:index 0 ] ];
fhir:Patient.gender [
fhir:value "male" ];
fhit:Patient.name [
fhir:HumanName.family [
fhir:value "Smit" ];
fhir:HumanName.given [
fhir:index 0;
fhir:value "Pieter" ],
[
fhir:index 1;
fhir:value " Willem " ];
fhir:HumanName.use [
fhir:value "official" ];
fhir:index 0 ];
fhir:Patient.telecom [
fhir:ContactPoint.rank [
fhir:value "1"^^xsd:positiveInteger ];
fhir:ContactPoint.system [
fhir:value "phone" ];
fhir:ContactPoint.value [
fhir:value "0032041234567" ];
fhir:index 0 ] ;
fhir:Patient.contact [
fhir:index "0"^^xsd:integer ;
fhir:Patient.contact.address [
fhir:Address.city [
fhir:value "PleasantVille"
] ;
fhir:Address.district [
fhir:value "Rainbow"
] ;
fhir:Address.line [
fhir:index "0"^^xsd:integer ;
fhir:value "534 Erewhon St"
] ;
fhir:Address.period [
fhir:Period.start [
fhir:value "1974-12-25"^^xsd:date
]
] ;
fhir:Address.postalCode [
fhir:value "3999"
] ;
fhir:Address.state [
fhir:value "Vic"
] ;
fhir:Address.type [
fhir:value "both"
] ;
fhir:Address.use [
fhir:value "home"
]
] ;
fhir:Patient.contact.gender [
fhir:value "female"
] ;
fhir:Patient.contact.name [
fhir:HumanName.family [
fhir:value "Smit"
] ;
fhir:HumanName.given [
fhir:index "0"^^xsd:integer ;
fhir:value "Sofie"
]
] ;
fhir:Patient.contact.telecom [
fhir:index "0"^^xsd:integer ;
fhir:ContactPoint.system [
fhir:value "phone"
] ;
fhir:ContactPoint.value [
fhir:value "00320499999999"
]
]
] .