timeout_types.xsd: allow 0 seconds

The previous range was from 1..X because we only used it for durations. But
with the Depot Autopilot we want to use it also for a timestamp.
This commit is contained in:
Martin Stein 2018-10-31 02:20:36 +01:00 committed by Christian Helmuth
parent a1ff3cc317
commit 5bb5a62d37

View File

@ -3,7 +3,7 @@
<xs:simpleType name="Seconds">
<xs:restriction base="xs:integer">
<xs:minInclusive value="1"/>
<xs:minInclusive value="0"/>
<xs:maxInclusive value="3600"/>
</xs:restriction>
</xs:simpleType><!-- Seconds -->