Indivo Document Schema: ImmunizationΒΆ

See the schema for Indivo Coded Values.

Schema:

<?xml version="1.0" encoding="ISO-8859-1" ?>
<schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="http://indivo.org/vocab/xml/documents#"
        xmlns:indivo="http://indivo.org/vocab/xml/documents#" elementFormDefault="qualified">

  <include schemaLocation="codes.xsd" />

  <element name="Immunization">
    <complexType>
      <sequence>
        <element name="dateAdministered" type="dateTime" minOccurs="0" maxOccurs="1" />
        <element name="administeredBy" type="string" minOccurs="0" maxOccurs="1" />
        <element name="vaccine">
          <complexType>
            <sequence>
              <element name="type" type="indivo:CodedValue" minOccurs="1" maxOccurs="1" />
              <element name="manufacturer" type="string" minOccurs="0" maxOccurs="1" />
              <element name="lot" type="string" minOccurs="0" maxOccurs="1" />
              <element name="expiration" type="date" minOccurs="0" maxOccurs="1" />
            </sequence>
          </complexType>
        </element>
        <element name="sequence" type="integer" minOccurs="1" maxOccurs="1" />
        <element name="anatomicSurface" type="indivo:CodedValue" minOccurs="0" maxOccurs="1" />
        <element name="adverseEvent" type="string" minOccurs="0" maxOccurs="1" />
      </sequence>
    </complexType>
  </element>
</schema>

Example:

<Immunization xmlns="http://indivo.org/vocab/xml/documents#">
  <dateAdministered>2009-05-16T12:00:00</dateAdministered>
  <administeredBy>Children's Hospital Boston</administeredBy>
  <vaccine>
    <type type="http://codes.indivo.org/vaccines#" value="hep-B">Hepatitis B</type>
    <manufacturer>Oolong Pharmaceuticals</manufacturer>
    <lot>AZ1234567</lot>
    <expiration>2009-06-01</expiration>
  </vaccine>
  <sequence>2</sequence>
  <anatomicSurface type="http://codes.indivo.org/anatomy/surfaces#" value="shoulder">Shoulder</anatomicSurface>
  <adverseEvent>pain and rash</adverseEvent>
</Immunization>

Project Versions

Previous topic

Indivo Document Schema: Allergy

Next topic

Indivo Document Schema: Problem

This Page