Draft preBallot - This specification is under preBallot review and subject to change. It should not be used for implementation purposes. . . . . For a full list of available versions, see the Directory of published versions
Example Immunization
Immunization |
id : example-immunization-ca-core |
meta |
profile : http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/immunization-ca-core |
identifier |
system : http://example.ca/NamingSystem/Immunization |
value : IMM123456 |
status : completed |
vaccineCode |
coding |
system : http://snomed.info/sct |
code : 871765008 |
display : Vaccine product containing only Measles morbillivirus antigen (medicinal product) |
patient |
reference : example-patient-ca-core-2 |
occurrence : 2024-03-27T09:00:00-07:00 |
location |
reference : Location/example-location-ca-core |
performer |
actor |
reference : Practitioner/example-practitioner-ca-core |
note |
text : Patient reported mild fever and rash after vaccination |
reasonReference |
reference : Condition/example-condition-ca-core |
protocolApplied |
doseNumber : 2 |
seriesDoses : 2 |
<Immunization xmlns="http://hl7.org/fhir"> <id value="example-immunization-ca-core" /> <meta> <profile value="http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/immunization-ca-core" /> </meta> <identifier> <system value="http://example.ca/NamingSystem/Immunization" /> <value value="IMM123456" /> </identifier> <status value="completed" /> <vaccineCode> <coding> <system value="http://snomed.info/sct" /> <code value="871765008" /> <display value="Vaccine product containing only Measles morbillivirus antigen (medicinal product)" /> </coding> </vaccineCode> <patient> <reference value="example-patient-ca-core-2" /> </patient> <occurrenceDateTime value="2024-03-27T09:00:00-07:00" /> <location> <reference value="Location/example-location-ca-core" /> </location> <performer> <actor> <reference value="Practitioner/example-practitioner-ca-core" /> </actor> </performer> <note> <text value="Patient reported mild fever and rash after vaccination" /> </note> <reasonReference> <reference value="Condition/example-condition-ca-core" /> </reasonReference> <protocolApplied> <doseNumberPositiveInt value="2" /> <seriesDosesPositiveInt value="2" /> </protocolApplied> </Immunization>
{ "resourceType": "Immunization", "id": "example-immunization-ca-core", "meta": { "profile": [ "http://fhir.infoway-inforoute.ca/cacore/StructureDefinition/immunization-ca-core" ] }, "identifier": [ { "system": "http://example.ca/NamingSystem/Immunization", "value": "IMM123456" } ], "status": "completed", "vaccineCode": { "coding": [ { "system": "http://snomed.info/sct", "code": "871765008", "display": "Vaccine product containing only Measles morbillivirus antigen (medicinal product)" } ] }, "patient": { "reference": "example-patient-ca-core-2" }, "occurrenceDateTime": "03/27/2024 16:00:00", "location": { "reference": "Location/example-location-ca-core" }, "performer": [ { "actor": { "reference": "Practitioner/example-practitioner-ca-core" } } ], "note": [ { "text": "Patient reported mild fever and rash after vaccination" } ], "reasonReference": [ { "reference": "Condition/example-condition-ca-core" } ], "protocolApplied": [ { "doseNumberPositiveInt": 2, "seriesDosesPositiveInt": 2 } ] }