Skip to content

Commit

Permalink
Allow digits in communication class type definition
Browse files Browse the repository at this point in the history
Our company vendor prefix "N98" is not allowed. The XSD prohibits the usage of digits.
  • Loading branch information
cmuench authored Jan 27, 2017
1 parent 02e1c6b commit ced639a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:string">
<xs:pattern value="[a-zA-Z\\]+" />
<xs:pattern value="[a-zA-Z]+[a-zA-Z0-9\\]+" />
<xs:minLength value="4" />
</xs:restriction>
</xs:simpleType>
Expand Down

0 comments on commit ced639a

Please sign in to comment.