commonmeta-py 0.107__py3-none-any.whl → 0.108__py3-none-any.whl
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.
- commonmeta/__init__.py +12 -15
- commonmeta/api_utils.py +3 -2
- commonmeta/base_utils.py +186 -3
- commonmeta/cli.py +114 -34
- commonmeta/constants.py +20 -0
- commonmeta/file_utils.py +112 -0
- commonmeta/metadata.py +102 -42
- commonmeta/readers/codemeta_reader.py +1 -1
- commonmeta/readers/crossref_reader.py +23 -10
- commonmeta/readers/crossref_xml_reader.py +1 -1
- commonmeta/readers/datacite_reader.py +6 -4
- commonmeta/readers/{json_feed_reader.py → jsonfeed_reader.py} +12 -12
- commonmeta/resources/crossref/common5.4.0.xsd +1264 -0
- commonmeta/resources/crossref/{crossref5.3.1.xsd → crossref5.4.0.xsd} +286 -88
- commonmeta/resources/crossref/doi_resources5.4.0.xsd +117 -0
- commonmeta/resources/crossref/fundingdata5.4.0.xsd +59 -0
- commonmeta/resources/crossref/fundref.xsd +29 -19
- commonmeta/resources/crossref/languages5.4.0.xsd +8119 -0
- commonmeta/resources/crossref/mediatypes5.4.0.xsd +2207 -0
- commonmeta/resources/crossref/module-ali.xsd +14 -6
- commonmeta/resources/crossref/standard-modules/mathml3/mathml3-common.xsd +101 -0
- commonmeta/resources/crossref/standard-modules/mathml3/mathml3-content.xsd +683 -0
- commonmeta/resources/crossref/standard-modules/mathml3/mathml3-presentation.xsd +2092 -0
- commonmeta/resources/crossref/standard-modules/mathml3/mathml3-strict-content.xsd +186 -0
- commonmeta/resources/crossref/standard-modules/mathml3/mathml3.xsd +9 -0
- commonmeta/resources/crossref/standard-modules/mathml3/module-ali.xsd +47 -0
- commonmeta/resources/crossref/standard-modules/module-ali.xsd +47 -0
- commonmeta/resources/crossref/standard-modules/xlink.xsd +100 -0
- commonmeta/resources/crossref/standard-modules/xml.xsd +287 -0
- commonmeta/resources/crossref/xml.xsd +287 -0
- commonmeta/schema_utils.py +25 -0
- commonmeta/utils.py +25 -9
- commonmeta/writers/bibtex_writer.py +5 -5
- commonmeta/writers/commonmeta_writer.py +4 -17
- commonmeta/writers/crossref_xml_writer.py +1031 -4
- commonmeta/writers/csl_writer.py +1 -2
- commonmeta/writers/datacite_writer.py +8 -4
- commonmeta/writers/inveniordm_writer.py +277 -2
- commonmeta/writers/ris_writer.py +3 -3
- commonmeta/writers/schema_org_writer.py +10 -5
- {commonmeta_py-0.107.dist-info → commonmeta_py-0.108.dist-info}/METADATA +4 -2
- {commonmeta_py-0.107.dist-info → commonmeta_py-0.108.dist-info}/RECORD +45 -31
- commonmeta/crossref_utils.py +0 -662
- commonmeta/resources/crossref/common5.3.1.xsd +0 -1538
- {commonmeta_py-0.107.dist-info → commonmeta_py-0.108.dist-info}/WHEEL +0 -0
- {commonmeta_py-0.107.dist-info → commonmeta_py-0.108.dist-info}/entry_points.txt +0 -0
- {commonmeta_py-0.107.dist-info → commonmeta_py-0.108.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,186 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
3
|
+
xmlns:m="http://www.w3.org/1998/Math/MathML"
|
4
|
+
elementFormDefault="qualified"
|
5
|
+
targetNamespace="http://www.w3.org/1998/Math/MathML">
|
6
|
+
<xs:group name="ContExp">
|
7
|
+
<xs:choice>
|
8
|
+
<!--Ambiguous content model altered (ContExp)-->
|
9
|
+
<xs:element ref="m:apply"/>
|
10
|
+
<xs:element ref="m:bind"/>
|
11
|
+
<xs:element ref="m:ci"/>
|
12
|
+
<xs:element ref="m:cn"/>
|
13
|
+
<xs:element ref="m:csymbol"/>
|
14
|
+
<xs:element ref="m:cbytes"/>
|
15
|
+
<xs:element ref="m:cerror"/>
|
16
|
+
<xs:element ref="m:cs"/>
|
17
|
+
<xs:element ref="m:share"/>
|
18
|
+
<xs:element ref="m:piecewise"/>
|
19
|
+
<xs:element ref="m:DeprecatedContExp"/>
|
20
|
+
<xs:element ref="m:interval.class"/>
|
21
|
+
<xs:element ref="m:unary-functional.class"/>
|
22
|
+
<xs:element ref="m:lambda.class"/>
|
23
|
+
<xs:element ref="m:nary-functional.class"/>
|
24
|
+
<xs:group ref="m:binary-arith.class"/>
|
25
|
+
<xs:group ref="m:unary-arith.class"/>
|
26
|
+
<xs:element ref="m:nary-minmax.class"/>
|
27
|
+
<xs:element ref="m:nary-arith.class"/>
|
28
|
+
<xs:element ref="m:nary-logical.class"/>
|
29
|
+
<xs:element ref="m:unary-logical.class"/>
|
30
|
+
<xs:element ref="m:binary-logical.class"/>
|
31
|
+
<xs:element ref="m:quantifier.class"/>
|
32
|
+
<xs:element ref="m:nary-reln.class"/>
|
33
|
+
<xs:element ref="m:binary-reln.class"/>
|
34
|
+
<xs:element ref="m:int.class"/>
|
35
|
+
<xs:element ref="m:Differential-Operator.class"/>
|
36
|
+
<xs:element ref="m:partialdiff.class"/>
|
37
|
+
<xs:element ref="m:unary-veccalc.class"/>
|
38
|
+
<xs:element ref="m:nary-setlist-constructor.class"/>
|
39
|
+
<xs:element ref="m:nary-set.class"/>
|
40
|
+
<xs:element ref="m:binary-set.class"/>
|
41
|
+
<xs:element ref="m:nary-set-reln.class"/>
|
42
|
+
<xs:element ref="m:unary-set.class"/>
|
43
|
+
<xs:element ref="m:sum.class"/>
|
44
|
+
<xs:element ref="m:product.class"/>
|
45
|
+
<xs:element ref="m:limit.class"/>
|
46
|
+
<xs:element ref="m:unary-elementary.class"/>
|
47
|
+
<xs:element ref="m:nary-stats.class"/>
|
48
|
+
<xs:element ref="m:nary-constructor.class"/>
|
49
|
+
<xs:element ref="m:unary-linalg.class"/>
|
50
|
+
<xs:element ref="m:nary-linalg.class"/>
|
51
|
+
<xs:element ref="m:binary-linalg.class"/>
|
52
|
+
<xs:element ref="m:constant-set.class"/>
|
53
|
+
<xs:element ref="m:constant-arith.class"/>
|
54
|
+
</xs:choice>
|
55
|
+
</xs:group>
|
56
|
+
<xs:element name="cn">
|
57
|
+
<xs:complexType>
|
58
|
+
<xs:complexContent>
|
59
|
+
<xs:extension base="m:cn.content">
|
60
|
+
<xs:attributeGroup ref="m:cn.attributes"/>
|
61
|
+
</xs:extension>
|
62
|
+
</xs:complexContent>
|
63
|
+
</xs:complexType>
|
64
|
+
</xs:element>
|
65
|
+
<xs:group name="semantics-ci">
|
66
|
+
<xs:sequence>
|
67
|
+
<xs:element name="semantics">
|
68
|
+
<xs:complexType>
|
69
|
+
<xs:sequence>
|
70
|
+
<xs:choice>
|
71
|
+
<xs:element ref="m:ci"/>
|
72
|
+
<xs:group ref="m:semantics-ci"/>
|
73
|
+
</xs:choice>
|
74
|
+
<xs:choice minOccurs="0" maxOccurs="unbounded">
|
75
|
+
<xs:element ref="m:annotation"/>
|
76
|
+
<xs:element ref="m:annotation-xml"/>
|
77
|
+
</xs:choice>
|
78
|
+
</xs:sequence>
|
79
|
+
<xs:attributeGroup ref="m:semantics.attributes"/>
|
80
|
+
</xs:complexType>
|
81
|
+
</xs:element>
|
82
|
+
</xs:sequence>
|
83
|
+
</xs:group>
|
84
|
+
<xs:group name="semantics-contexp">
|
85
|
+
<xs:sequence>
|
86
|
+
<xs:element name="semantics">
|
87
|
+
<xs:complexType>
|
88
|
+
<xs:sequence>
|
89
|
+
<xs:group ref="m:ContExp"/>
|
90
|
+
<xs:choice minOccurs="0" maxOccurs="unbounded">
|
91
|
+
<xs:element ref="m:annotation"/>
|
92
|
+
<xs:element ref="m:annotation-xml"/>
|
93
|
+
</xs:choice>
|
94
|
+
</xs:sequence>
|
95
|
+
<xs:attributeGroup ref="m:semantics.attributes"/>
|
96
|
+
</xs:complexType>
|
97
|
+
</xs:element>
|
98
|
+
</xs:sequence>
|
99
|
+
</xs:group>
|
100
|
+
<xs:element name="ci">
|
101
|
+
<xs:complexType>
|
102
|
+
<xs:complexContent>
|
103
|
+
<xs:extension base="m:ci.content">
|
104
|
+
<xs:attributeGroup ref="m:ci.attributes"/>
|
105
|
+
</xs:extension>
|
106
|
+
</xs:complexContent>
|
107
|
+
</xs:complexType>
|
108
|
+
</xs:element>
|
109
|
+
<xs:element name="csymbol">
|
110
|
+
<xs:complexType>
|
111
|
+
<xs:complexContent>
|
112
|
+
<xs:extension base="m:csymbol.content">
|
113
|
+
<xs:attributeGroup ref="m:csymbol.attributes"/>
|
114
|
+
</xs:extension>
|
115
|
+
</xs:complexContent>
|
116
|
+
</xs:complexType>
|
117
|
+
</xs:element>
|
118
|
+
<xs:simpleType name="SymbolName">
|
119
|
+
<xs:restriction base="xs:NCName"/>
|
120
|
+
</xs:simpleType>
|
121
|
+
<xs:group name="BvarQ">
|
122
|
+
<xs:sequence>
|
123
|
+
<xs:element minOccurs="0" maxOccurs="unbounded" ref="m:bvar"/>
|
124
|
+
</xs:sequence>
|
125
|
+
</xs:group>
|
126
|
+
<xs:element name="apply">
|
127
|
+
<xs:complexType>
|
128
|
+
<xs:complexContent>
|
129
|
+
<xs:extension base="m:apply.content">
|
130
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
131
|
+
</xs:extension>
|
132
|
+
</xs:complexContent>
|
133
|
+
</xs:complexType>
|
134
|
+
</xs:element>
|
135
|
+
<xs:element name="bind">
|
136
|
+
<xs:complexType>
|
137
|
+
<xs:complexContent>
|
138
|
+
<xs:extension base="m:bind.content">
|
139
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
140
|
+
</xs:extension>
|
141
|
+
</xs:complexContent>
|
142
|
+
</xs:complexType>
|
143
|
+
</xs:element>
|
144
|
+
<xs:element name="share">
|
145
|
+
<xs:complexType>
|
146
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
147
|
+
<xs:attributeGroup ref="m:src"/>
|
148
|
+
</xs:complexType>
|
149
|
+
</xs:element>
|
150
|
+
<xs:element name="cerror">
|
151
|
+
<xs:complexType>
|
152
|
+
<xs:sequence>
|
153
|
+
<xs:element ref="m:csymbol"/>
|
154
|
+
<xs:group minOccurs="0" maxOccurs="unbounded" ref="m:ContExp"/>
|
155
|
+
</xs:sequence>
|
156
|
+
<xs:attributeGroup ref="m:cerror.attributes"/>
|
157
|
+
</xs:complexType>
|
158
|
+
</xs:element>
|
159
|
+
<xs:attributeGroup name="cerror.attributes">
|
160
|
+
<xs:attributeGroup ref="m:CommonAtt"/>
|
161
|
+
</xs:attributeGroup>
|
162
|
+
<xs:element name="cbytes">
|
163
|
+
<xs:complexType>
|
164
|
+
<xs:simpleContent>
|
165
|
+
<xs:extension base="m:base64">
|
166
|
+
<xs:attributeGroup ref="m:cbytes.attributes"/>
|
167
|
+
</xs:extension>
|
168
|
+
</xs:simpleContent>
|
169
|
+
</xs:complexType>
|
170
|
+
</xs:element>
|
171
|
+
<xs:simpleType name="base64">
|
172
|
+
<xs:restriction base="xs:base64Binary"/>
|
173
|
+
</xs:simpleType>
|
174
|
+
<xs:element name="cs">
|
175
|
+
<xs:complexType mixed="true">
|
176
|
+
<xs:attributeGroup ref="m:cs.attributes"/>
|
177
|
+
</xs:complexType>
|
178
|
+
</xs:element>
|
179
|
+
<xs:group name="MathExpression">
|
180
|
+
<xs:choice>
|
181
|
+
<xs:group ref="m:ContExp"/>
|
182
|
+
<xs:element ref="m:PresentationExpression"/>
|
183
|
+
<xs:group ref="m:semantics"/>
|
184
|
+
</xs:choice>
|
185
|
+
</xs:group>
|
186
|
+
</xs:schema>
|
@@ -0,0 +1,9 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
|
3
|
+
xmlns:m="http://www.w3.org/1998/Math/MathML"
|
4
|
+
elementFormDefault="qualified"
|
5
|
+
targetNamespace="http://www.w3.org/1998/Math/MathML">
|
6
|
+
<xs:include schemaLocation="mathml3-content.xsd"/>
|
7
|
+
<xs:include schemaLocation="mathml3-presentation.xsd"/>
|
8
|
+
<xs:include schemaLocation="mathml3-common.xsd"/>
|
9
|
+
</xs:schema>
|
@@ -0,0 +1,47 @@
|
|
1
|
+
<?xml-stylesheet href="xsd.xsl" type="text/xsl"?>
|
2
|
+
<xsd:schema xmlns:mtl="http://www.mulberrytech.com/taglib"
|
3
|
+
xmlns:c="http://www.w3.org/ns/xproc-step"
|
4
|
+
xmlns:ali="http://www.niso.org/schemas/ali/1.0/"
|
5
|
+
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
6
|
+
targetNamespace="http://www.niso.org/schemas/ali/1.0/">
|
7
|
+
|
8
|
+
<xsd:import/>
|
9
|
+
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
10
|
+
<!--* Some imports may need to be added manually *-->
|
11
|
+
<xsd:element name="free_to_read">
|
12
|
+
<xsd:annotation>
|
13
|
+
<xsd:documentation>
|
14
|
+
<div xmlns="http://www.w3.org/1999/xhtml">
|
15
|
+
<h3>Free to Read (Niso Ali)</h3>
|
16
|
+
</div>
|
17
|
+
</xsd:documentation>
|
18
|
+
</xsd:annotation>
|
19
|
+
<xsd:complexType>
|
20
|
+
<xsd:attribute name="content-type" use="optional" type="xsd:string"/>
|
21
|
+
<xsd:attribute name="end_date" use="optional" type="xsd:string"/>
|
22
|
+
<xsd:attribute name="id" use="optional" type="xsd:ID"/>
|
23
|
+
<xsd:attribute name="specific-use" use="optional" type="xsd:string"/>
|
24
|
+
<xsd:attribute name="start_date" use="optional" type="xsd:string"/>
|
25
|
+
<!-- <xsd:attribute ref="xml:base" use="optional"/> -->
|
26
|
+
</xsd:complexType>
|
27
|
+
</xsd:element>
|
28
|
+
<xsd:element name="license_ref">
|
29
|
+
<xsd:annotation>
|
30
|
+
<xsd:documentation>
|
31
|
+
<div xmlns="http://www.w3.org/1999/xhtml">
|
32
|
+
<h3>License Reference (Niso Ali)</h3>
|
33
|
+
</div>
|
34
|
+
</xsd:documentation>
|
35
|
+
</xsd:annotation>
|
36
|
+
<xsd:complexType mixed="true">
|
37
|
+
<!-- <xsd:group ref="license-ref-model"/>-->
|
38
|
+
<xsd:attribute name="content-type" use="optional" type="xsd:string"/>
|
39
|
+
<xsd:attribute name="id" use="optional" type="xsd:ID"/>
|
40
|
+
<xsd:attribute name="specific-use" use="optional" type="xsd:string"/>
|
41
|
+
<xsd:attribute name="start_date" use="optional" type="xsd:string"/>
|
42
|
+
<!-- <xsd:attribute ref="xml:base" use="optional"/> -->
|
43
|
+
</xsd:complexType>
|
44
|
+
</xsd:element>
|
45
|
+
<xsd:annotation/>
|
46
|
+
</xsd:schema>
|
47
|
+
|
@@ -0,0 +1,47 @@
|
|
1
|
+
<?xml-stylesheet href="xsd.xsl" type="text/xsl"?>
|
2
|
+
<xsd:schema xmlns:mtl="http://www.mulberrytech.com/taglib"
|
3
|
+
xmlns:c="http://www.w3.org/ns/xproc-step"
|
4
|
+
xmlns:ali="http://www.niso.org/schemas/ali/1.0/"
|
5
|
+
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
6
|
+
targetNamespace="http://www.niso.org/schemas/ali/1.0/">
|
7
|
+
|
8
|
+
<xsd:import/>
|
9
|
+
<xsd:import namespace="http://www.w3.org/XML/1998/namespace"/>
|
10
|
+
<!--* Some imports may need to be added manually *-->
|
11
|
+
<xsd:element name="free_to_read">
|
12
|
+
<xsd:annotation>
|
13
|
+
<xsd:documentation>
|
14
|
+
<div xmlns="http://www.w3.org/1999/xhtml">
|
15
|
+
<h3>Free to Read (Niso Ali)</h3>
|
16
|
+
</div>
|
17
|
+
</xsd:documentation>
|
18
|
+
</xsd:annotation>
|
19
|
+
<xsd:complexType>
|
20
|
+
<xsd:attribute name="content-type" use="optional" type="xsd:string"/>
|
21
|
+
<xsd:attribute name="end_date" use="optional" type="xsd:string"/>
|
22
|
+
<xsd:attribute name="id" use="optional" type="xsd:ID"/>
|
23
|
+
<xsd:attribute name="specific-use" use="optional" type="xsd:string"/>
|
24
|
+
<xsd:attribute name="start_date" use="optional" type="xsd:string"/>
|
25
|
+
<!-- <xsd:attribute ref="xml:base" use="optional"/> -->
|
26
|
+
</xsd:complexType>
|
27
|
+
</xsd:element>
|
28
|
+
<xsd:element name="license_ref">
|
29
|
+
<xsd:annotation>
|
30
|
+
<xsd:documentation>
|
31
|
+
<div xmlns="http://www.w3.org/1999/xhtml">
|
32
|
+
<h3>License Reference (Niso Ali)</h3>
|
33
|
+
</div>
|
34
|
+
</xsd:documentation>
|
35
|
+
</xsd:annotation>
|
36
|
+
<xsd:complexType mixed="true">
|
37
|
+
<!-- <xsd:group ref="license-ref-model"/>-->
|
38
|
+
<xsd:attribute name="content-type" use="optional" type="xsd:string"/>
|
39
|
+
<xsd:attribute name="id" use="optional" type="xsd:ID"/>
|
40
|
+
<xsd:attribute name="specific-use" use="optional" type="xsd:string"/>
|
41
|
+
<xsd:attribute name="start_date" use="optional" type="xsd:string"/>
|
42
|
+
<!-- <xsd:attribute ref="xml:base" use="optional"/> -->
|
43
|
+
</xsd:complexType>
|
44
|
+
</xsd:element>
|
45
|
+
<xsd:annotation/>
|
46
|
+
</xsd:schema>
|
47
|
+
|
@@ -0,0 +1,100 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<!-- METS XLink Schema, v. 2, Nov. 15, 2004 -->
|
3
|
+
<!--* Downloaded 27 April 2012 from http://www.loc.gov/standards/mets/xlink.xsd
|
4
|
+
* and modified as noted. *-->
|
5
|
+
<!--* Some cosmetic changes to line breaks. *-->
|
6
|
+
<!--* Add top-level declaration of xlink:type. *-->
|
7
|
+
<schema targetNamespace="http://www.w3.org/1999/xlink"
|
8
|
+
xmlns="http://www.w3.org/2001/XMLSchema"
|
9
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
10
|
+
elementFormDefault="qualified">
|
11
|
+
|
12
|
+
<!-- global attributes -->
|
13
|
+
<attribute name="href" type="anyURI"/>
|
14
|
+
<attribute name="role" type="string"/>
|
15
|
+
<attribute name="arcrole" type="string"/>
|
16
|
+
<attribute name="title" type="string" />
|
17
|
+
<attribute name="show">
|
18
|
+
<simpleType>
|
19
|
+
<restriction base="string">
|
20
|
+
<enumeration value="new" />
|
21
|
+
<enumeration value="replace" />
|
22
|
+
<enumeration value="embed" />
|
23
|
+
<enumeration value="other" />
|
24
|
+
<enumeration value="none" />
|
25
|
+
</restriction>
|
26
|
+
</simpleType>
|
27
|
+
</attribute>
|
28
|
+
<attribute name="actuate">
|
29
|
+
<simpleType>
|
30
|
+
<restriction base="string">
|
31
|
+
<enumeration value="onLoad" />
|
32
|
+
<enumeration value="onRequest" />
|
33
|
+
<enumeration value="other" />
|
34
|
+
<enumeration value="none" />
|
35
|
+
</restriction>
|
36
|
+
</simpleType>
|
37
|
+
</attribute>
|
38
|
+
<attribute name="label" type="string" />
|
39
|
+
<attribute name="from" type="string" />
|
40
|
+
<attribute name="to" type="string" />
|
41
|
+
|
42
|
+
<attributeGroup name="simpleLink">
|
43
|
+
<attribute name="type" type="string" fixed="simple" form="qualified" />
|
44
|
+
<attribute ref="xlink:href" use="optional" />
|
45
|
+
<attribute ref="xlink:role" use="optional" />
|
46
|
+
<attribute ref="xlink:arcrole" use="optional" />
|
47
|
+
<attribute ref="xlink:title" use="optional" />
|
48
|
+
<attribute ref="xlink:show" use="optional" />
|
49
|
+
<attribute ref="xlink:actuate" use="optional" />
|
50
|
+
</attributeGroup>
|
51
|
+
<attributeGroup name="extendedLink">
|
52
|
+
<attribute name="type" type="string" fixed="extended" form="qualified" />
|
53
|
+
<attribute ref="xlink:role" use="optional" />
|
54
|
+
<attribute ref="xlink:title" use="optional" />
|
55
|
+
</attributeGroup>
|
56
|
+
<attributeGroup name="locatorLink">
|
57
|
+
<attribute name="type" type="string" fixed="locator" form="qualified" />
|
58
|
+
<attribute ref="xlink:href" use="required" />
|
59
|
+
<attribute ref="xlink:role" use="optional" />
|
60
|
+
<attribute ref="xlink:title" use="optional" />
|
61
|
+
<attribute ref="xlink:label" use="optional" />
|
62
|
+
</attributeGroup>
|
63
|
+
<attributeGroup name="arcLink">
|
64
|
+
<attribute name="type" type="string" fixed="arc" form="qualified" />
|
65
|
+
<attribute ref="xlink:arcrole" use="optional" />
|
66
|
+
<attribute ref="xlink:title" use="optional" />
|
67
|
+
<attribute ref="xlink:show" use="optional" />
|
68
|
+
<attribute ref="xlink:actuate" use="optional" />
|
69
|
+
<attribute ref="xlink:from" use="optional" />
|
70
|
+
<attribute ref="xlink:to" use="optional" />
|
71
|
+
</attributeGroup>
|
72
|
+
<attributeGroup name="resourceLink">
|
73
|
+
<attribute name="type" type="string" fixed="resource" form="qualified" />
|
74
|
+
<attribute ref="xlink:role" use="optional" />
|
75
|
+
<attribute ref="xlink:title" use="optional" />
|
76
|
+
<attribute ref="xlink:label" use="optional" />
|
77
|
+
</attributeGroup>
|
78
|
+
<attributeGroup name="titleLink">
|
79
|
+
<attribute name="type" type="string" fixed="title" form="qualified" />
|
80
|
+
</attributeGroup>
|
81
|
+
<attributeGroup name="emptyLink">
|
82
|
+
<attribute name="type" type="string" fixed="none" form="qualified" />
|
83
|
+
</attributeGroup>
|
84
|
+
|
85
|
+
<!--* Addition for IEEE union schema *-->
|
86
|
+
<attribute name="type">
|
87
|
+
<simpleType>
|
88
|
+
<restriction base="string">
|
89
|
+
<enumeration value="simple"/>
|
90
|
+
<enumeration value="extended"/>
|
91
|
+
<enumeration value="locator"/>
|
92
|
+
<enumeration value="arc"/>
|
93
|
+
<enumeration value="resource"/>
|
94
|
+
<enumeration value="title"/>
|
95
|
+
<enumeration value="none"/>
|
96
|
+
</restriction>
|
97
|
+
</simpleType>
|
98
|
+
</attribute>
|
99
|
+
|
100
|
+
</schema>
|