<xs:simpleType name="MonthNamesCodeType">
<xs:annotation>
<xs:documentation>List of standard abbréviations for months</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:enumeration value="Jan"/>
<xs:enumeration value="Feb"/>
<xs:enumeration value="Mar"/>
<xs:enumeration value="Apr"/>
<xs:enumeration value="May"/>
<xs:enumeration value="Jun"/>
<xs:enumeration value="Jul"/>
<xs:enumeration value="Aug"/>
<xs:enumeration value="Sep"/>
<xs:enumeration value="Oct"/>
<xs:enumeration value="Nov"/>
<xs:enumeration value="Dec"/>
</xs:restriction>
</xs:simpleType> |