Skip to content

Commit

Permalink
add module and devicecondition
Browse files Browse the repository at this point in the history
  • Loading branch information
rainer-prosi committed Oct 1, 2024
1 parent a69b67e commit 83dbabc
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions xjdf.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -604,6 +604,14 @@
<xs:enumeration value="Fatal"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="DeviceCondition">
<xs:restriction base="xs:string">
<xs:enumeration value="OK"/>
<xs:enumeration value="NeedsAttention"/>
<xs:enumeration value="Failure"/>
<xs:enumeration value="OffLine"/>
</xs:restriction>
</xs:simpleType>
<xs:simpleType name="DeviceStatus">
<xs:restriction base="xs:string">
<xs:enumeration value="Cleanup"/>
Expand Down Expand Up @@ -898,8 +906,10 @@
<xs:element maxOccurs="unbounded" minOccurs="0" ref="Event"/>
<xs:element maxOccurs="2" minOccurs="0" ref="FileSpec"/>
<xs:element maxOccurs="unbounded" minOccurs="0" ref="JobPhase"/>
<xs:element maxOccurs="unbounded" minOccurs="0" ref="ModuleInfo"/>
</xs:sequence>
<xs:attribute name="CounterUnit" type="xs:NMTOKEN" use="optional"/>
<xs:attribute name="DeviceCondition" type="DeviceCondition" use="optional"/>
<xs:attribute name="EndTime" type="xs:dateTime" use="optional"/>
<xs:attribute name="HourCounter" type="xs:duration" use="optional"/>
<xs:attribute name="IdleStartTime" type="xs:dateTime" use="optional"/>
Expand Down Expand Up @@ -991,6 +1001,18 @@
<xs:anyAttribute namespace="##other" processContents="lax"/>
</xs:complexType>
</xs:element>
<xs:element name="ModuleInfo">
<xs:complexType>
<xs:attribute name="HourCounter" type="xs:duration" use="optional"/>
<xs:attribute name="ModuleCondition" type="DeviceCondition" use="optional"/>
<xs:attribute name="ModuleID" type="xs:NMTOKEN" use="required"/>
<xs:attribute name="ProductionCounter" type="xs:float" use="optional"/>
<xs:attribute name="Status" type="DeviceStatus" use="required"/>
<xs:attribute name="StatusDetails" type="xs:string" use="optional"/>
<xs:attribute name="TotalProductionCounter" type="xs:float" use="optional"/>
<xs:anyAttribute namespace="##other" processContents="lax"/>
</xs:complexType>
</xs:element>
<xs:element name="Activity">
<xs:complexType>
<xs:sequence>
Expand Down

0 comments on commit 83dbabc

Please sign in to comment.