<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<!-- A Todo List -->
<todo xmlns="http://abbeyworkshop.com/todo"
		xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
		xsi:schemaLocation="http://abbeyworkshop.com/todo todo.xsd"
>
	<list name="List1">
		<item attrib="text">Item 1</item><!-- Attrib not allowed -->
		<item>Item 2</item>
		<item>Item 3</item>
		<bad>Some text </bad> <!-- Undefined tag -->
	</list>
	<list name="List2">
		<item>Item one</item>
		<item>Item two</item>
		<item attrib="text">Item three</item>
		<item>Item 4</item>
	</list>
	<bad>Some text </bad> <!-- Undefined tag -->
</todo>
