Created
June 15, 2017 17:42
-
-
Save EliJDonahue/82848eef60b89303495843eacc94317e to your computer and use it in GitHub Desktop.
Sample code showing how to add the Doc-Data element for displaying tech doc metadata
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<xs:element name="Standard-Doc"> | |
<xs:complexType> | |
<xs:sequence> | |
<xs:element ref="Title"/> | |
<xs:element ref="Subtitle" minOccurs="0" maxOccurs="1"/> | |
<xs:element ref="Doc-Data" minOccurs="0" maxOccurs="1"/> | |
<xs:element ref="Section" minOccurs="0" maxOccurs="unbounded"/> | |
</xs:sequence> | |
</xs:complexType> | |
</xs:element> | |
<xs:element name="Doc-Data"> | |
<xs:complexType> | |
<xs:sequence> | |
<xs:element ref="Text" minOccurs="0" maxOccurs="3"/> | |
</xs:sequence> | |
</xs:complexType> | |
</xs:element> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment