@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 -------------------------------------------------------------------

<https://hl7.fr/ig/fhir/core/Encounter/FRCoreEncounterExample> a fhir:Encounter ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "FRCoreEncounterExample"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "https://hl7.fr/ig/fhir/core/StructureDefinition/fr-core-encounter"^^xsd:anyURI ;
       fhir:l <https://hl7.fr/ig/fhir/core/StructureDefinition/fr-core-encounter>
     ] )
  ] ; # 
  fhir:text [
     fhir:status [ fhir:v "extensions" ] ;
     fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\"><p class=\"res-header-id\"><b>Narratif généré : Venue FRCoreEncounterExample</b></p><a name=\"FRCoreEncounterExample\"> </a><a name=\"hcFRCoreEncounterExample\"> </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\">Profil: <a href=\"StructureDefinition-fr-core-encounter.html\">FR Core Encounter Profile</a></p></div><p><b>FR Core Encounter Estimated Discharge Date Extension</b>: 2019-01-02</p><p><b>identifier</b>: Visit Number/123</p><p><b>status</b>: In Progress</p><p><b>class</b>: <a href=\"http://terminology.hl7.org/7.1.0/CodeSystem-v3-ActCode.html#v3-ActCode-AMB\">ActCode: AMB</a> (ambulatory)</p><p><b>period</b>: 2019-01-02 --&gt; 2019-02-02</p></div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:extension ( [
     fhir:url [
       fhir:v "https://hl7.fr/ig/fhir/core/StructureDefinition/fr-core-estimated-discharge-date"^^xsd:anyURI ;
       fhir:l <https://hl7.fr/ig/fhir/core/StructureDefinition/fr-core-estimated-discharge-date>
     ] ;
     fhir:value [
       a fhir:Date ;
       fhir:v "2019-01-02"^^xsd:date
     ]
  ] ) ; # 
  fhir:identifier ( [
     fhir:type [
       fhir:coding ( [
         fhir:system [
           fhir:v "https://hl7.fr/ig/fhir/core/CodeSystem/fr-core-cs-identifier-type"^^xsd:anyURI ;
           fhir:l <https://hl7.fr/ig/fhir/core/CodeSystem/fr-core-cs-identifier-type>
         ] ;
         fhir:code [ fhir:v "VN" ]
       ] )
     ] ;
     fhir:system [
       fhir:v "http://encounter-identifier-system.org"^^xsd:anyURI ;
       fhir:l <http://encounter-identifier-system.org>
     ] ;
     fhir:value [ fhir:v "123" ]
  ] ) ; # 
  fhir:status [ fhir:v "in-progress"] ; # 
  fhir:class [
     fhir:system [
       fhir:v "http://terminology.hl7.org/CodeSystem/v3-ActCode"^^xsd:anyURI ;
       fhir:l <http://terminology.hl7.org/CodeSystem/v3-ActCode>
     ] ;
     fhir:code [ fhir:v "AMB" ]
  ] ; # 
  fhir:period [
     fhir:start [ fhir:v "2019-01-02"^^xsd:date ] ;
     fhir:end [ fhir:v "2019-02-02"^^xsd:date ]
  ] . # 

# -------------------------------------------------------------------------------------

