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
current "NDAttributes.xsd" invalidate .xml files containing $, (, )
Validating xml file against "./XML_schema/NDAttributes.xsd"
Attri_ADsim.xml:9: element Attribute: Schemas validity error : Element 'Attribute', attribute 'source': '$(P)cam1:Manufacturer_RBV' is not a valid value of the union type 'type_source'.
After discussing with @prjemian , propose the following changes to include $, (, ),
<xs:restriction base="xs:string"> <!-- Changed from xs:NMTOKEN to xs:string -->
<xs:pattern value="[\w_\-:.;\$\(\)]+([.][A-Z0-9]+)?"/> <!-- include $, (, ), -->
</xs:restriction>
</xs:simpleType>
The text was updated successfully, but these errors were encountered:
current "NDAttributes.xsd" invalidate .xml files containing $, (, )
After discussing with @prjemian , propose the following changes to include $, (, ),
The text was updated successfully, but these errors were encountered: