<?xml version='1.0' encoding='UTF-8'?>

<!--
    TODO define vocabulary indentification
    PUBLIC ID: -//vendor//vocabulary//EN
    SYSTEM ID: http://server/path/people.dtd

--><!--
    An example how to use this DTD from your XML document:

    <?xml version="1.0"?>

    <!DOCTYPE GuessHooPeople SYSTEM "people.dtd">

    <GuessHooPeople>
    ...
    </GuessHooPeople>
-->

<!--- Put your DTDDoc comment here. -->
<!ELEMENT GuessHooPeople (DatumMap,Person*,Questions) >
    <!ATTLIST GuessHooPeople datums CDATA #REQUIRED>

<!--- Put your DTDDoc comment here. -->
<!ELEMENT Person (name,image,(datum)*)>
    <!ATTLIST Person id CDATA #REQUIRED>
    
<!ELEMENT DatumMap (datum)*>

<!ELEMENT Questions (datum)*>

<!--- Put your DTDDoc comment here. -->
<!ELEMENT name (#PCDATA)>

<!--- Put your DTDDoc comment here. -->
<!ELEMENT image (#PCDATA)>

<!--- Put your DTDDoc comment here. -->
<!ELEMENT datum (#PCDATA)>
    <!ATTLIST datum id CDATA #REQUIRED>

