summaryrefslogtreecommitdiff
path: root/tests/schema/any/test.xsd
diff options
context:
space:
mode:
Diffstat (limited to 'tests/schema/any/test.xsd')
-rw-r--r--tests/schema/any/test.xsd19
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/schema/any/test.xsd b/tests/schema/any/test.xsd
deleted file mode 100644
index ff896fd..0000000
--- a/tests/schema/any/test.xsd
+++ /dev/null
@@ -1,19 +0,0 @@
-<?xml version="1.0" ?>
-<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://www.w3.org/2001/XMLSchema XMLSchema.xsd"
- xmlns:test="http://www.codesynthesis.com/xmlns/test"
- targetNamespace="http://www.codesynthesis.com/xmlns/test">
-
- <xsd:complexType name="person">
- <xsd:sequence>
- <xsd:element name="name" type="xsd:string"/>
- <xsd:any namespace="##other" processContents="strict" maxOccurs="unbounded"/>
- </xsd:sequence>
- <xsd:attribute name="id" type="xsd:ID"/>
- <xsd:anyAttribute namespace="##other" processContents="strict"/>
- </xsd:complexType>
-
- <xsd:element name="person" type="test:person"/>
-
-</xsd:schema>