@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/us/codex-mopa/Patient/MOPAPatientExample> a fhir:Patient ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:Resource.id [ fhir:value "MOPAPatientExample"] ;
  fhir:Resource.meta [
     fhir:Meta.profile [
       fhir:value "http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient" ;
       fhir:index -1 ;
       fhir:link <http://hl7.org/fhir/us/core/StructureDefinition/us-core-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\"><p class=\"res-header-id\"><b>Generated Narrative: Patient MOPAPatientExample</b></p><a name=\"MOPAPatientExample\"> </a><a name=\"hcMOPAPatientExample\"> </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=\"http://hl7.org/fhir/us/core/STU7/StructureDefinition-us-core-patient.html\">US Core Patient Profile</a></p></div><p style=\"border: 1px #661aff solid; background-color: #e6e6ff; padding: 10px;\">Jane Smith (official) Female, DoB: 1968-04-15 ( http://hospital.example.org/patients#MRN-78432)</p><hr/><table class=\"grid\"><tr><td style=\"background-color: #f3f5da\" title=\"Ways to contact the Patient\">Contact Detail</td><td colspan=\"3\">42 Maple Street Springfield IL 62701 </td></tr></table></div>"
  ] ;
  fhir:Patient.identifier [
     fhir:index -1 ;
     fhir:Identifier.system [ fhir:value "http://hospital.example.org/patients" ] ;
     fhir:Identifier.value [ fhir:value "MRN-78432" ]
  ] ;
  fhir:Patient.name [
     fhir:index -1 ;
     fhir:HumanName.use [ fhir:value "official" ] ;
     fhir:HumanName.family [ fhir:value "Smith" ] ;
     fhir:HumanName.given [
       fhir:value "Jane" ;
       fhir:index -1
     ]
  ] ;
  fhir:Patient.gender [ fhir:value "female"] ;
  fhir:Patient.birthDate [ fhir:value "1968-04-15"^^xsd:date] ;
  fhir:Patient.address [
     fhir:index -1 ;
     fhir:Address.line [
       fhir:value "42 Maple Street" ;
       fhir:index -1
     ] ;
     fhir:Address.city [ fhir:value "Springfield" ] ;
     fhir:Address.state [ fhir:value "IL" ] ;
     fhir:Address.postalCode [ fhir:value "62701" ]
  ] .

# - ontology header ------------------------------------------------------------

<http://hl7.org/fhir/us/codex-mopa/Patient/MOPAPatientExample.ttl> a owl:Ontology ;
  owl:imports fhir:fhir.ttl ;
  owl:versionIRI <http://build.fhir.org/us/codex-mopa/Patient/MOPAPatientExample.ttl> .

# -------------------------------------------------------------------------------------

