Skip to content

Commit

Permalink
feat(366): update SCL_COMPAS.xsd file
Browse files Browse the repository at this point in the history
- add compasLnodeStatus element

Signed-off-by: gleizesDor <115622893+gleizesDor@users.noreply.github.com>
  • Loading branch information
gleizesDor committed Jun 25, 2024
1 parent 6a4fd53 commit 2a292fd
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion scl-extension/src/main/resources/xsd/SCL_CoMPAS.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,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 +400,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 All @@ -410,4 +430,4 @@ SPDX-License-Identifier: Apache-2.0
<xs:element name="SystemVersion" type="tCompasSystemVersion"/>
<xs:element name="Function" type="tCompasFunction"/>
<xs:element name="Topo" type="tCompasTopo"/>
</xs:schema>
</xs:schema>

0 comments on commit 2a292fd

Please sign in to comment.