<xsd:simpleType name="HoursTypeEnumeratedType">
<xsd:annotation>
<xsd:documentation source="http://www.starstandard.org/">Indicates a type of hours such as Sales hours, Service hours, etc.</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:normalizedString">
<xsd:enumeration value="Sales">
<xsd:annotation>
<xsd:documentation>Sales Hours</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
<xsd:enumeration value="Service">
<xsd:annotation>
<xsd:documentation>Service Hours</xsd:documentation>
</xsd:annotation>
</xsd:enumeration>
</xsd:restriction>
</xsd:simpleType>
|