Identifies the XML Document Object Model (DOM) node for which the error message override is defined.
xsd:stringThe match attribute is a required attribute of the override element.
The value of the match attribute must be a valid XPath expression that identifies the XML DOM node.
The following is an example of the match attribute as it is used in the override element:
<xsf:schemaErrorMessages>
   <xsf:override
      match="/sampleData/number">
      <xsf:errorMessage
         shortMessage="Invalid Number.">
            The value entered must be a valid number.
      </xsf:errorMessage>
   </xsf:override>
</xsf:schemaErrorMessages>