@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://fhir.ehdsi.eu/core/Immunization/a7b8c9d0-e1f2-3456-abcd-567890123456> a fhir:Immunization ;
  fhir:nodeRole fhir:treeRoot ;
  fhir:id [ fhir:v "a7b8c9d0-e1f2-3456-abcd-567890123456"] ; # 
  fhir:meta [
     fhir:profile ( [
       fhir:v "http://fhir.ehdsi.eu/core/StructureDefinition/immunization-myhealtheu-core"^^xsd:anyURI ;
       fhir:l <http://fhir.ehdsi.eu/core/StructureDefinition/immunization-myhealtheu-core>
     ] )
  ] ; # 
  fhir:text [
     fhir:status [ fhir:v "generated" ] ;
     fhir:div [ fhir:v "<div xmlns=\"http://www.w3.org/1999/xhtml\">COVID-19 vaccination - John Doe</div>"^^rdf:XMLLiteral ]
  ] ; # 
  fhir:status [ fhir:v "completed"] ; # 
  fhir:vaccineCode [
     fhir:coding ( [
       a sct:1119349007 ;
       fhir:system [
         fhir:v "http://snomed.info/sct"^^xsd:anyURI ;
         fhir:l <http://snomed.info/sct>
       ] ;
       fhir:code [ fhir:v "1119349007" ] ;
       fhir:display [ fhir:v "COVID-19 mRNA vaccine" ]
     ] )
  ] ; # 
  fhir:patient [
     fhir:l <http://fhir.ehdsi.eu/core/Patient/1d4bbc93-63b7-4f2b-8f0f-8380aa138f49> ;
     fhir:reference [ fhir:v "Patient/1d4bbc93-63b7-4f2b-8f0f-8380aa138f49" ]
  ] ; # 
  fhir:occurrence [
     a fhir:DateTime ;
     fhir:v "2021-04-10"^^xsd:date
  ] ; # 
  fhir:lotNumber [ fhir:v "EK5730"] ; # 
  fhir:performer ( [
     fhir:function [
       fhir:coding ( [
         fhir:system [
           fhir:v "http://terminology.hl7.org/CodeSystem/v2-0443"^^xsd:anyURI ;
           fhir:l <http://terminology.hl7.org/CodeSystem/v2-0443>
         ] ;
         fhir:code [ fhir:v "AP" ] ;
         fhir:display [ fhir:v "Administering Provider" ]
       ] )
     ] ;
     fhir:actor [
       fhir:l <http://fhir.ehdsi.eu/core/Organization/ff4d98d1-69c9-43db-896e-58d11c15662c> ;
       fhir:reference [ fhir:v "Organization/ff4d98d1-69c9-43db-896e-58d11c15662c" ]
     ]
  ] ) ; # 
  fhir:protocolApplied ( [
     fhir:targetDisease ( [
       fhir:coding ( [
         fhir:system [
           fhir:v "http://hl7.org/fhir/sid/icd-10"^^xsd:anyURI ;
           fhir:l <http://hl7.org/fhir/sid/icd-10>
         ] ;
         fhir:code [ fhir:v "U07.1" ] ;
         fhir:display [ fhir:v "COVID-19, virus identified" ]
       ] )
     ] ) ;
     fhir:doseNumber [
       a fhir:PositiveInt ;
       fhir:v "1"^^xsd:positiveInteger
     ] ;
     fhir:seriesDoses [
       a fhir:PositiveInt ;
       fhir:v "2"^^xsd:positiveInteger
     ]
  ] ) . # 

# -------------------------------------------------------------------------------------

