Publication Build: This will be filled in by the publication tooling
@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 -------------------------------------------------------------------
a fhir:Bundle;
fhir:nodeRole fhir:treeRoot;
fhir:Resource.id [ fhir:value "2000002"];
fhir:Resource.meta [
fhir:Meta.profile [
fhir:value "http://hl7.org/fhir/StructureDefinition/Bundle";
fhir:index 0;
fhir:link <http://hl7.org/fhir/StructureDefinition/Bundle> ]
];
fhir:Bundle.type [ fhir:value "searchset"];
fhir:Bundle.timestamp [ fhir:value "2020-07-16T20:26:23.217+00:00"^^xsd:dateTime];
fhir:Bundle.total [ fhir:value "2"^^xsd:nonNegativeInteger];
fhir:Bundle.link [
fhir:index 0;
fhir:Bundle.link.relation [ fhir:value "self" ];
fhir:Bundle.link.url [ fhir:value "https://example.com/base/fhir/MedicationDispense?ct=W3sidG9rZW4iOiIrUklEOn53MThjQUk5RlVPZ0lEQUFBQUFBQU" ]
];
fhir:Bundle.entry [
fhir:index 0;
fhir:Bundle.entry.fullUrl [ fhir:value "https://example.com/base/Patient/1" ];
fhir:Bundle.entry.resource <https://example.com/base/Patient/1>;
fhir:Bundle.entry.search [
fhir:Bundle.entry.search.mode [ fhir:value "include" ] ]
], [
fhir:index 1;
fhir:Bundle.entry.fullUrl [ fhir:value "https://example.com/base/MedicationDispense/1000001" ];
fhir:Bundle.entry.resource <https://example.com/base/MedicationDispense/1000001>;
fhir:Bundle.entry.search [
fhir:Bundle.entry.search.mode [ fhir:value "match" ] ]
].
<https://example.com/base/Patient/1> a fhir:Patient;
fhir:Resource.id [ fhir:value "1"];
fhir:DomainResource.text [
fhir:Narrative.status [ fhir:value "generated" ];
fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative</b></p><div style=\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\"><p style=\"margin-bottom: 0px\">Resource \"1\" </p></div></div>"
].
<https://example.com/base/MedicationDispense/1000001> a fhir:MedicationDispense;
fhir:Resource.id [ fhir:value "1000001"];
fhir:DomainResource.text [
fhir:Narrative.status [ fhir:value "generated" ];
fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative</b></p><div style=\"display: inline-block; background-color: #d9e0e7; padding: 6px; margin: 4px; border: 1px solid #8da1b4; border-radius: 5px; line-height: 60%\"><p style=\"margin-bottom: 0px\">Resource \"1000001\" </p></div><p><b>status</b>: completed</p><p><b>medication</b>: Lisinopril, 30 TABLET in 1 BLISTER PACK (54458-872-10) (package) <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"http://terminology.hl7.org/3.0.0/CodeSystem-v3-ndc.html\">National drug codes</a>#54458-872-10)</span></p><p><b>subject</b>: <a href=\"#Patient_1\">See above (Patient/1)</a></p><h3>Performers</h3><table class=\"grid\"><tr><td>-</td><td><b>Actor</b></td></tr><tr><td>*</td><td><a href=\"Practitioner-4.html\">Practitioner/4</a> \" SMITH\"</td></tr></table><p><b>location</b>: <a href=\"Location-5.html\">Location/5</a> \"MyFavorite Pharmacy\"</p><p><b>type</b>: Refill <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"http://terminology.hl7.org/3.0.0/CodeSystem-v3-ActCode.html\">ActCode</a>#RF)</span></p><p><b>quantity</b>: 60</p><p><b>daysSupply</b>: 30</p></div>"
];
fhir:MedicationDispense.status [ fhir:value "completed"];
fhir:MedicationDispense.medicationCodeableConcept [
fhir:CodeableConcept.coding [
fhir:index 0;
fhir:Coding.system [ fhir:value "http://hl7.org/fhir/sid/ndc" ];
fhir:Coding.code [ fhir:value "54458-872-10" ] ]
];
fhir:MedicationDispense.subject [
fhir:Reference.reference [ fhir:value "Patient/1" ]
];
fhir:MedicationDispense.performer [
fhir:index 0;
fhir:MedicationDispense.performer.actor [
fhir:Reference.reference [ fhir:value "Practitioner/4" ] ]
];
fhir:MedicationDispense.location [
fhir:Reference.reference [ fhir:value "Location/5" ]
];
fhir:MedicationDispense.type [
fhir:CodeableConcept.coding [
fhir:index 0;
fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v3-ActCode" ];
fhir:Coding.code [ fhir:value "RF" ] ]
];
fhir:MedicationDispense.quantity [
fhir:Quantity.value [ fhir:value "60"^^xsd:decimal ]
];
fhir:MedicationDispense.daysSupply [
fhir:Quantity.value [ fhir:value "30"^^xsd:decimal ]
].
# - ontology header ------------------------------------------------------------
a owl:Ontology;
owl:imports fhir:fhir.ttl.