@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 sct: <http://snomed.info/id/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

<http://hl7.org/fhir/us/resp-net/Condition/influenza-example> a fhir:Condition ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "influenza-example"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "http://hl7.org/fhir/us/ecr/StructureDefinition/us-ph-condition"^^xsd:anyURI ;
       fhir:l <http://hl7.org/fhir/us/ecr/StructureDefinition/us-ph-condition>
     ] )
  ] ; # 
  fhir:text [
     fhir:status [ fhir:v "extensions" ] ;
     fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Narrative</b></p><p><b>id</b>: influenza-example</p><p><b>meta</b>: </p><p><b>clinicalStatus</b>: <span title=\"Codes: {http://terminology.hl7.org/CodeSystem/condition-clinical active}\">Active</span></p><p><b>verificationStatus</b>: <span title=\"Codes: {http://terminology.hl7.org/CodeSystem/condition-ver-status confirmed}\">Confirmed</span></p><p><b>category</b>: Encounter Diagnosis</p><p><b>code</b>: <span title=\"Codes: {http://snomed.info/sct 442438000}\"> Influenza caused by Influenza A virus (disorder) </span></p><p><b>subject</b>: <a href=\"Patient-patient-respnet-eve-everywoman.html\">Eve Everywoman. Generated Summary: id: example; Medical Record Number: 1032702 (USUAL); active; Eve Everywoman; ph: 1-(404)555-1212(HOME), eve.everywoman@example.com; gender: female; birthDate: 1984-11-24</a></p><p><b>onset</b>: 2023-09-03</p></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:clinicalStatus [
     fhir:coding ( [
       fhir:system [
         fhir:v "http://terminology.hl7.org/CodeSystem/condition-clinical"^^xsd:anyURI ;
         fhir:l <http://terminology.hl7.org/CodeSystem/condition-clinical>
       ] ;
       fhir:code [ fhir:v "active" ] ;
       fhir:display [ fhir:v "Active" ]
     ] ) ;
     fhir:text [ fhir:v "Active" ]
  ] ; # 
  fhir:verificationStatus [
     fhir:coding ( [
       fhir:system [
         fhir:v "http://terminology.hl7.org/CodeSystem/condition-ver-status"^^xsd:anyURI ;
         fhir:l <http://terminology.hl7.org/CodeSystem/condition-ver-status>
       ] ;
       fhir:code [ fhir:v "confirmed" ] ;
       fhir:display [ fhir:v "Confirmed" ]
     ] ) ;
     fhir:text [ fhir:v "Confirmed" ]
  ] ; # 
  fhir:category ( [
     fhir:coding ( [
       fhir:system [
         fhir:v "http://terminology.hl7.org/CodeSystem/condition-category"^^xsd:anyURI ;
         fhir:l <http://terminology.hl7.org/CodeSystem/condition-category>
       ] ;
       fhir:code [ fhir:v "encounter-diagnosis" ] ;
       fhir:display [ fhir:v "Encounter Diagnosis" ]
     ] ) ;
     fhir:text [ fhir:v "Encounter Diagnosis" ]
  ] ) ; # 
  fhir:code [
     fhir:coding ( [
       a sct:442438000 ;
       fhir:system [
         fhir:v "http://snomed.info/sct"^^xsd:anyURI ;
         fhir:l <http://snomed.info/sct>
       ] ;
       fhir:code [ fhir:v "442438000" ] ;
       fhir:display [ fhir:v "Influenza caused by Influenza A virus (disorder)" ]
     ] ) ;
     fhir:text [ fhir:v "Influenza caused by Influenza A virus (disorder)" ]
  ] ; # 
  fhir:subject [
     fhir:l <http://hl7.org/fhir/us/resp-net/Patient/patient-respnet-eve-everywoman> ;
     fhir:reference [ fhir:v "Patient/patient-respnet-eve-everywoman" ] ;
     fhir:display [ fhir:v "Eve Everywoman" ]
  ] ; # 
  fhir:encounter [
     fhir:l <http://hl7.org/fhir/us/resp-net/Encounter/resp-net-encounter-example> ;
     fhir:reference [ fhir:v "Encounter/resp-net-encounter-example" ]
  ] ; # 
  fhir:onset [
     a fhir:DateTime ;
     fhir:v "2023-10-01"^^xsd:date
  ] ; # 
  fhir:asserter [
     fhir:l <http://hl7.org/fhir/us/resp-net/Practitioner/practitioner-us-core-henry-seven> ;
     fhir:reference [ fhir:v "Practitioner/practitioner-us-core-henry-seven" ] ;
     fhir:display [ fhir:v "Henry Seven, MD" ]
  ] . # 

<http://hl7.org/fhir/us/resp-net/Patient/patient-respnet-eve-everywoman> a fhir:Us .

<http://hl7.org/fhir/us/resp-net/Encounter/resp-net-encounter-example> a fhir:Us .

<http://hl7.org/fhir/us/resp-net/Practitioner/practitioner-us-core-henry-seven> a fhir:Us .

# -------------------------------------------------------------------------------------

