Permalink
Switch branches/tags
Nothing to show
Find file
Fetching contributors…
Cannot retrieve contributors at this time
75 lines (74 sloc) 3.1 KB
@prefix Other: <http://hl7/org/fhir/Other#> .
@prefix fhir: <http://hl7/org/fhir/> .
@prefix Narrative: <http://hl7/org/fhir/Narrative#> .
@prefix Observation: <http://hl7/org/fhir/Observation#> .
@prefix Quantity: <http://hl7/org/fhir/Quantity#> .
@prefix Resource: <http://hl7/org/fhir/Resource#> .
@prefix Reference: <http://hl7/org/fhir/Reference#> .
@prefix Range: <http://hl7/org/fhir/Range#> .
@prefix Codeable: <http://hl7/org/fhir/Codeable#> .
@prefix Coding: <http://hl7/org/fhir/Coding#> .
@prefix xhtml: <http://www.w3.org/1999/xhtml> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema> .
@base <http://this-fhir-server/fhir/> .
<other-nonmon> a :modified_Other;
<http://example.org/do-not-use/fhir-extensions/referral#requestingPractitioner> [
a fhir:Reference;
Reference:reference <Practitioner/f201>;
Reference:display "Dokter Bronsig"
];
<http://example.org/do-not-use/fhir-extensions/referral#notes> [
a fhir:string;
fhir:value "The patient had fever peaks over the last couple of days. He is worried about these peaks.";
];
<http://example.org/do-not-use/fhir-extensions/referral#fulfillingEncounter> [
a fhir:Reference;
Reference:reference <Encounter/f201>;
];
<http://example.org/do-not-use/fhir-extensions/referral#referredForService> [
a :CodeableConcept;
CodeableConcept:coding [
a :Coding;
Coding:system <http://snomed.info/id>;
Coding:code "11429006"^^fhir:code;
Coding:display "Consultation";
];
];
fhir:modifiedBy <http://example.org/do-not-use/fhir-extensions/referral#referredForService>;
<http://example.org/do-not-use/fhir-extensions/referral#targetDate> [
a :Period;
Period:start [
a fhir:dateTime;
fhir:value "2013-04-01";
];
Period:end [
a fhir:dateTime;
fhir:value "2013-04-15";
]
];
fhir:modifiedBy <http://example.org/do-not-use/fhir-extensions/referral#targetDate>;
<http://example.org/do-not-use/fhir-extensions/referral#status> [
a fhir:modifying_code;
fhir:value "complete";
];
fhir:modifiedBy <http://example.org/do-not-use/fhir-extensions/referral#status>;
Other:text [
a :Narrative;
Narrative:status "generated"^^fhir:code;
Narrative:div [
a fhir:xhtml;
fhir:text """<div><p><b>Patient:</b>Roel</p><p><b>Requestor:</b>Dokter Bronsig</p><p><b>Type:</b>Consultation</p><p><b>Target Date:</b>April 1 - April 31</p><p>COMPLETED</p><b>The patient had fever peaks over the last couple of days. He is worried about these peaks.</b></div>""";
]
];
Other:code [
a :CodeableConcept;
CodeableConcept:coding [
a :Coding;
Coding:system <http://hl7.org/fhir/other-resource-type>;
Coding:code "REFERRAL"^^fhir:code;
];
];
Other:subject <Patient/f201>;
.
<Practitioner/f201> Reference:display "Dokter Bronsig" .
<Patient/f201> Reference:display "Roel" .