AttributeNotUnique

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: Attribute \"{1}\" was already specified for element \"{0}\".

Error description in schema standard: http://www.w3.org/TR/2004/REC-xml-20...4/#uniqattspec

Possible causes for this error:

  • Attribute is declared twice within one element

Example

<InstdAmt Ccy:"JPY" Ccy:"JPY">10000000</InstdAmt>

Error message: Attribute "Ccy" was already specified for element "InstdAmt".

How to fix: Remove duplicate specification

<InstdAmt Ccy="JPY">10000000</InstdAmt>