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
The attribute Issuer is defined as xs:string in Attribute, AttributeDesignator, AttributeAssignment, AttributeAssignmentExpression, and MissingAttributeDetail types. Like in #42, xs:string allows any XML text to be used as Issuer, including an empty string "" or a string starting/ending with whitespace(s) or containing a sequence of multiple whitespaces, or a string filled with whitespaces.
More appropriate types like xs:token or a new non-empty non-whitespace string type, i.e. using pattern [^\s]+, could avoid that.
The text was updated successfully, but these errors were encountered:
The attribute Issuer is defined as
xs:string
in Attribute, AttributeDesignator, AttributeAssignment, AttributeAssignmentExpression, and MissingAttributeDetail types. Like in #42,xs:string
allows any XML text to be used as Issuer, including an empty string "" or a string starting/ending with whitespace(s) or containing a sequence of multiple whitespaces, or a string filled with whitespaces.More appropriate types like
xs:token
or a new non-empty non-whitespace string type, i.e. using pattern[^\s]+
, could avoid that.The text was updated successfully, but these errors were encountered: