A phrase defining a time of day in any format. |

| QName | Type | Fixed | Default | Use | Inheritable | Annotation | |
|---|---|---|---|---|---|---|---|
| ISO8601 | xs:string | optional | |||||
| TEIform | xs:string | optional | |||||
| id | xs:ID | optional | |||||
| lang | xs:IDREF | optional | |||||
| n | xs:string | optional | |||||
| rend | xs:string | optional | |||||
| type | restriction of xs:NMTOKEN | optional | |||||
| value | xs:string | optional | |||||
| wsd | xs:string | optional | |||||
| xml:lang | union of(xs:language, restriction of xs:string) | optional |
|
<xs:complexType name="timeType" mixed="true"> <xs:annotation> <xs:documentation xml:lang="en">A phrase defining a time of day in any format.</xs:documentation> </xs:annotation> <xs:complexContent mixed="true"> <xs:extension base="xces:base.seq"> <xs:attribute name="ISO8601" type="xs:string"/> <xs:attribute name="value" type="xs:string"/> <xs:attribute name="type"> <xs:simpleType> <xs:restriction base="xs:NMTOKEN"> <xs:enumeration value="am"/> <xs:enumeration value="pm"/> <xs:enumeration value="24hour"/> <xs:enumeration value="descriptive"/> </xs:restriction> </xs:simpleType> </xs:attribute> </xs:extension> </xs:complexContent> </xs:complexType> |