1 | <?xml version="1.0" encoding="UTF-8"?>
|
---|
2 | <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified" xmlns:ditaarch="http://dita.oasis-open.org/architecture/2005/">
|
---|
3 |
|
---|
4 | <xs:import namespace="http://www.w3.org/XML/1998/namespace" />
|
---|
5 | <xs:import namespace="http://dita.oasis-open.org/architecture/2005/" schemaLocation="urn:oasis:names:tc:dita:xsd:ditaarch.xsd:1.2"/>
|
---|
6 |
|
---|
7 | <xs:annotation>
|
---|
8 | <xs:documentation>The <<keyword>dita</keyword>> element provides a top-level container
|
---|
9 | for multiple topics when you create documents using the ditabase XSD. The
|
---|
10 | <<keyword>dita</keyword>> element lets you create any sequence of concept,
|
---|
11 | task, and reference topics, and the ditabase XSD lets you further nest these
|
---|
12 | topic types inside each other. The <<keyword>dita</keyword>> element has
|
---|
13 | no particular output implications; it simply allows you to create multiple
|
---|
14 | topics of different types at the same level in a single document.</xs:documentation>
|
---|
15 | </xs:annotation>
|
---|
16 | <xs:element name="dita" type="dita.class"/>
|
---|
17 | <xs:complexType name="dita.class">
|
---|
18 | <xs:choice maxOccurs="unbounded">
|
---|
19 | <xs:group ref="ditabase-info-types"/>
|
---|
20 | </xs:choice>
|
---|
21 | <xs:attribute ref="ditaarch:DITAArchVersion"/>
|
---|
22 | <xs:attribute ref="xml:lang"/>
|
---|
23 | <xs:attributeGroup ref="global-atts"/>
|
---|
24 | </xs:complexType>
|
---|
25 |
|
---|
26 | </xs:schema>
|
---|