@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.et/core/test/Patient/ExampleHIVPatientGood> a fhir:Patient ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "ExampleHIVPatientGood"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "http://fhir.et/hiv/StructureDefinition/HIVPatient"^^xsd:anyURI ;
       fhir:link <http://fhir.et/hiv/StructureDefinition/HIVPatient>
     ] )
  ] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Generated Narrative: Patient ExampleHIVPatientGood</b></p><a name=\"ExampleHIVPatientGood\"> </a><a name=\"hcExampleHIVPatientGood\"> </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=\"file:///github/workspace/output/StructureDefinition-HIVPatient.html\">HIV Program Patient</a></p></div><p style=\"border: 1px #661aff solid; background-color: #e6e6ff; padding: 10px;\">Challa  Male, DoB Unknown ( http://ethiori.moh.gov.et/hiv/art-number#ART-G-1)</p><hr/><table class=\"grid\"><tr><td style=\"background-color: #f3f5da\" title=\"Known Marital status of Patient\">Marital Status:</td><td colspan=\"3\"><span title=\"Codes:{http://terminology.hl7.org/CodeSystem/v3-MaritalStatus M}\">Married</span></td></tr><tr><td style=\"background-color: #f3f5da\" title=\"Other Id (see the one above)\">Other Id:</td><td colspan=\"3\"><code>http://id.gov.et/nationalidentifier</code>/HIV-G-1</td></tr></table></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:identifier ( [
     fhir:system [ fhir:v "http://ethiori.moh.gov.et/hiv/art-number"^^xsd:anyURI ] ;
     fhir:value [ fhir:v "ART-G-1" ]
  ] [
     fhir:system [ fhir:v "http://id.gov.et/nationalidentifier"^^xsd:anyURI ] ;
     fhir:value [ fhir:v "HIV-G-1" ]
  ] ) ; # 
  fhir:name ( [
     fhir:family [ fhir:v "Challa" ]
  ] ) ; # 
  fhir:gender [ fhir:v "male"] ; # 
  fhir:maritalStatus [
     fhir:coding ( [
       fhir:system [ fhir:v "http://terminology.hl7.org/CodeSystem/v3-MaritalStatus"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "M" ] ;
       fhir:display [ fhir:v "Married" ]
     ] )
  ] . # 

# -------------------------------------------------------------------------------------

