diff options
Diffstat (limited to 'xsd/tests/schema/chameleon/schemas')
-rw-r--r-- | xsd/tests/schema/chameleon/schemas/includee.xsd | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/xsd/tests/schema/chameleon/schemas/includee.xsd b/xsd/tests/schema/chameleon/schemas/includee.xsd new file mode 100644 index 0000000..d89b9c4 --- /dev/null +++ b/xsd/tests/schema/chameleon/schemas/includee.xsd @@ -0,0 +1,12 @@ +<?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"> + + <xsd:simpleType name="base"> + <xsd:restriction base="xsd:string"/> + </xsd:simpleType> + + <xsd:element name="base_e" type="base"/> + +</xsd:schema> |