Preamble
The preamble
to a regulation contains descriptive information about the regulation. It consists of the following elements:
agency
, a string that identifies the agency which issued the regulationcfr
, a complex element that supports the following sub-elements:title
, an integer identifying the CFR title containing the regulationsection
, an integer identifying the CFR section containing the regulationeffectiveDate
, the date on which the regulation takes effect
<preamble>
<agency>Consumer Financial Protection Bureau</agency>
<cfr>
<title>12</title>
<section>1004</section>
</cfr>
<depdoc>[Docket No. CFPB-2011-0004]</depdoc>
<rin>RIN 3170-AA04</rin>
<summary>
<header>SUMMARY:</header>
<content>
...
</content>
</summary>
<effectiveDate>2011-07-22</effectiveDate>
</preamble>
View schema code
<complexType name="Preamble">
<sequence>
<element name="agency" type="string"></element>
<element name="cfr">
<complexType>
<sequence>
<element name="title" type="int"></element>
<element name="section" type="int"></element>
</sequence>
</complexType>
</element>
<!-- <element name="depdoc" type="string"></element> -->
<!-- <element name="rin" type="string"></element> -->
<!-- <element name="summary"> -->
<!-- <complexType> -->
<!-- <sequence> -->
<!-- <element name="header" type="string"></element> -->
<!-- <element name="content" type="string"></element> -->
<!-- </sequence> -->
<!-- </complexType> -->
<!-- </element> -->
<element name="effectiveDate" type="date"></element>
</sequence>
</complexType>