2.2.5.19 t:MonthNamesType Simple Type

The MonthNamesType simple type specifies the month in which a yearly recurring item occurs. The MonthNamesType simple type extends the xs:string data type ([XMLSCHEMA2] section 3.2.1).

 <xs:simpleType name="MonthNamesType">
     <xs:restriction base="xs:string">
         <xs:enumeration value="January"/>
         <xs:enumeration value="February"/>
         <xs:enumeration value="March"/>
         <xs:enumeration value="April"/>
         <xs:enumeration value="May"/>
         <xs:enumeration value="June"/>
         <xs:enumeration value="July"/>
         <xs:enumeration value="August"/>
         <xs:enumeration value="September"/>
         <xs:enumeration value="October"/>
         <xs:enumeration value="November"/>
         <xs:enumeration value="December"/>
     </xs:restriction>
 </xs:simpleType>
  

The values that are defined by the MonthNamesType simple type are listed in the following table.

Value

Meaning

January

Specifies that a yearly recurring item occurs in January.

February

Specifies that a yearly recurring item occurs in February.

March

Specifies that a yearly recurring item occurs in March.

April

Specifies that a yearly recurring item occurs in April.

May

Specifies that a yearly recurring item occurs in May.

June

Specifies that a yearly recurring item occurs in June.

July

Specifies that a yearly recurring item occurs in July.

August

Specifies that a yearly recurring item occurs in August.

September

Specifies that a yearly recurring item occurs in September.

October

Specifies that a yearly recurring item occurs in October.

November

Specifies that a yearly recurring item occurs in November.

December

Specifies that a yearly recurring item occurs in December.