@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

<https://fhir.apps.health/Encounter/enc-avery-20250408-01rc> a fhir:Encounter ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "enc-avery-20250408-01rc"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "https://fhir.apps.health/StructureDefinition/polaris-core-encounter"^^xsd:anyURI ;
       fhir:link <https://fhir.apps.health/StructureDefinition/polaris-core-encounter>
     ] )
  ] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p>Annual wellness visit for Avery Linwood on April 8, 2025. Patient reported: new onset dizziness and fatigue. In-person assessment led to diagnosis of acute anemia and emergency intervention.</p></div>"^^rdf:XMLLiteral
  ] ; # 
  fhir:identifier ( [
     fhir:system [ fhir:v "https://fhir.apps.health/NamingSystem/cedarbrook-clinic-encounter-identifier"^^xsd:anyURI ] ;
     fhir:value [ fhir:v "enc-avery-20250408-01rc" ]
  ] ) ; # 
  fhir:status [ fhir:v "finished"] ; # 
  fhir:class [
     fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v3-ActCode"^^xsd:anyURI ] ;
     fhir:code [ fhir:v "AMB" ] ;
     fhir:display [ fhir:v "ambulatory" ]
  ] ; # 
  fhir:type ( [
     fhir:text [ fhir:v "Annual checkup and new symptom investigation" ]
  ] ) ; # 
  fhir:subject [
     fhir:identifier [
       fhir:system [ fhir:v "https://fhir.apps.health/NamingSystem/cedarbrook-clinic-patient-identifier"^^xsd:anyURI ] ;
       fhir:value [ fhir:v "1234567890" ]
     ] ;
     fhir:display [ fhir:v "Avery Linwood" ]
  ] ; # 
  fhir:period [
     fhir:start [ fhir:v "2025-04-08T09:00:00-06:00"^^xsd:dateTime ] ;
     fhir:end [ fhir:v "2025-04-08T09:45:00-06:00"^^xsd:dateTime ]
  ] ; # 
  fhir:reasonCode ( [
     fhir:text [ fhir:v "Patient reports new onset dizziness and fatigue." ]
  ] ) ; # 
  fhir:serviceProvider [
     fhir:identifier [
       fhir:system [ fhir:v "https://fhir.apps.health/NamingSystem/organization-identifier"^^xsd:anyURI ] ;
       fhir:value [ fhir:v "cedarbrook-clinic" ]
     ] ;
     fhir:display [ fhir:v "Cedarbrook Family Health" ]
  ] . # 

# -------------------------------------------------------------------------------------

