1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?xml version="1.0" encoding="UTF-8"?>
<!--
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
-->
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
<xs:complexType name="linkType">
<xs:attribute name="src" type="xs:string" use="required"/>
<xs:attribute name="defer" type="xs:string"/>
<xs:attribute name="ie_condition" type="xs:string"/>
<xs:attribute name="charset" type="xs:string"/>
<xs:attribute name="hreflang" type="xs:string"/>
<xs:attribute name="media" type="xs:string"/>
<xs:attribute name="rel" type="xs:string"/>
<xs:attribute name="rev" type="xs:string"/>
<xs:attribute name="sizes" type="xs:string"/>
<xs:attribute name="target" type="xs:string"/>
<xs:attribute name="type" type="xs:string"/>
<xs:attribute name="order" type="xs:integer"/>
<xs:attribute name="src_type" type="xs:string"/>
</xs:complexType>
<xs:complexType name="metaType">
<xs:attribute name="content" type="xs:string" use="required"/>
<xs:attribute name="charset" type="xs:string" />
<xs:attribute name="http-equiv" type="xs:string"/>
<xs:attribute name="name" type="xs:string"/>
<xs:attribute name="scheme" type="xs:string"/>
</xs:complexType>
<xs:complexType name="scriptType">
<xs:attribute name="src" type="xs:string" use="required"/>
<xs:attribute name="defer" type="xs:string"/>
<xs:attribute name="ie_condition" type="xs:string"/>
<xs:attribute name="async" type="xs:string"/>
<xs:attribute name="charset" type="xs:string"/>
<xs:attribute name="type" type="xs:string"/>
<xs:attribute name="src_type" type="xs:string"/>
</xs:complexType>
<xs:complexType name="headAttributeType">
<xs:attribute type="xs:string" name="name"/>
<xs:attribute type="xs:string" name="value"/>
</xs:complexType>
<xs:complexType name="srcRemoveType">
<xs:attribute name="src" type="xs:string" use="required"/>
</xs:complexType>
<xs:complexType name="headType">
<xs:sequence minOccurs="0" maxOccurs="unbounded">
<xs:element name="title" type="xs:string" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="css" type="linkType" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="link" type="linkType" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="meta" type="metaType" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="script" type="scriptType" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="remove" type="srcRemoveType" minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="attribute" type="headAttributeType" minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
</xs:complexType>
</xs:schema>