@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://hl7.org/fhir/us/davinci-pas/Patient/SubscriberExample> a fhir:Patient ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "SubscriberExample"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "http://hl7.org/fhir/us/davinci-pas/StructureDefinition/profile-subscriber"^^xsd:anyURI ;
       fhir:l <http://hl7.org/fhir/us/davinci-pas/StructureDefinition/profile-subscriber>
     ] )
  ] ; # 
  fhir:language [ fhir:v "en"] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\" lang=\"en\"><p class=\"res-header-id\"><b>Generated Narrative: Patient SubscriberExample</b></p><a name=\"SubscriberExample\"> </a><a name=\"hcSubscriberExample\"> </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><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-profile-subscriber.html\">PAS Subscriber Patient</a></p></div><p style=\"border: 1px #661aff solid; background-color: #e6e6ff; padding: 10px;\">JOE SMITH  Male, DoB Unknown ( http://example.org/MIN#12345678901)</p><hr/><table class=\"grid\"><tr><td style=\"background-color: #f3f5da\" title=\"A patient's military status.\"><a href=\"StructureDefinition-extension-militaryStatus.html\">Military Status</a></td><td colspan=\"3\"><span title=\"Codes:{https://codesystem.x12.org/005010/584 RU}\">RU</span></td></tr></table></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:extension ( [
     fhir:url [
       fhir:v "http://hl7.org/fhir/us/davinci-pas/StructureDefinition/extension-militaryStatus"^^xsd:anyURI ;
       fhir:l <http://hl7.org/fhir/us/davinci-pas/StructureDefinition/extension-militaryStatus>
     ] ;
     fhir:value [
       a fhir:CodeableConcept ;
       fhir:coding ( [
         fhir:system [
           fhir:v "https://codesystem.x12.org/005010/584"^^xsd:anyURI ;
           fhir:l <https://codesystem.x12.org/005010/584>
         ] ;
         fhir:code [ fhir:v "RU" ]
       ] )
     ]
  ] ) ; # 
  fhir:identifier ( [
     fhir:system [
       fhir:v "http://example.org/MIN"^^xsd:anyURI ;
       fhir:l <http://example.org/MIN>
     ] ;
     fhir:value [ fhir:v "12345678901" ]
  ] ) ; # 
  fhir:name ( [
     fhir:family [ fhir:v "SMITH" ] ;
     fhir:given ( [ fhir:v "JOE" ] )
  ] ) ; # 
  fhir:gender [ fhir:v "male"] . # 

# -------------------------------------------------------------------------------------

