blob: 6349600e0ef3be00784cf2b2d941e3deedbd12f2 (
plain) (
blame)
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" targetNamespace="http://www.w3.org/1999/xlink" xmlns:xlink="http://www.w3.org/1999/xlink">
<xs:import schemaLocation="xmlspec-its.xsd"/>
<xs:import namespace="http://www.w3.org/XML/1998/namespace" schemaLocation="xml.xsd"/>
<xs:attribute name="type">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="simple"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
<xs:attributeGroup name="show">
<xs:attribute name="show" use="optional" form="qualified">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="embed"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="actuate">
<xs:attribute name="actuate" use="optional" form="qualified">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="onLoad"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="show1">
<xs:attribute name="show" use="optional" form="qualified">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="replace"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="actuate1">
<xs:attribute name="actuate" use="optional" form="qualified">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="onRequest"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="show2">
<xs:attribute name="show" use="optional" form="qualified">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:enumeration value="new"/>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="its-type">
<xs:attribute name="type" use="optional">
<xs:annotation>
<xs:documentation>Type of pointer to external rules files.</xs:documentation>
</xs:annotation>
<xs:simpleType>
<xs:restriction base="xs:token">
<xs:enumeration value="simple">
<xs:annotation>
<xs:documentation>Simple link.</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>
</xs:attribute>
</xs:attributeGroup>
<xs:attributeGroup name="its-href">
<xs:attribute name="href" type="xs:anyURI" use="optional">
<xs:annotation>
<xs:documentation>Pointer to external rules files.</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:attributeGroup>
</xs:schema>
|