OneTimeHoliday data structure

Element

Description

Type

Occurrences

countryIdentifier

Unique database identifier of the associated country

long

1

day

Day of the month on which the holiday occurs

integer

1

descriptions

Description of this holiday

string

1

identifier

Unique identifier assigned by the database

long

1

month

Name of the month in which the holiday occurs

string

1

name

Name of the holiday

string

1

year

Year in which the holiday occurs

integer

1

Specification:

<xs:complexType name="OneTimeHoliday">

  <xs:sequence>

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

    <xs:element name="day" type="xs:int"/>

    <xs:element name="descriptions" 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="year" type="xs:int"/>

  </xs:sequence>

</xs:complexType>

Example