http://dbai.tuwien.ac.at/proj/arte/GES
element TaskType

Documentation

A task type is a certain type of work that can be scheduled within certain time windows and requires at least one employee. If multiple employees are required to complete a task, it is assumed that they have to work on it at the same time. Similarly, it is not possible to split work on a task across multiple employees (e.g. employee A works the first 30 minutes of a 1 hour task and employee B the second 30 minutes). Employees assigned to a task have to be present for the whole length of the task (if it is split into multiple parts, the same employees have to work on each part).

Properties
This component is not nillable.

Model
<TaskType
  ID = ID>
(Name? ; Prerequisites ; IsWork? ; ReAcquaintancePeriod?)
</TaskType>


Nested Element Summary
xs:booleanIsWork
          If false, this task does not count as working time, just like a free slot (use e.g to schedule vacations), default: true.  
xs:tokenName
          The name of the task (not necessarily unique). 
 Prerequisites
          References task types by ID that have to be completed before this task type can be scheduled. 
TimeSpanReAcquaintancePeriod
          Resting time needed after this task to resume work on another task.  

Attribute Summary
 IDID
          A unique ID for this task. 

Attribute Detail

ID

A unique ID for this task. This is needed to be able to reference this task in other constraints.

Type:
ID
Use:
required
Form:
unqualified

Source
<xs:element name="TaskType">
<xs:complexType>
<xs:all>
<xs:element minOccurs="0" name="Name" type="xs:token">
</xs:element>
<xs:element minOccurs="0" name="Prerequisites">
<xs:complexType>
<xs:choice maxOccurs="unbounded">
<xs:element name="Task" type="ID">
</xs:element>
</xs:choice>
</xs:complexType>
</xs:element>
<xs:element minOccurs="0" name="IsWork" type="xs:boolean">
</xs:element>
<xs:element minOccurs="0" name="ReAcquaintancePeriod" type="TimeSpan">
</xs:element>
</xs:all>
<xs:attribute name="ID" type="ID" use="required">
</xs:attribute>
</xs:complexType>
</xs:element>


Submit a bug or a feature.
Created by xsddoc, a sub project of xframe, hosted at http://xframe.sourceforge.net.