index.xsd 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. This file is part of DocBook V5.0
  4. Copyright 1992-2008 HaL Computer Systems, Inc.,
  5. O'Reilly & Associates, Inc., ArborText, Inc., Fujitsu Software
  6. Corporation, Norman Walsh, Sun Microsystems, Inc., and the
  7. Organization for the Advancement of Structured Information
  8. Standards (OASIS).
  9. Release: $Id: index.rnc 8931 2010-10-20 13:29:20Z nwalsh $
  10. Permission to use, copy, modify and distribute the DocBook schema
  11. and its accompanying documentation for any purpose and without fee
  12. is hereby granted in perpetuity, provided that the above copyright
  13. notice and this paragraph appear in all copies. The copyright
  14. holders make no representation about the suitability of the schema
  15. for any purpose. It is provided "as is" without expressed or implied
  16. warranty.
  17. If you modify the DocBook schema in any way, label your schema as a
  18. variant of DocBook. See the reference documentation
  19. (http://docbook.org/tdg5/en/html/ch05.html#s-notdocbook)
  20. for more information.
  21. Please direct all questions, bug reports, or suggestions for changes
  22. to the docbook@lists.oasis-open.org mailing list. For more
  23. information, see http://www.oasis-open.org/docbook/.
  24. ======================================================================
  25. -->
  26. <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" targetNamespace="http://docbook.org/ns/docbook" xmlns:dbs="http://docbook.org/ns/docbook-slides" xmlns:db="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
  27. <xs:import namespace="http://docbook.org/ns/docbook-slides" schemaLocation="slides.xsd"/>
  28. <xs:import namespace="http://www.w3.org/1999/xlink" schemaLocation="xlink.xsd"/>
  29. <xs:import namespace="http://www.w3.org/XML/1998/namespace" schemaLocation="xml.xsd"/>
  30. <!-- ====================================================================== -->
  31. <xs:simpleType name="db.significance.enumeration">
  32. <xs:restriction base="xs:token">
  33. <xs:enumeration value="normal">
  34. <xs:annotation>
  35. <xs:documentation>Normal</xs:documentation>
  36. </xs:annotation>
  37. </xs:enumeration>
  38. <xs:enumeration value="preferred">
  39. <xs:annotation>
  40. <xs:documentation>Preferred</xs:documentation>
  41. </xs:annotation>
  42. </xs:enumeration>
  43. </xs:restriction>
  44. </xs:simpleType>
  45. <xs:attributeGroup name="db.significance.attribute">
  46. <xs:attribute name="significance" use="required" type="db:db.significance.enumeration"/>
  47. </xs:attributeGroup>
  48. <xs:attributeGroup name="db.zone.attribute">
  49. <xs:attribute name="zone" use="required" type="xs:IDREFS"/>
  50. </xs:attributeGroup>
  51. <xs:attributeGroup name="db.indexterm.pagenum.attribute">
  52. <xs:attribute name="pagenum" use="required"/>
  53. </xs:attributeGroup>
  54. <xs:simpleType name="db.scope.enumeration">
  55. <xs:restriction base="xs:token">
  56. <xs:enumeration value="all">
  57. <xs:annotation>
  58. <xs:documentation>All indexes</xs:documentation>
  59. </xs:annotation>
  60. </xs:enumeration>
  61. <xs:enumeration value="global">
  62. <xs:annotation>
  63. <xs:documentation>The global index (as for a combined index of a set of books)</xs:documentation>
  64. </xs:annotation>
  65. </xs:enumeration>
  66. <xs:enumeration value="local">
  67. <xs:annotation>
  68. <xs:documentation>The local index (the index for this document only)</xs:documentation>
  69. </xs:annotation>
  70. </xs:enumeration>
  71. </xs:restriction>
  72. </xs:simpleType>
  73. <xs:attributeGroup name="db.scope.attribute">
  74. <xs:attribute name="scope" use="required" type="db:db.scope.enumeration"/>
  75. </xs:attributeGroup>
  76. <xs:attributeGroup name="db.sortas.attribute">
  77. <xs:attribute name="sortas" use="required"/>
  78. </xs:attributeGroup>
  79. <xs:attributeGroup name="db.index.type.attribute">
  80. <xs:attribute name="type" use="required"/>
  81. </xs:attributeGroup>
  82. <!-- ====================================================================== -->
  83. <xs:attributeGroup name="db.itermset.role.attribute">
  84. <xs:attribute name="role" use="required"/>
  85. </xs:attributeGroup>
  86. <xs:attributeGroup name="db.itermset.attlist">
  87. <xs:attribute name="role"/>
  88. <xs:attributeGroup ref="dbs:db.common.attributes"/>
  89. <xs:attributeGroup ref="db:db.common.linking.attributes"/>
  90. </xs:attributeGroup>
  91. <xs:element name="itermset">
  92. <xs:complexType>
  93. <xs:group maxOccurs="unbounded" ref="db:db.indexterm.singular"/>
  94. <xs:attributeGroup ref="db:db.itermset.attlist"/>
  95. </xs:complexType>
  96. </xs:element>
  97. <!-- ====================================================================== -->
  98. <xs:complexType name="db.indexterm.contentmodel">
  99. <xs:sequence>
  100. <xs:element minOccurs="0" ref="db:primary"/>
  101. <xs:choice minOccurs="0">
  102. <xs:sequence>
  103. <xs:element ref="db:secondary"/>
  104. <xs:choice minOccurs="0">
  105. <xs:sequence>
  106. <xs:element ref="db:tertiary"/>
  107. <xs:choice minOccurs="0">
  108. <xs:element ref="db:see"/>
  109. <xs:element maxOccurs="unbounded" ref="db:seealso"/>
  110. </xs:choice>
  111. </xs:sequence>
  112. <xs:element ref="db:see"/>
  113. <xs:element maxOccurs="unbounded" ref="db:seealso"/>
  114. </xs:choice>
  115. </xs:sequence>
  116. <xs:element ref="db:see"/>
  117. <xs:element maxOccurs="unbounded" ref="db:seealso"/>
  118. </xs:choice>
  119. </xs:sequence>
  120. </xs:complexType>
  121. <!-- ====================================================================== -->
  122. <xs:attributeGroup name="db.indexterm.singular.role.attribute">
  123. <xs:attribute name="role" use="required"/>
  124. </xs:attributeGroup>
  125. <xs:attributeGroup name="db.indexterm.singular.class.attribute">
  126. <xs:attribute name="class" use="required">
  127. <xs:simpleType>
  128. <xs:restriction base="xs:token">
  129. <xs:enumeration value="singular">
  130. <xs:annotation>
  131. <xs:documentation>A singular index term</xs:documentation>
  132. </xs:annotation>
  133. </xs:enumeration>
  134. </xs:restriction>
  135. </xs:simpleType>
  136. </xs:attribute>
  137. </xs:attributeGroup>
  138. <xs:attributeGroup name="db.indexterm.singular.attlist">
  139. <xs:attribute name="role"/>
  140. <xs:attributeGroup ref="dbs:db.common.attributes"/>
  141. <xs:attributeGroup ref="db:db.common.linking.attributes"/>
  142. <xs:attribute name="significance" type="db:db.significance.enumeration"/>
  143. <xs:attribute name="zone" type="xs:IDREFS"/>
  144. <xs:attribute name="pagenum"/>
  145. <xs:attribute name="scope" type="db:db.scope.enumeration"/>
  146. <xs:attribute name="type"/>
  147. <xs:attribute name="class">
  148. <xs:simpleType>
  149. <xs:restriction base="xs:token">
  150. <xs:enumeration value="singular">
  151. <xs:annotation>
  152. <xs:documentation>A singular index term</xs:documentation>
  153. </xs:annotation>
  154. </xs:enumeration>
  155. </xs:restriction>
  156. </xs:simpleType>
  157. </xs:attribute>
  158. </xs:attributeGroup>
  159. <xs:group name="db.indexterm.singular">
  160. <xs:sequence>
  161. <xs:element name="indexterm">
  162. <xs:complexType>
  163. <xs:complexContent>
  164. <xs:extension base="db:db.indexterm.contentmodel">
  165. <xs:attributeGroup ref="db:db.indexterm.singular.attlist"/>
  166. </xs:extension>
  167. </xs:complexContent>
  168. </xs:complexType>
  169. </xs:element>
  170. </xs:sequence>
  171. </xs:group>
  172. <!-- ====================================================================== -->
  173. <xs:attributeGroup name="db.indexterm.startofrange.role.attribute">
  174. <xs:attribute name="role" use="required"/>
  175. </xs:attributeGroup>
  176. <xs:attributeGroup name="db.indexterm.startofrange.class.attribute">
  177. <xs:attribute name="class" use="required">
  178. <xs:simpleType>
  179. <xs:restriction base="xs:token">
  180. <xs:enumeration value="startofrange">
  181. <xs:annotation>
  182. <xs:documentation>The start of a range</xs:documentation>
  183. </xs:annotation>
  184. </xs:enumeration>
  185. </xs:restriction>
  186. </xs:simpleType>
  187. </xs:attribute>
  188. </xs:attributeGroup>
  189. <xs:attributeGroup name="db.indexterm.startofrange.attlist">
  190. <xs:attribute name="role"/>
  191. <xs:attributeGroup ref="dbs:db.common.attributes"/>
  192. <xs:attributeGroup ref="db:db.common.linking.attributes"/>
  193. <xs:attribute name="significance" type="db:db.significance.enumeration"/>
  194. <xs:attribute name="zone" type="xs:IDREFS"/>
  195. <xs:attribute name="pagenum"/>
  196. <xs:attribute name="scope" type="db:db.scope.enumeration"/>
  197. <xs:attribute name="type"/>
  198. <xs:attributeGroup ref="db:db.indexterm.startofrange.class.attribute"/>
  199. </xs:attributeGroup>
  200. <xs:group name="db.indexterm.startofrange">
  201. <xs:sequence>
  202. <xs:element name="indexterm">
  203. <xs:complexType>
  204. <xs:complexContent>
  205. <xs:extension base="db:db.indexterm.contentmodel">
  206. <xs:attributeGroup ref="db:db.indexterm.startofrange.attlist"/>
  207. </xs:extension>
  208. </xs:complexContent>
  209. </xs:complexType>
  210. </xs:element>
  211. </xs:sequence>
  212. </xs:group>
  213. <!-- ====================================================================== -->
  214. <xs:attributeGroup name="db.indexterm.endofrange.role.attribute">
  215. <xs:attribute name="role" use="required"/>
  216. </xs:attributeGroup>
  217. <xs:attributeGroup name="db.indexterm.endofrange.class.attribute">
  218. <xs:attribute name="class" use="required">
  219. <xs:simpleType>
  220. <xs:restriction base="xs:token">
  221. <xs:enumeration value="endofrange">
  222. <xs:annotation>
  223. <xs:documentation>The end of a range</xs:documentation>
  224. </xs:annotation>
  225. </xs:enumeration>
  226. </xs:restriction>
  227. </xs:simpleType>
  228. </xs:attribute>
  229. </xs:attributeGroup>
  230. <xs:attributeGroup name="db.indexterm.endofrange.startref.attribute">
  231. <xs:attribute name="startref" use="required" type="xs:IDREF"/>
  232. </xs:attributeGroup>
  233. <xs:attributeGroup name="db.indexterm.endofrange.attlist">
  234. <xs:attribute name="role"/>
  235. <xs:attributeGroup ref="dbs:db.common.attributes"/>
  236. <xs:attributeGroup ref="db:db.common.linking.attributes"/>
  237. <xs:attributeGroup ref="db:db.indexterm.endofrange.class.attribute"/>
  238. <xs:attributeGroup ref="db:db.indexterm.endofrange.startref.attribute"/>
  239. </xs:attributeGroup>
  240. <xs:group name="db.indexterm.endofrange">
  241. <xs:sequence>
  242. <xs:element name="indexterm">
  243. <xs:complexType>
  244. <xs:attributeGroup ref="db:db.indexterm.endofrange.attlist"/>
  245. </xs:complexType>
  246. </xs:element>
  247. </xs:sequence>
  248. </xs:group>
  249. <!-- ====================================================================== -->
  250. <xs:group name="db.indexterm">
  251. <xs:choice>
  252. <xs:group ref="db:db.indexterm.singular"/>
  253. <xs:group ref="db:db.indexterm.startofrange"/>
  254. <xs:group ref="db:db.indexterm.endofrange"/>
  255. </xs:choice>
  256. </xs:group>
  257. <!-- ====================================================================== -->
  258. <xs:attributeGroup name="db.primary.role.attribute">
  259. <xs:attribute name="role" use="required"/>
  260. </xs:attributeGroup>
  261. <xs:attributeGroup name="db.primary.attlist">
  262. <xs:attribute name="role"/>
  263. <xs:attributeGroup ref="dbs:db.common.attributes"/>
  264. <xs:attributeGroup ref="db:db.common.linking.attributes"/>
  265. <xs:attribute name="sortas"/>
  266. </xs:attributeGroup>
  267. <xs:element name="primary">
  268. <xs:complexType mixed="true">
  269. <xs:group minOccurs="0" maxOccurs="unbounded" ref="db:db.all.inlines"/>
  270. <xs:attributeGroup ref="db:db.primary.attlist"/>
  271. </xs:complexType>
  272. </xs:element>
  273. <!-- ====================================================================== -->
  274. <xs:attributeGroup name="db.secondary.role.attribute">
  275. <xs:attribute name="role" use="required"/>
  276. </xs:attributeGroup>
  277. <xs:attributeGroup name="db.secondary.attlist">
  278. <xs:attribute name="role"/>
  279. <xs:attributeGroup ref="dbs:db.common.attributes"/>
  280. <xs:attributeGroup ref="db:db.common.linking.attributes"/>
  281. <xs:attribute name="sortas"/>
  282. </xs:attributeGroup>
  283. <xs:element name="secondary">
  284. <xs:complexType mixed="true">
  285. <xs:group minOccurs="0" maxOccurs="unbounded" ref="db:db.all.inlines"/>
  286. <xs:attributeGroup ref="db:db.secondary.attlist"/>
  287. </xs:complexType>
  288. </xs:element>
  289. <!-- ====================================================================== -->
  290. <xs:attributeGroup name="db.tertiary.role.attribute">
  291. <xs:attribute name="role" use="required"/>
  292. </xs:attributeGroup>
  293. <xs:attributeGroup name="db.tertiary.attlist">
  294. <xs:attribute name="role"/>
  295. <xs:attributeGroup ref="dbs:db.common.attributes"/>
  296. <xs:attributeGroup ref="db:db.common.linking.attributes"/>
  297. <xs:attribute name="sortas"/>
  298. </xs:attributeGroup>
  299. <xs:element name="tertiary">
  300. <xs:complexType mixed="true">
  301. <xs:group minOccurs="0" maxOccurs="unbounded" ref="db:db.all.inlines"/>
  302. <xs:attributeGroup ref="db:db.tertiary.attlist"/>
  303. </xs:complexType>
  304. </xs:element>
  305. <!-- ====================================================================== -->
  306. <xs:attributeGroup name="db.see.role.attribute">
  307. <xs:attribute name="role" use="required"/>
  308. </xs:attributeGroup>
  309. <xs:attributeGroup name="db.see.attlist">
  310. <xs:attribute name="role"/>
  311. <xs:attributeGroup ref="dbs:db.common.attributes"/>
  312. <xs:attributeGroup ref="db:db.common.linking.attributes"/>
  313. </xs:attributeGroup>
  314. <xs:element name="see">
  315. <xs:complexType mixed="true">
  316. <xs:group minOccurs="0" maxOccurs="unbounded" ref="db:db.all.inlines"/>
  317. <xs:attributeGroup ref="db:db.see.attlist"/>
  318. </xs:complexType>
  319. </xs:element>
  320. <!-- ====================================================================== -->
  321. <xs:attributeGroup name="db.seealso.role.attribute">
  322. <xs:attribute name="role" use="required"/>
  323. </xs:attributeGroup>
  324. <xs:attributeGroup name="db.seealso.attlist">
  325. <xs:attribute name="role"/>
  326. <xs:attributeGroup ref="dbs:db.common.attributes"/>
  327. <xs:attributeGroup ref="db:db.common.linking.attributes"/>
  328. </xs:attributeGroup>
  329. <xs:element name="seealso">
  330. <xs:complexType mixed="true">
  331. <xs:group minOccurs="0" maxOccurs="unbounded" ref="db:db.all.inlines"/>
  332. <xs:attributeGroup ref="db:db.seealso.attlist"/>
  333. </xs:complexType>
  334. </xs:element>
  335. <!-- ====================================================================== -->
  336. <xs:attributeGroup name="db.index.status.attribute">
  337. <xs:attributeGroup ref="db:db.status.attribute"/>
  338. </xs:attributeGroup>
  339. <xs:attributeGroup name="db.index.role.attribute">
  340. <xs:attribute name="role" use="required"/>
  341. </xs:attributeGroup>
  342. <xs:attributeGroup name="db.index.attlist">
  343. <xs:attribute name="role"/>
  344. <xs:attributeGroup ref="dbs:db.common.attributes"/>
  345. <xs:attributeGroup ref="db:db.common.linking.attributes"/>
  346. <xs:attribute name="label"/>
  347. <xs:attribute name="status"/>
  348. <xs:attribute name="type"/>
  349. </xs:attributeGroup>
  350. <xs:group name="db.index.info">
  351. <xs:sequence>
  352. <xs:group ref="db:db._info"/>
  353. </xs:sequence>
  354. </xs:group>
  355. <!--
  356. Yes, db.indexdiv* and db.indexentry*; that way an <index/> is valid.
  357. Authors can use an empty index to indicate where a generated index should
  358. appear.
  359. -->
  360. <xs:element name="index">
  361. <xs:complexType>
  362. <xs:sequence>
  363. <xs:group ref="db:db.index.info"/>
  364. <xs:group minOccurs="0" maxOccurs="unbounded" ref="db:db.all.blocks"/>
  365. <xs:choice>
  366. <xs:element minOccurs="0" maxOccurs="unbounded" ref="db:indexdiv"/>
  367. <xs:element minOccurs="0" maxOccurs="unbounded" ref="db:indexentry"/>
  368. <xs:element ref="db:segmentedlist"/>
  369. </xs:choice>
  370. </xs:sequence>
  371. <xs:attributeGroup ref="db:db.index.attlist"/>
  372. </xs:complexType>
  373. </xs:element>
  374. <!-- ====================================================================== -->
  375. <xs:attributeGroup name="db.setindex.status.attribute">
  376. <xs:attributeGroup ref="db:db.status.attribute"/>
  377. </xs:attributeGroup>
  378. <xs:attributeGroup name="db.setindex.role.attribute">
  379. <xs:attribute name="role" use="required"/>
  380. </xs:attributeGroup>
  381. <xs:attributeGroup name="db.setindex.attlist">
  382. <xs:attribute name="role"/>
  383. <xs:attributeGroup ref="dbs:db.common.attributes"/>
  384. <xs:attributeGroup ref="db:db.common.linking.attributes"/>
  385. <xs:attribute name="label"/>
  386. <xs:attribute name="status"/>
  387. <xs:attribute name="type"/>
  388. </xs:attributeGroup>
  389. <xs:group name="db.setindex.info">
  390. <xs:sequence>
  391. <xs:group ref="db:db._info"/>
  392. </xs:sequence>
  393. </xs:group>
  394. <xs:element name="setindex" substitutionGroup="db:db.setindex.components"/>
  395. <!-- ====================================================================== -->
  396. <xs:attributeGroup name="db.indexdiv.status.attribute">
  397. <xs:attributeGroup ref="db:db.status.attribute"/>
  398. </xs:attributeGroup>
  399. <xs:attributeGroup name="db.indexdiv.role.attribute">
  400. <xs:attribute name="role" use="required"/>
  401. </xs:attributeGroup>
  402. <xs:attributeGroup name="db.indexdiv.attlist">
  403. <xs:attribute name="role"/>
  404. <xs:attributeGroup ref="dbs:db.common.attributes"/>
  405. <xs:attributeGroup ref="db:db.common.linking.attributes"/>
  406. <xs:attribute name="label"/>
  407. <xs:attribute name="status"/>
  408. </xs:attributeGroup>
  409. <xs:group name="db.indexdiv.info">
  410. <xs:sequence>
  411. <xs:group ref="db:db._info.title.req"/>
  412. </xs:sequence>
  413. </xs:group>
  414. <xs:element name="indexdiv">
  415. <xs:complexType>
  416. <xs:sequence>
  417. <xs:group ref="db:db.indexdiv.info"/>
  418. <xs:group minOccurs="0" maxOccurs="unbounded" ref="db:db.all.blocks"/>
  419. <xs:choice>
  420. <xs:element maxOccurs="unbounded" ref="db:indexentry"/>
  421. <xs:element ref="db:segmentedlist"/>
  422. </xs:choice>
  423. </xs:sequence>
  424. <xs:attributeGroup ref="db:db.indexdiv.attlist"/>
  425. </xs:complexType>
  426. </xs:element>
  427. <!-- ====================================================================== -->
  428. <xs:attributeGroup name="db.indexentry.role.attribute">
  429. <xs:attribute name="role" use="required"/>
  430. </xs:attributeGroup>
  431. <xs:attributeGroup name="db.indexentry.attlist">
  432. <xs:attribute name="role"/>
  433. <xs:attributeGroup ref="dbs:db.common.attributes"/>
  434. <xs:attributeGroup ref="db:db.common.linking.attributes"/>
  435. </xs:attributeGroup>
  436. <xs:element name="indexentry">
  437. <xs:complexType>
  438. <xs:sequence>
  439. <xs:element ref="db:primaryie"/>
  440. <xs:choice minOccurs="0" maxOccurs="unbounded">
  441. <xs:element ref="db:seeie"/>
  442. <xs:element ref="db:seealsoie"/>
  443. </xs:choice>
  444. <xs:sequence minOccurs="0" maxOccurs="unbounded">
  445. <xs:element ref="db:secondaryie"/>
  446. <xs:choice minOccurs="0" maxOccurs="unbounded">
  447. <xs:element ref="db:seeie"/>
  448. <xs:element ref="db:seealsoie"/>
  449. <xs:element ref="db:tertiaryie"/>
  450. </xs:choice>
  451. </xs:sequence>
  452. </xs:sequence>
  453. <xs:attributeGroup ref="db:db.indexentry.attlist"/>
  454. </xs:complexType>
  455. </xs:element>
  456. <!-- ====================================================================== -->
  457. <xs:attributeGroup name="db.primaryie.role.attribute">
  458. <xs:attribute name="role" use="required"/>
  459. </xs:attributeGroup>
  460. <xs:attributeGroup name="db.primaryie.attlist">
  461. <xs:attribute name="role"/>
  462. <xs:attributeGroup ref="dbs:db.common.attributes"/>
  463. <xs:attribute name="linkends" type="xs:IDREFS"/>
  464. </xs:attributeGroup>
  465. <xs:element name="primaryie">
  466. <xs:complexType mixed="true">
  467. <xs:group minOccurs="0" maxOccurs="unbounded" ref="db:db.all.inlines"/>
  468. <xs:attributeGroup ref="db:db.primaryie.attlist"/>
  469. </xs:complexType>
  470. </xs:element>
  471. <!-- ====================================================================== -->
  472. <xs:attributeGroup name="db.secondaryie.role.attribute">
  473. <xs:attribute name="role" use="required"/>
  474. </xs:attributeGroup>
  475. <xs:attributeGroup name="db.secondaryie.attlist">
  476. <xs:attribute name="role"/>
  477. <xs:attributeGroup ref="dbs:db.common.attributes"/>
  478. <xs:attribute name="linkends" type="xs:IDREFS"/>
  479. </xs:attributeGroup>
  480. <xs:element name="secondaryie">
  481. <xs:complexType mixed="true">
  482. <xs:group minOccurs="0" maxOccurs="unbounded" ref="db:db.all.inlines"/>
  483. <xs:attributeGroup ref="db:db.secondaryie.attlist"/>
  484. </xs:complexType>
  485. </xs:element>
  486. <!-- ====================================================================== -->
  487. <xs:attributeGroup name="db.tertiaryie.role.attribute">
  488. <xs:attribute name="role" use="required"/>
  489. </xs:attributeGroup>
  490. <xs:attributeGroup name="db.tertiaryie.attlist">
  491. <xs:attribute name="role"/>
  492. <xs:attributeGroup ref="dbs:db.common.attributes"/>
  493. <xs:attribute name="linkends" type="xs:IDREFS"/>
  494. </xs:attributeGroup>
  495. <xs:element name="tertiaryie">
  496. <xs:complexType mixed="true">
  497. <xs:group minOccurs="0" maxOccurs="unbounded" ref="db:db.all.inlines"/>
  498. <xs:attributeGroup ref="db:db.tertiaryie.attlist"/>
  499. </xs:complexType>
  500. </xs:element>
  501. <!-- ====================================================================== -->
  502. <xs:attributeGroup name="db.seeie.role.attribute">
  503. <xs:attribute name="role" use="required"/>
  504. </xs:attributeGroup>
  505. <xs:attributeGroup name="db.seeie.attlist">
  506. <xs:attribute name="role"/>
  507. <xs:attributeGroup ref="dbs:db.common.attributes"/>
  508. <xs:attribute name="linkend" type="xs:IDREF"/>
  509. </xs:attributeGroup>
  510. <xs:element name="seeie">
  511. <xs:complexType mixed="true">
  512. <xs:group minOccurs="0" maxOccurs="unbounded" ref="db:db.all.inlines"/>
  513. <xs:attributeGroup ref="db:db.seeie.attlist"/>
  514. </xs:complexType>
  515. </xs:element>
  516. <!-- ====================================================================== -->
  517. <xs:attributeGroup name="db.seealsoie.role.attribute">
  518. <xs:attribute name="role" use="required"/>
  519. </xs:attributeGroup>
  520. <xs:attributeGroup name="db.seealsoie.attlist">
  521. <xs:attribute name="role"/>
  522. <xs:attributeGroup ref="dbs:db.common.attributes"/>
  523. <xs:attribute name="linkends" type="xs:IDREFS"/>
  524. </xs:attributeGroup>
  525. <xs:element name="seealsoie">
  526. <xs:complexType mixed="true">
  527. <xs:group minOccurs="0" maxOccurs="unbounded" ref="db:db.all.inlines"/>
  528. <xs:attributeGroup ref="db:db.seealsoie.attlist"/>
  529. </xs:complexType>
  530. </xs:element>
  531. </xs:schema>