@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://fhir.ehdsi.eu/eps/Observation/6e4dfb97-6d31-4f48-b4ad-983a9f62f42b> a fhir:Observation ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "6e4dfb97-6d31-4f48-b4ad-983a9f62f42b"] ;
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "http://fhir.ehdsi.eu/eps/StructureDefinition/observation-travel-history-myhealtheu-eps" ;
       fhir:index 0 ;
       fhir:link <http://fhir.ehdsi.eu/eps/StructureDefinition/observation-travel-history-myhealtheu-eps>
     ]
  ] ;
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ] ;
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p>Country visited: Botswana, 2025-07-12 to 2025-07-19.</p></div>"
  ] ;
  fhir:Observation.status [ fhir:value "final"] ;
  fhir:Observation.category [
     fhir:index 0 ;
     fhir:CodeableConcept.coding [
       fhir:index 0 ;
       fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/observation-category" ] ;
       fhir:Coding.code [ fhir:value "social-history" ] ;
       fhir:Coding.display [ fhir:value "Social History" ]
     ]
  ] ;
  fhir:Observation.code [
     fhir:CodeableConcept.coding [
       fhir:index 0 ;
       a loinc:94651-7 ;
       fhir:Coding.system [ fhir:value "http://loinc.org" ] ;
       fhir:Coding.code [ fhir:value "94651-7" ] ;
       fhir:Coding.display [ fhir:value "Country of travel [Location]" ]
     ]
  ] ;
  fhir:Observation.subject [
     fhir:link <http://fhir.ehdsi.eu/eps/Patient/f0b2dcfe-e837-464b-ae8a-3b9da1807dd3> ;
     fhir:Reference.reference [ fhir:value "Patient/f0b2dcfe-e837-464b-ae8a-3b9da1807dd3" ]
  ] ;
  fhir:Observation.effectivePeriod [
     fhir:Period.start [ fhir:value "2025-07-12"^^xsd:date ] ;
     fhir:Period.end [ fhir:value "2025-07-19"^^xsd:date ]
  ] ;
  fhir:Observation.valueCodeableConcept [
     fhir:CodeableConcept.coding [
       fhir:index 0 ;
       fhir:Coding.system [ fhir:value "urn:iso:std:iso:3166" ] ;
       fhir:Coding.code [ fhir:value "BW" ] ;
       fhir:Coding.display [ fhir:value "Botswana" ]
     ]
  ] .

# - ontology header ------------------------------------------------------------

<http://fhir.ehdsi.eu/eps/Observation/6e4dfb97-6d31-4f48-b4ad-983a9f62f42b.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl .

# -------------------------------------------------------------------------------------

