-
Notifications
You must be signed in to change notification settings - Fork 0
/
Patient-JamesPondPatient.ttl
60 lines (56 loc) · 3.39 KB
/
Patient-JamesPondPatient.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
@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://fhir-arf-register.nardhc.org/Patient/JamesPondPatient> a fhir:Patient ;
fhir:nodeRole fhir:treeRoot ;
fhir:id [ fhir:v "JamesPondPatient"] ; #
fhir:meta [
fhir:profile ( [
fhir:v "http://fhir-arf-register.nardhc.org/StructureDefinition/ARFPatient"^^xsd:anyURI ;
fhir:link <http://fhir-arf-register.nardhc.org/StructureDefinition/ARFPatient>
] )
] ; #
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>James Pond </b> male, DoB: 1960-01-25 ( National unique individual identifier/8003608833357361 (use: official))</p><hr/><table class=\"grid\"><tr><td style=\"background-color: #f3f5da\" title=\"Ways to contact the Patient\">Contact Detail</td><td colspan=\"3\"><a href=\"tel:+61444123456\">+61 444 123456</a></td></tr><tr><td style=\"background-color: #f3f5da\" title=\"Patient Links\">Links:</td><td colspan=\"3\"><ul><li>General Practitioner: <a href=\"Practitioner-DoctorPayne.html\">Practitioner/DoctorPayne</a> " PAYNE"</li><li>Managing Organization: <a href=\"RemoteClinic\">RemoteClinic</a></li></ul></td></tr><tr><td style=\"background-color: #f3f5da\" title=\"This extension applies to the Patient resource and is used to indicate whether a person identifies as being of Aboriginal or Torres Strait Islander origin.\"><a href=\"http://hl7.org.au/fhir/4.1.0/StructureDefinition-indigenous-status.html\">Australian Indigenous Status</a></td><td colspan=\"3\"><ul><li>australian-indigenous-status-1 3: Both Aboriginal and Torres Strait Islander origin</li></ul></td></tr></table></div>"
] ; #
fhir:extension ( [
fhir:url [ fhir:v "http://hl7.org.au/fhir/StructureDefinition/indigenous-status"^^xsd:anyURI ] ;
fhir:value [
a fhir:Coding ;
fhir:system [ fhir:v "https://healthterminologies.gov.au/fhir/CodeSystem/australian-indigenous-status-1"^^xsd:anyURI ] ;
fhir:code [ fhir:v "3" ] ;
fhir:display [ fhir:v "Both Aboriginal and Torres Strait Islander origin" ]
]
] ) ; #
fhir:identifier ( [
fhir:use [ fhir:v "official" ] ;
fhir:type [
fhir:coding ( [
fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v2-0203"^^xsd:anyURI ] ;
fhir:code [ fhir:v "NI" ]
] )
] ;
fhir:system [ fhir:v "http://ns.electronichealth.net.au/id/hi/ihi/1.0"^^xsd:anyURI ] ;
fhir:value [ fhir:v "8003608833357361" ]
] ) ; #
fhir:name ( [
fhir:family [ fhir:v "Pond" ] ;
fhir:given ( [ fhir:v "James" ] )
] ) ; #
fhir:telecom ( [
fhir:system [ fhir:v "phone" ] ;
fhir:value [ fhir:v "+61 444 123456" ]
] ) ; #
fhir:gender [ fhir:v "male"] ; #
fhir:birthDate [ fhir:v "1960-01-25"^^xsd:date] ; #
fhir:generalPractitioner ( [
fhir:link <http://fhir-arf-register.nardhc.org/Practitioner/DoctorPayne> ;
fhir:reference [ fhir:v "Practitioner/DoctorPayne" ]
] ) ; #
fhir:managingOrganization [
fhir:reference [ fhir:v "RemoteClinic" ]
] . #
# -------------------------------------------------------------------------------------