2.1.4.1 IntervalUnit

Target namespace: urn:schemas-microsoft-com:oba.v1

Referenced by: ExpirationType

A simple type that specifies the unit of the maximumAge time interval. The value MUST be "days", "hours" or "weeks", as defined in the following table.

Value

Meaning

days

The time interval is given in days.

hours

The time interval is given in hours.

weeks

The time interval is given in weeks.

The following W3C XML Schema ([XMLSCHEMA1/2] section 2.1) fragment specifies the contents of this simple type.

 <xs:simpleType name="IntervalUnit">
   <xs:restriction base="xs:string">
     <xs:enumeration value="days"/>
     <xs:enumeration value="hours"/>
     <xs:enumeration value="weeks"/>
   </xs:restriction>
 </xs:simpleType>

See section 5.1 for the full W3C XML Schema ([XMLSCHEMA1/2] section 2.1).