@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 -------------------------------------------------------------------

<http://fhir.health.gov.lk/ips/Condition/NoMedicalHistoryExample> a fhir:Condition ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "NoMedicalHistoryExample"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "http://fhir.health.gov.lk/ips/StructureDefinition/no-medical-history"^^xsd:anyURI ;
       fhir:link <http://fhir.health.gov.lk/ips/StructureDefinition/no-medical-history>
     ] )
  ] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: Condition NoMedicalHistoryExample</b></p><a name=\"NoMedicalHistoryExample\"> </a><a name=\"hcNoMedicalHistoryExample\"> </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-no-medical-history.html\">Medical History</a></p></div><p><b>clinicalStatus</b>: <span title=\"Codes:{http://terminology.hl7.org/CodeSystem/condition-clinical inactive}\">Inactive</span></p><p><b>code</b>: <span title=\"Codes:{http://hl7.org/fhir/uv/ips/CodeSystem/absent-unknown-uv-ips no-problem-info}\">No information about problems</span></p><p><b>subject</b>: <a href=\"Patient-PatientExample.html\">Mike John Smith (official) Male, DoB: 1983-05-22 ( Personal Health Number: personal health number)</a></p><p><b>encounter</b>: <a href=\"Encounter-TargetFacilityEncounterExample.html\">Encounter: status = finished; class = ambulatory (ActCode#AMB); period = 2022-12-01 --&gt; 2023-01-20; reasonCode = Myalgia</a></p><p><b>recordedDate</b>: 2023-10-06 13:28:17-0500</p></div>"^^rdf:XMLLiteral
  ] ; # 
  fhir:clinicalStatus [
     fhir:coding ( [
       fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/condition-clinical"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "inactive" ]
     ] )
  ] ; # 
  fhir:code [
     fhir:coding ( [
       fhir:system [ fhir:v "http://hl7.org/fhir/uv/ips/CodeSystem/absent-unknown-uv-ips"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "no-problem-info" ]
     ] )
  ] ; # 
  fhir:subject [
     fhir:link <http://fhir.health.gov.lk/ips/Patient/PatientExample> ;
     fhir:reference [ fhir:v "Patient/PatientExample" ]
  ] ; # 
  fhir:encounter [
     fhir:link <http://fhir.health.gov.lk/ips/Encounter/TargetFacilityEncounterExample> ;
     fhir:reference [ fhir:v "Encounter/TargetFacilityEncounterExample" ]
  ] ; # 
  fhir:recordedDate [ fhir:v "2023-10-06T13:28:17-05:00"^^xsd:dateTime] . # 

# -------------------------------------------------------------------------------------

