SoapDayList data structure

Element

Description

Type

Occurrences

friday

Indicates whether the schedule is active on Fridays

Boolean

1

monday

Indicates whether the schedule is active on Mondays

Boolean

1

saturday

Indicates whether the schedule is active on Saturdays

Boolean

1

sunday

Indicates whether the schedule is active on Sundays

Boolean

1

thursday

Indicates whether the schedule is active on Thursdays

Boolean

1

tuesday

Indicates whether the schedule is active on Tuesdays

Boolean

1

wednesday

Indicates whether the schedule is active on Wednesdays

Boolean

1

Specification:

<xs:complexType name="SoapDayList">

  <xs:sequence>

    <xs:element name="friday" type="xs:boolean" />

    <xs:element name="monday" type="xs:boolean" />

    <xs:element name="saturday" type="xs:boolean" />

    <xs:element name="sunday" type="xs:boolean" />

    <xs:element name="thursday" type="xs:boolean" />

    <xs:element name="tuesday" type="xs:boolean" />

    <xs:element name="wednesday" type="xs:boolean" />

  </xs:sequence>

</xs:complexType>

Example