FHIR Clinical Documents
1.1.0 - STU 1.1 International flag

This page is part of the FHIR Clinical Documents (v1.1.0: STU 1) based on FHIR (HL7® FHIR® Standard) R4. This is the current published version. For a full list of available versions, see the Directory of published versions

: revised-Patient

Page standards status: Informative

Raw ttl | Download


@prefix fhir: <http://hl7.org/fhir/> .
@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://hl7.org/fhir/Patient/revised-Patient> a fhir:Patient ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "revised-Patient"] ;
  fhir:Resource.language [ fhir:value "en"] ;
  fhir:DomainResource.text [
     fhir:Narrative.status [ fhir:value "generated" ] ;
     fhir:Narrative.div "<div xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\"><p class=\"res-header-id\"><b>Generated Narrative: Patient revised-Patient</b></p><a name=\"revised-Patient\"> </a><a name=\"hcrevised-Patient\"> </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\">Language: en</p></div><p style=\"border: 1px #661aff solid; background-color: #e6e6ff; padding: 10px;\">Eve Everywoman Female, DoB: 1955-01-06</p><hr/><table class=\"grid\"><tr><td style=\"background-color: #f3f5da\" title=\"Record is active\">Active:</td><td colspan=\"3\">true</td></tr><tr><td style=\"background-color: #f3f5da\" title=\"Ways to contact the Patient\">Contact Detail</td><td colspan=\"3\"><ul><li>ph: 555-555-2003(Work)</li><li>2222 Home Street (home)</li></ul></td></tr></table></div>"
  ] ;
  fhir:Patient.active [ fhir:value "true"^^xsd:boolean] ;
  fhir:Patient.name [
     fhir:index -1 ;
     fhir:HumanName.text [ fhir:value "Eve Everywoman" ] ;
     fhir:HumanName.family [ fhir:value "Everywoman1" ] ;
     fhir:HumanName.given [
       fhir:value "Eve" ;
       fhir:index -1
     ]
  ] ;
  fhir:Patient.telecom [
     fhir:index -1 ;
     fhir:ContactPoint.system [ fhir:value "phone" ] ;
     fhir:ContactPoint.value [ fhir:value "555-555-2003" ] ;
     fhir:ContactPoint.use [ fhir:value "work" ]
  ] ;
  fhir:Patient.gender [ fhir:value "female"] ;
  fhir:Patient.birthDate [ fhir:value "1955-01-06"^^xsd:date] ;
  fhir:Patient.address [
     fhir:index -1 ;
     fhir:Address.use [ fhir:value "home" ] ;
     fhir:Address.line [
       fhir:value "2222 Home Street" ;
       fhir:index -1
     ]
  ] .

# - ontology header ------------------------------------------------------------

<http://hl7.org/fhir/Patient/revised-Patient.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl ;
  owl:versionIRI <http://build.fhir.org/Patient/revised-Patient.ttl> .