AI Transparency on FHIR
1.0.0-current - STU1 Ballot International flag

AI Transparency on FHIR, published by HL7 International / Electronic Health Records. This guide is not an authorized publication; it is the continuous build for version 1.0.0-current built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/HL7/aitransparency-ig/ and changes regularly. See the Directory of published versions

: Blood Culture Result

Page standards status: Informative

Raw ttl | Download


@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 sct: <http://snomed.info/id/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

<http://hl7.org/fhir/Observation/f206> a fhir:Observation ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "f206"] ;
  fhir:Resource.language [ fhir:value "en"] ;
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ] ;
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: Observation f206</b></p><a name=\"f206\"> </a><a name=\"hcf206\"> </a><p><b>status</b>: Final</p><p><b>code</b>: <span title=\"Codes:{http://example.org/codes/foobar 104177}, {http://loinc.org 600-7}\">Blood culture</span></p><p><b>subject</b>: <a href=\"http://server.example.org/fhir/Patient/f201\">http://server.example.org/fhir/Patient/f201</a></p><p><b>effective</b>: 2013-03-11 10:28:00+0100</p><p><b>issued</b>: 2013-03-11 10:28:00+0100</p><p><b>performer</b>: <a href=\"http://server.example.org/fhir/Practitioner/pract\">http://server.example.org/fhir/Practitioner/pract</a></p><p><b>value</b>: <span title=\"Codes:{http://snomed.info/sct 3092008}\">Staphylococcus aureus</span></p><p><b>interpretation</b>: <span title=\"Codes:{http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation POS}\">Positive</span></p><p><b>method</b>: <span title=\"Codes:{http://snomed.info/sct 104177005}\">Blood culture for bacteria, including anaerobic screen</span></p></div>"
  ] ;
  fhir:Observation.status [ fhir:value "final"] ;
  fhir:Observation.code [
     fhir:CodeableConcept.coding [
       fhir:index -1 ;
       fhir:Coding.system [ fhir:value "http://example.org/codes/foobar" ] ;
       fhir:Coding.code [ fhir:value "104177" ] ;
       fhir:Coding.display [ fhir:value "Blood culture" ]
     ], [
       fhir:index -1 ;
       a loinc:600-7 ;
       fhir:Coding.system [ fhir:value "http://loinc.org" ] ;
       fhir:Coding.code [ fhir:value "600-7" ] ;
       fhir:Coding.display [ fhir:value "Bacteria identified in Blood by Culture" ]
     ]
  ] ;
  fhir:Observation.subject [
     fhir:link <http://server.example.org/fhir/Patient/f201> ;
     fhir:Reference.reference [ fhir:value "http://server.example.org/fhir/Patient/f201" ]
  ] ;
  fhir:Observation.effectiveDateTime [ fhir:value "2013-03-11T10:28:00+01:00"^^xsd:dateTime] ;
  fhir:Observation.issued [ fhir:value "2013-03-11T10:28:00+01:00"^^xsd:dateTime] ;
  fhir:Observation.performer [
     fhir:index -1 ;
     fhir:link <http://server.example.org/fhir/Practitioner/pract> ;
     fhir:Reference.reference [ fhir:value "http://server.example.org/fhir/Practitioner/pract" ]
  ] ;
  fhir:Observation.valueCodeableConcept [
     fhir:CodeableConcept.coding [
       fhir:index -1 ;
       a sct:3092008 ;
       fhir:Coding.system [ fhir:value "http://snomed.info/sct" ] ;
       fhir:Coding.code [ fhir:value "3092008" ] ;
       fhir:Coding.display [ fhir:value "Staphylococcus aureus" ]
     ]
  ] ;
  fhir:Observation.interpretation [
     fhir:index -1 ;
     fhir:CodeableConcept.coding [
       fhir:index -1 ;
       fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation" ] ;
       fhir:Coding.code [ fhir:value "POS" ]
     ]
  ] ;
  fhir:Observation.method [
     fhir:CodeableConcept.coding [
       fhir:index -1 ;
       a sct:104177005 ;
       fhir:Coding.system [ fhir:value "http://snomed.info/sct" ] ;
       fhir:Coding.code [ fhir:value "104177005" ] ;
       fhir:Coding.display [ fhir:value "Blood culture for bacteria, including anaerobic screen" ]
     ]
  ] .

# - ontology header ------------------------------------------------------------

<http://hl7.org/fhir/Observation/f206.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl ;
  owl:versionIRI <http://build.fhir.org/Observation/f206.ttl> .