Documentation for XCEDE2

Complex Type: event_t

[Table of contents]

Super-types: None
Sub-types: None
Name event_t
Used by (from the same schema document) Complex Type events_t
Abstract no
Documentation This element represents an interval of time, with arbitrary metadata (in the value element).
XML Instance Representation
<...
type=" xs:string [0..1]"
units=" xs:string [0..1]

'This attribute is optional, but an group using this schema should agree on, use, and enforce measurement units consistently, to avoid the need for unit conversion in an application.'

"

name=" xs:string [0..1]">
<onset> xs:float </onset> [0..1]
<duration> xs:float </duration> [0..1]
<value> eventValue_t </value> [0..*]
<annotation> textAnnotation_t </annotation> [0..*]
</...>
Diagram
type_eventValue_t type_textAnnotation_t
Schema Component Representation
<xs:complexType name="event_t">
<xs:sequence>
<xs:element name="onset" type=" xs:float " minOccurs="0"/>
<xs:element name="duration" type=" xs:float " minOccurs="0"/>
<xs:element name="value" type=" eventValue_t " minOccurs="0" maxOccurs="unbounded"/>
<xs:element name="annotation" type=" textAnnotation_t " minOccurs="0" maxOccurs="unbounded"/>
</xs:sequence>
<xs:attribute name="type" type=" xs:string " use="optional"/>
<xs:attribute name="units" type=" xs:string " use="optional"/>
<xs:attribute name="name" type=" xs:string " use="optional"/>
</xs:complexType>