Smart Bear Implementation Guide
1.0.0 - ci-build
Smart Bear Implementation Guide - Local Development build (v1.0.0). See the Directory of published versions
@prefix fhir: <http://hl7.org/fhir/> .
@prefix loinc: <http://loinc.org/rdf#> .
@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:Patient;
fhir:nodeRole fhir:treeRoot;
fhir:Resource.id [ fhir:value "Patient001"];
fhir:Resource.meta [
fhir:Meta.profile [
fhir:value "https://140.164.14.210/fhir/StructureDefinition/SmartBearPatient";
fhir:index 0;
fhir:link <https://140.164.14.210/fhir/StructureDefinition/SmartBearPatient> ]
];
fhir:DomainResource.text [
fhir:Narrative.status [ fhir:value "extensions" ];
fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative</b></p><p><b>Patient Ethnicity</b>: <span title=\"Codes: {http://loinc.org 2135-2}\">Hispanic or Latino</span></p><p><b>SourceReferral</b>: GP</p><p><b>identifier</b>: id: Patient001</p><p><b>birthDate</b>: 1983-11-07</p></div>"
];
fhir:DomainResource.extension [
fhir:index 0;
fhir:Extension.url [ fhir:value "https://140.164.14.210/fhir/StructureDefinition/PatientEthnicity" ];
fhir:Extension.valueCodeableConcept [
fhir:CodeableConcept.coding [
fhir:index 0;
a loinc:2135-2;
fhir:Coding.system [ fhir:value "http://loinc.org" ];
fhir:Coding.code [ fhir:value "2135-2" ];
fhir:Coding.display [ fhir:value "Hispanic or Latino" ] ] ]
], [
fhir:index 1;
fhir:Extension.url [ fhir:value "https://140.164.14.210/fhir/StructureDefinition/SourceReferral" ];
fhir:Extension.valueString [ fhir:value "GP" ]
];
fhir:Patient.identifier [
fhir:index 0;
fhir:Identifier.value [ fhir:value "Patient001" ]
];
fhir:Patient.birthDate [ fhir:value "1983-11-07"^^xsd:date].
# - ontology header ------------------------------------------------------------
a owl:Ontology;
owl:imports fhir:fhir.ttl.