MIABIS on FHIR Implementation Guide
1.3.0 - CI Build

MIABIS on FHIR Implementation Guide - Local Development build (v1.3.0) built by the FHIR (HL7® FHIR® Standard) Build Tools. See the Directory of published versions

: Example observation - TTL Representation

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 xsd: <http://www.w3.org/2001/XMLSchema#> .

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

<http://hl7.org/fhir/Observation/ObservationInstance> a fhir:Observation ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "ObservationInstance"] ;
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "https://fhir.bbmri-eric.eu/StructureDefinition/miabis-observation" ;
       fhir:index 0 ;
       fhir:link <https://fhir.bbmri-eric.eu/StructureDefinition/miabis-observation>
     ]
  ] ;
  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 ObservationInstance</b></p><a name=\"ObservationInstance\"> </a><a name=\"hcObservationInstance\"> </a><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\"/><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-miabis-observation.html\">Observation</a></p></div><p><b>identifier</b>: observationId</p><p><b>status</b>: Final</p><p><b>code</b>: <span title=\"Codes:{http://loinc.org 52797-8}\">Diagnosis ICD code [Identifier]</span></p><p><b>subject</b>: <a href=\"Patient-example.html\">Anonymous Patient Male, DoB: 1980-01-01 ( donorId)</a></p><p><b>effective</b>: 2020-01-01</p><p><b>value</b>: <span title=\"Codes:{http://hl7.org/fhir/sid/icd-10 A01}\">Typhoid and paratyphoid fevers</span></p><p><b>specimen</b>: <a href=\"Specimen-example.html\">Specimen: extension = https://directory.bbmri-eric.eu/#bbmri:exampleID; identifier = sampleId; type = Buffy coat; note = This is a restriction of sample usage</a></p></div>"
  ] ;
  fhir:Observation.identifier [
     fhir:index 0 ;
     fhir:Identifier.value [ fhir:value "observationId" ]
  ] ;
  fhir:Observation.status [ fhir:value "final"] ;
  fhir:Observation.code [
     fhir:CodeableConcept.coding [
       fhir:index 0 ;
       a loinc:52797-8 ;
       fhir:Coding.system [ fhir:value "http://loinc.org" ] ;
       fhir:Coding.code [ fhir:value "52797-8" ]
     ]
  ] ;
  fhir:Observation.subject [
     fhir:link <http://hl7.org/fhir/Patient/example> ;
     fhir:Reference.reference [ fhir:value "Patient/example" ]
  ] ;
  fhir:Observation.effectiveDateTime [ fhir:value "2020-01-01"^^xsd:date] ;
  fhir:Observation.valueCodeableConcept [
     fhir:CodeableConcept.coding [
       fhir:index 0 ;
       fhir:Coding.system [ fhir:value "http://hl7.org/fhir/sid/icd-10" ] ;
       fhir:Coding.code [ fhir:value "A01" ]
     ]
  ] ;
  fhir:Observation.specimen [
     fhir:link <http://hl7.org/fhir/Specimen/example> ;
     fhir:Reference.reference [ fhir:value "Specimen/example" ]
  ] .

<http://hl7.org/fhir/Patient/example> a fhir:Patient .

<http://hl7.org/fhir/Specimen/example> a fhir:Specimen .

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

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