<xsd:complexType name="BusinessCenterTime">
<xsd:annotation>
<xsd:documentation xml:lang="en">A type for defining a time with respect to a business center location. For example, 11:00am London time.</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="hourMinuteTime">
<xsd:annotation>
<xsd:documentation xml:lang="en">A time specified in hh:mm:ss format where the second component must be '00', e.g. 11am would be represented as 11:00:00.</xsd:documentation>
</xsd:annotation>
<xsd:simpleType>
<xsd:restriction base="xsd:time">
<xsd:pattern value="[0-2][0-9]:[0-5][0-9]:00" />
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:element name="businessCenter" type="BusinessCenter" />
</xsd:sequence>
</xsd:complexType>
|