Analysis
analysis
The analysis
type describes the analysis of a section of the regulation. It consists of the following elements:
title
, the title of the analysis- one or more
analysisSection
elements
<analysis>
<title>Section 1000.1 Authority, Purpose, and Scope</title>
<analysisSection>
...
</analysisSection>
</analysis>
View schema code
<complexType name="Analysis">
<sequence>
<choice minOccurs="0" maxOccurs="unbounded">
<element ref="tns:analysisSection"></element>
</choice>
</sequence>
</complexType>
analysisSection
The analysisSection
describes the analysis of a section of the regulation. It consists of the following elements:
title
, the title of the analysis section- one or more
analysisParagraph
elements - zero or more other
analysisSection
elements
<analysisSection>
<title>1(c) Scope</title>
<analysisParagraph>
...
<analysisParagraph>
<analysisSection>
...
</analysisSection>
</analysisSection>
View schema code
<complexType name="AnalysisSection">
<sequence>
<element name="title" type="string"></element>
<choice minOccurs="1" maxOccurs="unbounded">
<element ref="tns:analysisParagraph"></element>
<element ref="tns:analysisSection"></element>
</choice>
</sequence>
</complexType>
analysisParagraph
The anlaysisParagraph
describes a paragraph within the analysis of a regulation. This differs from the primitive paragraph
because paragraphs within analysis are more limited in what they can express. They do not get markers, references, definitions, graphics, etc, they only contain footnotes.
analysisParagraph
consists of the following elements:
- one
content
element, which can contain text and zero or morefootnote
elements - zero or more other
analysisParagraph
elements - zero or more
footnote
elements - italicized text
<analysisParagraph>
Lorem ipsum dolor sit amet, consectetur adipiscing elit.<footnote ref="1">...</footnote>
<analysisParagraph>
View schema code
<complexType name="AnalysisParagraph" mixed="true">
<sequence>
<choice minOccurs="0" maxOccurs="unbounded">
<element ref="tns:footnote"></element>
<element name="em" type="tns:Emphasis"></element>
</choice>
</sequence>
</complexType>
footnote
The footnote
type defines a footnote within an analysisParagraph
. Footnotes are strings with the following attributes:
reference
, the reference number (typically) of the note.
<footnote ref="1">This is the footnote text.</footnote>
View schema code
<complexType name="Footnote">
<simpleContent>
<extension base="string">
<attribute name="ref"></attribute>
</extension>
</simpleContent>
</complexType>