Basic Simple Family with Relationships

A simple family with all relationships defined between the members.

<Household uuid="...">
    <Organization uuid="..."/>
    <HouseholdMembers>
        <Person uuid="123" primary="true">
            <Organization uuid="..."/>
            <FirstName>Bob</FirstName>
            <LastName>Smith</LastName>
            <DateOfBirth>1978-11-19</DateOfBirth>
            <Gender>male</Gender>
            <Relationships>
                <Relationship type="child" person="456"/>
                <Relationship type="child" person="789"/>
            </Relationships>
        </Person>
        <Person uuid="456" primary="false">
            <Organization uuid="..."/>
            <FirstName>Sally</FirstName>
            <LastName>Smith</LastName>
            <DateOfBirth>2005-08-02</DateOfBirth>
            <Gender>female</Gender>
            <Relationships>
                <Relationship type="sibling" person="789"/>
            </Relationships>
        </Person>
        <Person uuid="789" primary="false">
            <Organization uuid="..."/>
            <FirstName>Sue</FirstName>
            <LastName>Smith</LastName>
            <DateOfBirth>2007-03-22</DateOfBirth>
            <Gender>female</Gender>
        </Person>
    </HouseholdMembers>
</Household>

Remember: it is one Household per file.

Relationships only need defining in one direction, the reverse will be created automatically. In the example above: 123 will be the parent of 456 and 789 (they are children) and 456 and 789 will be siblings.