-
Notifications
You must be signed in to change notification settings - Fork 0
/
Patient-PatientExample.ttl
27 lines (23 loc) · 1.14 KB
/
Patient-PatientExample.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
@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 -------------------------------------------------------------------
<https://github.com/IMI-H2O/h2o-fhir-ig/Patient/PatientExample> a fhir:Patient ;
fhir:nodeRole fhir:treeRoot ;
fhir:id [ fhir:v "PatientExample"] ; #
fhir:meta [
fhir:profile ( [
fhir:v "https://github.com/IMI-H2O/h2o-fhir-ig/StructureDefinition/MyPatient"^^xsd:anyURI ;
fhir:link <https://github.com/IMI-H2O/h2o-fhir-ig/StructureDefinition/MyPatient>
] )
] ; #
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> (no stated gender), DoB Unknown</p><hr/></div>"
] ; #
fhir:name ( [
fhir:family [ fhir:v "Pond" ] ;
fhir:given ( [ fhir:v "James" ] )
] ) . #
# -------------------------------------------------------------------------------------