summaryrefslogtreecommitdiff
path: root/test/schemas/vdv-simpleTypes.xsd
diff options
context:
space:
mode:
Diffstat (limited to 'test/schemas/vdv-simpleTypes.xsd')
-rw-r--r--test/schemas/vdv-simpleTypes.xsd38
1 files changed, 0 insertions, 38 deletions
diff --git a/test/schemas/vdv-simpleTypes.xsd b/test/schemas/vdv-simpleTypes.xsd
deleted file mode 100644
index 79f95fd..0000000
--- a/test/schemas/vdv-simpleTypes.xsd
+++ /dev/null
@@ -1,38 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!-- $Header: /home/cvsroot/w3c-xml-schema/user/examples/simpleTypes.xsd,v 1.1 2001/11/26 13:27:08 vdv Exp $ -->
-<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
-
- <xs:simpleType name="string255">
- <xs:restriction base="xs:token">
- <xs:maxLength value="255"/>
- </xs:restriction>
- </xs:simpleType>
- <xs:simpleType name="string32">
- <xs:restriction base="xs:token">
- <xs:maxLength value="32"/>
- </xs:restriction>
- </xs:simpleType>
- <xs:simpleType name="isbn">
- <xs:restriction base="xs:unsignedLong">
- <xs:totalDigits value="10"/>
- <xs:pattern value="\d{10}"/>
- </xs:restriction>
- </xs:simpleType>
- <xs:simpleType name="bookID">
- <xs:restriction base="xs:ID">
- <xs:pattern value="b\d{10}"/>
- </xs:restriction>
- </xs:simpleType>
- <xs:simpleType name="supportedLanguages">
- <xs:restriction base="xs:language">
- <xs:enumeration value="en"/>
- <xs:enumeration value="es"/>
- </xs:restriction>
- </xs:simpleType>
- <xs:simpleType name="date">
- <xs:restriction base="xs:date">
- <xs:pattern value="[^:Z]*"/>
- </xs:restriction>
- </xs:simpleType>
-
-</xs:schema>