@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 sct: <http://snomed.info/id/> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .

# - resource -------------------------------------------------------------------

<http://hl7.org/fhir/BodyStructure/face-excluding-eyelids> a fhir:BodyStructure ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "face-excluding-eyelids"] ; # 
  fhir:active [ fhir:v true] ; # 
  fhir:includedStructure ( [
     fhir:structure [
       a sct:361703006 ;
       fhir:coding ( [
         fhir:system [
           fhir:v "http://snomed.info/sct"^^xsd:anyURI ;
           fhir:l <http://snomed.info/sct>
         ] ;
         fhir:code [ fhir:v "361703006" ] ;
         fhir:display [ fhir:v "Entire skin of face" ]
       ] ) ;
       fhir:text [ fhir:v "Skin of face" ]
     ]
  ] ) ; # 
  fhir:excludedStructure ( [
     fhir:structure [
       a sct:245947005 ;
       fhir:coding ( [
         fhir:system [
           fhir:v "http://snomed.info/sct"^^xsd:anyURI ;
           fhir:l <http://snomed.info/sct>
         ] ;
         fhir:code [ fhir:v "245947005" ] ;
         fhir:display [ fhir:v "Entire skin of eyelid" ]
       ] ) ;
       fhir:text [ fhir:v "Skin of eyelids" ]
     ]
  ] ) ; # 
  fhir:description [ fhir:v "Facial skin region for dermatology treatment, excluding eyelid skin"] ; # 
  fhir:patient [
     fhir:l <http://hl7.org/fhir/Patient/example> ;
     fhir:reference [ fhir:v "Patient/example" ]
  ] . # 

<http://hl7.org/fhir/Patient/example> a fhir:Patient .

# -------------------------------------------------------------------------------------

