middleman-xmlvalidator 0.0.22 → 0.0.23

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,76 @@
1
+
2
+ <?xml version="1.0" encoding="UTF-8"?>
3
+ <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
4
+ targetNamespace="http://www.sitemaps.org/schemas/sitemap/0.9"
5
+ xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
6
+ elementFormDefault="qualified">
7
+ <xsd:annotation>
8
+ <xsd:documentation>
9
+ XML Schema for Sitemap index files.
10
+ Last Modifed 2009-04-08
11
+ </xsd:documentation>
12
+ </xsd:annotation>
13
+
14
+ <xsd:element name="sitemapindex">
15
+ <xsd:annotation>
16
+ <xsd:documentation>
17
+ Container for a set of up to 50,000 sitemap URLs.
18
+ This is the root element of the XML file.
19
+ </xsd:documentation>
20
+ </xsd:annotation>
21
+ <xsd:complexType>
22
+ <xsd:sequence>
23
+ <xsd:any namespace="##other" minOccurs="0" maxOccurs="unbounded" processContents="strict"/>
24
+ <xsd:element name="sitemap" type="tSitemap" maxOccurs="unbounded"/>
25
+ </xsd:sequence>
26
+ </xsd:complexType>
27
+ </xsd:element>
28
+
29
+ <xsd:complexType name="tSitemap">
30
+ <xsd:annotation>
31
+ <xsd:documentation>
32
+ Container for the data needed to describe a sitemap.
33
+ </xsd:documentation>
34
+ </xsd:annotation>
35
+ <xsd:sequence>
36
+ <xsd:element name="loc" type="tLocSitemap"/>
37
+ <xsd:element name="lastmod" type="tLastmodSitemap" minOccurs="0"/>
38
+ <xsd:any namespace="##other" minOccurs="0" maxOccurs="unbounded" processContents="strict"/>
39
+ </xsd:sequence>
40
+ </xsd:complexType>
41
+
42
+ <xsd:simpleType name="tLocSitemap">
43
+ <xsd:annotation>
44
+ <xsd:documentation>
45
+ REQUIRED: The location URI of a sitemap.
46
+ The URI must conform to RFC 2396 (http://www.ietf.org/rfc/rfc2396.txt).
47
+ </xsd:documentation>
48
+ </xsd:annotation>
49
+ <xsd:restriction base="xsd:anyURI">
50
+ <xsd:minLength value="12"/>
51
+ <xsd:maxLength value="2048"/>
52
+ </xsd:restriction>
53
+ </xsd:simpleType>
54
+
55
+ <xsd:simpleType name="tLastmodSitemap">
56
+ <xsd:annotation>
57
+ <xsd:documentation>
58
+ OPTIONAL: The date the document was last modified. The date must conform
59
+ to the W3C DATETIME format (http://www.w3.org/TR/NOTE-datetime).
60
+ Example: 2005-05-10
61
+ Lastmod may also contain a timestamp.
62
+ Example: 2005-05-10T17:33:30+08:00
63
+ </xsd:documentation>
64
+ </xsd:annotation>
65
+ <xsd:union>
66
+ <xsd:simpleType>
67
+ <xsd:restriction base="xsd:date"/>
68
+ </xsd:simpleType>
69
+ <xsd:simpleType>
70
+ <xsd:restriction base="xsd:dateTime"/>
71
+ </xsd:simpleType>
72
+ </xsd:union>
73
+ </xsd:simpleType>
74
+
75
+
76
+ </xsd:schema>