<?xml version="1.0"?>
 <!DOCTYPE phrasebook [
	       <!ELEMENT phrasebook (dictionary)*>              
	       <!ELEMENT dictionary (phrase)*>
               <!ATTLIST dictionary name CDATA #REQUIRED>
               <!ELEMENT phrase (#PCDATA)>
               <!ATTLIST phrase name CDATA #REQUIRED>
 ]>
 
 <phrasebook>
 <dictionary name="DEF">
   <phrase name="foo">I'm original foo.</phrase>
   <phrase name="bar">I'm original bar</phrase>
 </dictionary>
 <dictionary name="ONE">
   <phrase name="foo">I'm new foo.</phrase>
   <phrase name="baz">I'm original baz</phrase>
 </dictionary>
 </phrasebook>