Immunization Decision Support Forecast (ImmDS) Implementation Guide
2.0.0 - United States of America flag

Immunization Decision Support Forecast (ImmDS) Implementation Guide, published by HL7 International / Public Health. This guide is not an authorized publication; it is the continuous build for version 2.0.0 built by the FHIR (HL7® FHIR® Standard) CI Build. This version is based on the current content of https://github.com/HL7/ImmunizationFHIRDS/ and changes regularly. See the Directory of published versions

: ImmDSParameterInExample01

Raw ttl | Download


@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 -------------------------------------------------------------------

 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 fhir: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 ]     ] )
  ] ) . #