@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://fhir.tiro.health/Parameters/ContextualPopulateRequest> a fhir:Parameters ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "ContextualPopulateRequest"] ; # 
  fhir:parameter ( [
     fhir:name [ fhir:v "questionnaire" ] ;
     fhir:value [
       a fhir:Canonical ;
       fhir:v "http://fhir.tiro.health/Questionnaire/lca-staging|1.2.0"^^xsd:anyURI ;
       fhir:l <http://fhir.tiro.health/Questionnaire/lca-staging?version=1.2.0>
     ]
  ] [
     fhir:name [ fhir:v "subject" ] ;
     fhir:value [
       a fhir:Reference ;
       fhir:l <http://fhir.tiro.health/Patient/patient-123> ;
       fhir:reference [ fhir:v "Patient/patient-123" ] ;
       fhir:display [ fhir:v "Jan Janssen" ]
     ]
  ] [
     fhir:name [ fhir:v "mode" ] ;
     fhir:value [
       a fhir:String ;
       fhir:v "contextual-populate"
     ]
  ] [
     fhir:name [ fhir:v "context" ] ;
     fhir:part ( [
       fhir:name [ fhir:v "name" ] ;
       fhir:value [
         a fhir:String ;
         fhir:v "clinical-artifacts"
       ]
     ] [
       fhir:name [ fhir:v "content" ] ;
       fhir:value [
         a fhir:Reference ;
         fhir:l <http://fhir.tiro.health/DocumentReference/doc-001> ;
         fhir:reference [ fhir:v "DocumentReference/doc-001" ] ;
         fhir:display [ fhir:v "Referral letter from AZ Monica" ]
       ]
     ] )
  ] ) . # 

# -------------------------------------------------------------------------------------

