Page last modified 11:57, 2 Apr 2014 by juhako

cvc-mininclusive-valid

    Table of contents
    No headers

     

    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-minInclusive-valid: Value ''{0}'' is not facet-valid with respect to minInclusive ''{1}'' for type ''{2}''.

    Error description in schema standard: http://www.w3.org/TR/2006/WD-xmlschema11-2-20060217/datatypes.html#cvc-minInclusive-valid

    Possible causes for this error:

    • Element value is less than the allowed minimum value.

     

    An example

    <InstdAmt Ccy="CCY">-3.14159</InstdAmt>

     

     

    Error message: Error cvc-minInclusive-valid: Value '-3.14159' is not facet-valid with respect to minInclusive '0.0' for type 'ActiveOrHistoricCurrencyAndAmount_SimpleType'.

    How to fix: This issue can be fixed by providing a value above the defined minInclusive value, in this case larger than '0.0'.

    <InstdAmt Ccy="CCY">3.14159</InstdAmt>

     
    Menu