Indivo Document Demographics SchemaΒΆ

Schema:

<?xml version="1.0" encoding="ISO-8859-1" ?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" targetNamespace="http://indivo.org/vocab/xml/documents#">
  <xs:element name="Demographics">
    <xs:complexType>
      <xs:sequence>
        <xs:element name="dateOfBirth" type="xs:date" minOccurs="0" />
        <xs:element name="dateOfDeath" type="xs:date" minOccurs="0" />
        <xs:element name="gender" type="xs:string" minOccurs="0" />
        <xs:element name="ethnicity" type="xs:string" minOccurs="0" maxOccurs="unbounded" />
        <xs:element name="language" type="xs:string" minOccurs="0" maxOccurs="unbounded" />
        <xs:element name="maritalStatus" type="xs:string" minOccurs="0" />
        <xs:element name="employmentStatus" type="xs:string" minOccurs="0" />
        <xs:element name="employmentIndustry" type="xs:string" minOccurs="0" />
        <xs:element name="occupation" type="xs:string" minOccurs="0" />
        <xs:element name="religion" type="xs:string" minOccurs="0" />
        <xs:element name="income" type="xs:string" minOccurs="0" />
        <xs:element name="highestEducation" type="xs:string" minOccurs="0" />
        <xs:element name="organDonor" type="xs:boolean" minOccurs="0" />
      </xs:sequence>
    </xs:complexType>
  </xs:element>
</xs:schema>

Example:

<?xml version="1.0" encoding="utf-8" ?>
<Demographics xmlns="http://indivo.org/vocab/xml/documents#">
    <dateOfBirth>2001-05-15</dateOfBirth>
    <dateOfDeath>2095-10-11</dateOfDeath>
    <gender>Male</gender>
    <ethnicity>Basque</ethnicity>
    <language>EN</language>
    <maritalStatus>Single</maritalStatus>
    <employmentStatus>Unemployed</employmentStatus>
    <employmentIndustry>Textiles</employmentIndustry>
    <occupation>Tailor</occupation>
    <religion>Jewish</religion>
    <income>12,000 USD</income>
    <highestEducation>High School</highestEducation>
    <organDonor>false</organDonor>
</Demographics>

Project Versions

Previous topic

Indivo Aggregate Report Schema

Next topic

Indivo Document Contact Schema

This Page