Appendix
appendix
The appendix type defines appendices to regulation. It consists of the following elements:
appendixTitle
, a string giving the title of the appendix- either 0 or 1
tableOfContents
elements - zero or more
appendixSection
elements
In addition, the appendix element supports the following attributes:
appendixLetter
, a string containing the letter by which the appendix is identifiedlabel
, a string containing an identifier by which the appendix can be referenced
<appendix appendixLetter="A" label="1004-A">
<appendixTitle>Appendix A to Part 1004</appendixTitle>
<appendixSection appendixSecNum="1" label="1004-A-1">
...
</appendixSection>
</appendix>
View schema code
<complexType name="Appendix">
<sequence>
<element name="appendixTitle" type="tns:AppendixHeader"></element>
<choice minOccurs="0" maxOccurs="1">
<element ref="tns:tableOfContents"></element>
</choice>
<choice minOccurs="0" maxOccurs="unbounded">
<!-- <element ref="tns:appendixHeader"></element> -->
<element name="reserved" type="string"></element>
<element ref="tns:appendixSection"></element>
</choice>
</sequence>
<attribute name="appendixLetter" type="string" use="required"></attribute>
<attribute name="label" type="string" use="required"></attribute>
</complexType>
appendixSection
The appendixSection
type defines a section of an appendix. It consists of the following elements:
subject
, a string containing the section title- zero or more
appendixHeader
elements optionally followed by paragraph elements
In addition the appendixSection
element supports the following attributes:
appendixSecNum
, an integer indicating the section numberlabel
, a string containing a unique identifier by which the section can be referenced
<appendixSection appendixSecNum="1" label="1004-A-1">
<subject>§ 1004.1 Authority, Purpose, and Scope</subject>
<appendixHeader>1(c) Scope</appendixHeader>
<paragraph marker="1">
<title>Application received before July 22, 2011.</title>
<content>
...
</content>
</paragraph>
</appendixSection>
View schema code
<complexType name="AppendixSection">
<sequence>
<element name="subject" type="string"></element>
<choice maxOccurs="unbounded">
<element ref="tns:appendixHeader"></element>
<element ref="tns:paragraph"></element>
</choice>
</sequence>
<attribute name="appendixSecNum" type="string" use="required"></attribute>
<attribute name="label" type="string" use="required"></attribute>
</complexType>
appendixHeader
The appendixHeader
element is a wrapper type for a string element.
<appendixHeader>2(a) Alternative Mortgage Transaction</appendixHeader>
View schema code
<simpleType name="AppendixHeader">
<restriction base="string"></restriction>
</simpleType>