DayOfWeekHoliday data structure

Element

Description

Type

Occurrences

countryIdentifier

Unique database identifier of the associated country

long

1

description

Description of this holiday

string

1

identifier

Unique identifier assigned by the database

long

1

month

Name of the month in which this holiday occurs

string

1

name

Name to assign to this holiday

string

1

weekDay

Name of the day in the week on which this holiday occurs

string

1

weekOfMonth

Number of the week within the month when this holiday occurs

string

1

Specification:

<xs:complexType name="DayOfWeekHoliday">

  <xs:sequence>

    <xs:element name="countryIdentifier" type="xs:long"/>

    <xs:element name="description" nillable="true" type="xs:string"/>

    <xs:element name="identifier" type="xs:long"/>

    <xs:element name="month" nillable="true" type="xs:string"/>

    <xs:element name="name" nillable="true" type="xs:string"/>

    <xs:element name="weekDay" nillable="true" type="xs:string"/>

    <xs:element name="weekOfMonth" nillable="true" type="xs:string"/>

  </xs:sequence>

</xs:complexType>

Example