- Knowledgebase
- XML Schema
- Cvc-minexclusive-valid
-
Glossary
-
XML / ISO 20022 Standard
-
ISO 20022 Messages
-
XML Schema
- Miscellaneous
- Attribute
- Closing Tag
- Comment
- Content
- Cvc-complex-type
- Cvc-elt
- Cvc-id
- Cvc-identity-constraint
- Cvc-minexclusive-valid
- Cvc-mininclusive-valid
- Cvc-type
- Cvc-totaldigits-valid
- Cvc-attribute
- Cvc-datatype-valid
- Maximum Length
- Cvc-enumeration-valid
- Cvc-fractiondigits-valid
- Cvc-length-valid
- Cvc-maxexclusive-valid
- Cvc-maxinclusive-valid
- Cvc-maxlength-valid
- Cvc-minlength-valid
- Cvc-pattern-valid
- Element Value
- Encoding
- Length
- Mandatory element
- Missing
- Missing Tag
- Missing Child Element
- MIXD
- Root
- Unsupported Characters
- UTF-8
- Value
- Wrong Declaration
-
EPC SEPA
-
CGI-MP
-
US ACH (Nacha)
-
SWIFT MT
-
Finvoice
-
Bank-Specific
-
XMLdation Service Guides
-
Studio Guide
-
Simulator
cvc-minexclusive-valid
Notice! This page describes the nature of the error using a hypothetical example and not the erroneous data of the input test file. You should however be able to apply this information to your error case.
General description of the error:
The format of the error message: cvc-minExclusive-valid: Value ''{0}'' is not facet-valid with respect to minExclusive ''{1}'' for type ''{2}''.
Error description in schema standard: http://www.w3.org/TR/2006/WD-xm.../datatypes.html#cvc-minExclusive-valid
Possible causes for this error:
- Value given for element is too small compared to allowed minimum value. minExclusive specifies the lower bounds for numeric values: the value must be greater than this value.
An example
<XchgRate>-3.1415926535</XchgRate>
Error message: Error cvc-minExclusive-valid: Value '-3.1415926535' is not facet-valid with respect to minExclusive '0.0' for type 'BaseOneRate'.
How to fix: The minExclusive value is "0.0" so the accepted value must be greater than "0.0". For example the value "0.5" is accepted.
<XchgRate>0.5</XchgRate>