Immunization Decision Support Forecast (ImmDS) Implementation Guide
1.0.0 - STU1

This page is part of the Immunization Decision Support Forecast FHIR IG (v1.0.0: STU 1) based on FHIR R4. This is the current published version. For a full list of available versions, see the Directory of published versions

ImmDSParameterInExample01 - TTL Representation

(back to description)

Raw ttl

Source view


@prefix fhir: <http://hl7.org/fhir/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@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:Resource.id [ fhir:value "parameters-in-example"];
  fhir:Parameters.parameter [
     fhir:index 0;
     fhir:Parameters.parameter.name [ fhir:value "assessmentDate" ];
     fhir:Parameters.parameter.valueDate [ fhir:value "2020-06-02"^^xsd:date ]
  ], [
     fhir:index 1;
     fhir:Parameters.parameter.name [ fhir:value "patient" ];
     fhir:Parameters.parameter.resource [
       a fhir:Patient;
       fhir:Resource.id [ fhir:value "ImmDSPatientExample" ];
       fhir:Patient.identifier [
         fhir:index 0;
         fhir:Identifier.type [
           fhir:CodeableConcept.coding [
             fhir:index 0;
             fhir:Coding.system [ fhir:value "http://terminology.hl7.org/CodeSystem/v2-0203" ];
             fhir:Coding.code [ fhir:value "MR" ]           ]         ];
         fhir:Identifier.system [ fhir:value "http://www.acme.com/identifiers/patient" ];
         fhir:Identifier.value [ fhir:value "1234" ]       ];
       fhir:Patient.name [
         fhir:index 0;
         fhir:HumanName.family [ fhir:value "Wellington" ];
         fhir:HumanName.given [
           fhir:value "Gene";
           fhir:index 0         ]       ];
       fhir:Patient.gender [ fhir:value "male" ];
       fhir:Patient.birthDate [ fhir:value "2020-04-28"^^xsd:date ]     ]
  ], [
     fhir:index 2;
     fhir:Parameters.parameter.name [ fhir:value "immunization" ];
     fhir:Parameters.parameter.resource [
       a fhir:Immunization;
       fhir:Resource.id [ fhir:value "ImmDSImmunizationExample" ];
       fhir:Immunization.status [ fhir:value "completed" ];
       fhir:Immunization.vaccineCode [
         fhir:CodeableConcept.coding [
           fhir:index 0;
           fhir:Coding.system [ fhir:value "http://hl7.org/fhir/sid/cvx" ];
           fhir:Coding.code [ fhir:value "08" ];
           fhir:Coding.display [ fhir:value "Hep B, adolescent or pediatric" ]         ]       ];
       fhir:Immunization.patient [
         fhir:Reference.reference [ fhir:value "Patient/ImmDSPatientExample" ]       ];
       fhir:Immunization.occurrenceDateTime [ fhir:value "2020-04-28"^^xsd:date ];
       fhir:Immunization.primarySource [ fhir:value "true"^^xsd:boolean ]     ]
  ].

# - ontology header ------------------------------------------------------------

 a owl:Ontology;
  owl:imports fhir:fhir.ttl.