-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathxhtml.xsd
More file actions
executable file
·34 lines (34 loc) · 1.51 KB
/
xhtml.xsd
File metadata and controls
executable file
·34 lines (34 loc) · 1.51 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema elementFormDefault="qualified" targetNamespace="http://www.w3.org/1999/xhtml" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xi="http://www.w3.org/2001/XInclude" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:specgen="http://sifassociation.org/SpecGen">
<xs:import namespace="http://sifassociation.org/SpecGen" schemaLocation="SIF.input.schema.xsd"/>
<xs:import namespace="http://www.w3.org/2001/XInclude" schemaLocation="xi.xsd"/>
<xs:import namespace="http://www.w3.org/2001/XMLSchema" schemaLocation="xs.xsd"/>
<xs:import namespace="http://www.w3.org/XML/1998/namespace" schemaLocation="xml.xsd"/>
<xs:element name="Example">
<xs:complexType>
<xs:sequence>
<xs:any processContents="skip"/>
</xs:sequence>
<xs:attribute name="name" use="required"/>
<xs:attribute name="skipValidate">
<xs:simpleType>
<xs:restriction base="xs:token">
<xs:enumeration value="true"/>
<xs:enumeration value="false"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attribute name="intl">
<xs:simpleType>
<xs:restriction base="xs:token">
<xs:enumeration value="us"/>
<xs:enumeration value="uk"/>
<xs:enumeration value="au"/>
<xs:enumeration value="nz"/>
<xs:enumeration value=""/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:complexType>
</xs:element>
</xs:schema>