Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Main #368

Merged
merged 2 commits into from
Jun 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions scl-extension/src/main/resources/xsd/SCL_CoMPAS.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ SPDX-License-Identifier: Apache-2.0
Version 1.6 Release 2023/12/06
Version 1.7 Release 2024/02/07
Version 1.8 Release 2024/05/16
Version 1.9 Release 2024/06/25
</xs:documentation>
</xs:annotation>

Expand Down Expand Up @@ -142,6 +143,7 @@ SPDX-License-Identifier: Apache-2.0
<xs:enumeration value="VIRT"/>
<xs:enumeration value="ICT"/>
<xs:enumeration value="SYN"/>
<xs:enumeration value="OND"/>
<xs:enumeration value="ADEFINIR"/>
<xs:enumeration value="IEDTEST"/>
</xs:restriction>
Expand Down Expand Up @@ -399,6 +401,25 @@ SPDX-License-Identifier: Apache-2.0
<xs:attribute name="Direction" type="tCompasTopoNodeDirection" use="optional"/>
</xs:complexType>

<xs:simpleType name="tCompasLNodeStatus">
<xs:annotation>
<xs:documentation>Status of the LNode on or off</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:Name">
<xs:enumeration value="on">
<xs:annotation>
<xs:documentation>IED/LD/LN.Mod associated to LNode has to be turned on</xs:documentation>
</xs:annotation>
</xs:enumeration>
<xs:enumeration value="off">
<xs:annotation>
<xs:documentation>IED/LD/LN.Mod associated to LNode has to be turned off</xs:documentation>
</xs:annotation>
</xs:enumeration>
</xs:restriction>
</xs:simpleType>

<xs:element name="LNodeStatus" type="tCompasLNodeStatus"/>
<xs:element name="SclName" type="tCompasSclName"/>
<xs:element name="SclFileType" type="tCompasSclFileType"/>
<xs:element name="Labels" type="tCompasLabels"/>
Expand Down
Loading