@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/immds/Parameters/parameters-in-example> a fhir:Parameters ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "parameters-in-example"] ; # 
  fhir:language [ fhir:v "en"] ; # 
  fhir:parameter ( [
     fhir:name [ fhir:v "assessmentDate" ] ;
     fhir:value [
       a fhir:Date ;
       fhir:v "2020-06-02"^^xsd:date
     ]
  ] [
     fhir:name [ fhir:v "patient" ] ;
     fhir:Parameters.parameter.resource ( [
       a fhir:Patient ;
       fhir:id [ fhir:v "ImmDSPatientExample" ] ;
       fhir:language [ fhir:v "en" ] ;
       fhir:identifier ( [
         fhir:type [
           fhir:coding ( [
             fhir:system [
               fhir:v "http://terminology.hl7.org/CodeSystem/v2-0203"^^xsd:anyURI ;
               fhir:l <http://terminology.hl7.org/CodeSystem/v2-0203>
             ] ;
             fhir:code [ fhir:v "MR" ]
           ] )
         ] ;
         fhir:system [
           fhir:v "http://www.acme.com/identifiers/patient"^^xsd:anyURI ;
           fhir:l <http://www.acme.com/identifiers/patient>
         ] ;
         fhir:value [ fhir:v "1234" ]
       ] ) ;
       fhir:name ( [
         fhir:family [ fhir:v "Wellington" ] ;
         fhir:given ( [ fhir:v "Gene" ] )
       ] ) ;
       fhir:gender [ fhir:v "male" ] ;
       fhir:birthDate [ fhir:v "2020-04-28"^^xsd:date ]
     ] )
  ] [
     fhir:name [ fhir:v "immunization" ] ;
     fhir:Parameters.parameter.resource ( [
       a fhir:Immunization ;
       fhir:id [ fhir:v "ImmDSImmunizationExample" ] ;
       fhir:language [ fhir:v "en" ] ;
       fhir:status [ fhir:v "completed" ] ;
       fhir:vaccineCode [
         fhir:coding ( [
           fhir:system [
             fhir:v "http://hl7.org/fhir/sid/cvx"^^xsd:anyURI ;
             fhir:l <http://hl7.org/fhir/sid/cvx>
           ] ;
           fhir:code [ fhir:v "08" ] ;
           fhir:display [ fhir:v "Hep B, adolescent or pediatric" ]
         ] )
       ] ;
       fhir:patient [
         fhir:l <http://hl7.org/fhir/us/immds/Patient/ImmDSPatientExample> ;
         fhir:reference [ fhir:v "Patient/ImmDSPatientExample" ]
       ] ;
       fhir:occurrence [
         a fhir:DateTime ;
         fhir:v "2020-04-28"^^xsd:date
       ] ;
       fhir:primarySource [ fhir:v true ]
     ] )
  ] ) . # 

<http://hl7.org/fhir/us/immds/Patient/ImmDSPatientExample> a fhir:Us .

# -------------------------------------------------------------------------------------

