@prefix fhir: <http://hl7.org/fhir/> .
@prefix loinc: <https://loinc.org/rdf/> .
@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/military-service/Observation/philip-scott-example-military-occupation> a fhir:Observation ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "philip-scott-example-military-occupation"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "http://hl7.org/fhir/us/military-service/StructureDefinition/military-service-Occupation"^^xsd:anyURI ;
       fhir:link <http://hl7.org/fhir/us/military-service/StructureDefinition/military-service-Occupation>
     ] )
  ] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p><b>Generated Narrative: Observation</b><a name=\"philip-scott-example-military-occupation\"> </a></p><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\">Resource Observation &quot;philip-scott-example-military-occupation&quot; </p><p style=\"margin-bottom: 0px\">Profile: <a href=\"StructureDefinition-military-service-Occupation.html\">Military Occupation</a></p></div><p><b>status</b>: final</p><p><b>code</b>: History of Occupation <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"https://loinc.org/\">LOINC</a>#11341-5)</span></p><p><b>subject</b>: <a href=\"Patient-philip-scott-example-veteran.html\">Patient/philip-scott-example-veteran</a> &quot; PHILIP&quot;</p><p><b>effective</b>: 1971-07-01 --&gt; 1972-07-01</p><p><b>value</b>: Marine [Military Enlisted Tactical Operations and Air/Weapons Specialists and Crew Members, All Other] <span style=\"background: LightGoldenRodYellow; margin: 4px; border: 1px solid khaki\"> (<a href=\"CodeSystem-military-service-code-system.html\">Military Service History and Status Code System</a>#55-3019.00.025711)</span></p></div>"
  ] ; # 
  fhir:status [ fhir:v "final"] ; # 
  fhir:code [
     fhir:coding ( [
       a loinc:11341-5 ;
       fhir:system [ fhir:v "http://loinc.org"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "11341-5" ] ;
       fhir:display [ fhir:v "History of Occupation" ]
     ] )
  ] ; # 
  fhir:subject [
     fhir:link <http://hl7.org/fhir/us/military-service/Patient/philip-scott-example-veteran> ;
     fhir:reference [ fhir:v "Patient/philip-scott-example-veteran" ]
  ] ; # 
  fhir:effective [
     a fhir:Period ;
     fhir:start [ fhir:v "1971-07-01"^^xsd:date ] ;
     fhir:end [ fhir:v "1972-07-01"^^xsd:date ]
  ] ; # 
  fhir:value [
     a fhir:CodeableConcept ;
     fhir:coding ( [
       fhir:system [ fhir:v "http://hl7.org/fhir/us/military-service/CodeSystem/military-service-code-system"^^xsd:anyURI ] ;
       fhir:code [ fhir:v "55-3019.00.025711" ] ;
       fhir:display [ fhir:v "Marine [Military Enlisted Tactical Operations and Air/Weapons Specialists and Crew Members, All Other]" ]
     ] )
  ] . # 

<http://hl7.org/fhir/us/military-service/Patient/philip-scott-example-veteran> a fhir:us .

# -------------------------------------------------------------------------------------

