<?xml version="1.0" encoding="utf-16"?>
<xsd:element name="timeLimit">
<xsd:complexType>
<xsd:choice>
<xsd:element name="noLimit">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:pattern value="true|TRUE" />
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
<xsd:element name="withinMinutes">
<xsd:simpleType>
<xsd:restriction base="xsd:int">
<xsd:minInclusive value="1" />
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
|