You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
User Story
Add a CoMPAS Extension to store labels for a SCL File to make filtering easier if a lot of SCL Files are stored in the SCL Data Service.
Additional information
The idea is the add a extra Element 'Labels' to the CoMPAS SCL Extension. This Element will be added to the private section of the SCL Element (beside the SclName and SclFileType)
<xs:simpleType name="tCompasLabel">
<xs:annotation>
<xs:documentation>Label added to the SCL File to filter on</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:normalizedString">
<xs:minLength value="1"/>
<xs:pattern value="[A-Za-z][0-9A-Za-z_-]*"/>
</xs:restriction>
</xs:simpleType>
<xs:complexType name="tCompasLabels">
<xs:annotation>
<xs:documentation>List of Labels belonging to the SCL File to filter on with a maximum number of labels</xs:documentation>
</xs:annotation>
<xs:sequence>
<xs:element name="Label" type="tCompasLabel" minOccurs="0" maxOccurs="20"/>
</xs:sequence>
</xs:complexType>
<xs:element name="Labels" type="tCompasLabels"/>
User Story
Add a CoMPAS Extension to store labels for a SCL File to make filtering easier if a lot of SCL Files are stored in the SCL Data Service.
Additional information
The idea is the add a extra Element 'Labels' to the CoMPAS SCL Extension. This Element will be added to the private section of the SCL Element (beside the SclName and SclFileType)
Example of Private Section in SCL XML File
The text was updated successfully, but these errors were encountered: