<complexType name="StreetNameType">
<annotation>
<appinfo source="ADT.xsd" />
<documentation>The data elements that make up the name of a street. There are two valid methods for encoding this information: 1). Use the structured elements and attributes. 2). The element value may contain a simplified string (e.g. 43 West 83rd. Street).
An example: <Street directionalPrefix="W" officialName="83RD" typeSuffix="ST" /></documentation>
</annotation>
<simpleContent>
<extension base="string">
<attribute name="directionalPrefix" type="string" use="optional">
<annotation>
<documentation>The direction for a street (e.g., North), placed before the official name.</documentation>
</annotation>
</attribute>
<attribute name="typePrefix" type="string" use="optional">
<annotation>
<documentation>The street type (e.g., Rd or Ave) specified before the official name
</documentation>
</annotation>
</attribute>
<attribute name="officialName" type="string" use="optional">
<annotation>
<documentation>
The name for a street (e.g., Main).
</documentation>
</annotation>
</attribute>
<attribute name="typeSuffix" type="string" use="optional">
<annotation>
<documentation>The street type (e.g., Rd or Ave) specified after the official name</documentation>
</annotation>
</attribute>
<attribute name="directionalSuffix" type="string" use="optional">
<annotation>
<documentation>The direction for a street (e.g., North), placed after the official name.</documentation>
</annotation>
</attribute>
<attribute name="muniOctant" type="gml:CompassPointEnumeration" use="optional" />
</extension>
</simpleContent>
</complexType>
|