@prefix fhir: <http://hl7.org/fhir/> .
@prefix loinc: <https://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 -------------------------------------------------------------------

<http://hl7.org/fhir/uv/vulcan-rwd/Observation/RWDLabResult> a fhir:Observation ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "RWDLabResult"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "http://hl7.org/fhir/uv/vulcan-rwd/StructureDefinition/ObservationLaboratoryResultsRwd"^^xsd:anyURI ;
       fhir:link <http://hl7.org/fhir/uv/vulcan-rwd/StructureDefinition/ObservationLaboratoryResultsRwd>
     ] )
  ] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative: Observation</b><a name=\"RWDLabResult\"> </a></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 Observation &quot;RWDLabResult&quot; </p><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-ObservationLaboratoryResultsRwd.html\">ObservationLaboratoryResultsRwd</a></p></div><p><b>status</b>: final</p><p><b>code</b>: Platelets [#/volume] in Blood <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"https://loinc.org/\">LOINC</a>#26515-7)</span></p><p><b>subject</b>: <a href=\"Patient-RWDPatient.html\">Patient/RWDPatient</a> &quot; PATIENT&quot;</p><p><b>effective</b>: 2022-07-01</p><p><b>performer</b>: <a href=\"Organization-RWDLaboratory.html\">Organization/RWDLaboratory</a> &quot;Sample Real World Data Laboratory&quot;</p><p><b>value</b>: 200000 platelets/uL</p><p><b>interpretation</b>: Normal <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"http://terminology.hl7.org/5.0.0/CodeSystem-v3-ObservationInterpretation.html\">ObservationInterpretation</a>#N)</span></p></div>"
  ] ; # 
  fhir:status [ fhir:v "final"] ; # 
  fhir:code [
     fhir:coding ( [
       a loinc:26515-7 ;
       fhir:system [ fhir:v "http://loinc.org"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "26515-7" ]
     ] )
  ] ; # 
  fhir:subject [
     fhir:link <http://hl7.org/fhir/uv/vulcan-rwd/Patient/RWDPatient> ;
     fhir:reference [ fhir:v "Patient/RWDPatient" ]
  ] ; # 
  fhir:effective [ fhir:v "2022-07-01"^^xsd:date] ; # 
  fhir:performer ( [
     fhir:link <http://hl7.org/fhir/uv/vulcan-rwd/Organization/RWDLaboratory> ;
     fhir:reference [ fhir:v "Organization/RWDLaboratory" ]
  ] ) ; # 
  fhir:value [ fhir:v "200000 platelets/uL"] ; # 
  fhir:interpretation ( [
     fhir:coding ( [
       fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "N" ]
     ] )
  ] ) . # 

<http://hl7.org/fhir/uv/vulcan-rwd/Patient/RWDPatient> a fhir:uv .

<http://hl7.org/fhir/uv/vulcan-rwd/Organization/RWDLaboratory> a fhir:uv .

# -------------------------------------------------------------------------------------

