1:<?xml version="1.0" encoding="UTF-8" standalone="no" ?> 2:<!-- A Todo List --> 3:<todo xmlns="http://abbeyworkshop.com/todo" 4: xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 5: xsi:schemaLocation="http://abbeyworkshop.com/todo todo.xsd" 6:> 7: <list name="List1"> 8: <item attrib="text">Item 1</item><!-- Attrib not allowed --> 9: <item>Item 2</item> 10: <item>Item 3</item> 11: <bad>Some text </bad> <!-- Undefined tag --> 12: </list> 13: <list name="List2"> 14: <item>Item one</item> 15: <item>Item two</item> 16: <item attrib="text">Item three</item> 17: <item>Item 4</item> 18: </list> 19: <bad>Some text </bad> <!-- Undefined tag --> 20:</todo>