ResultOfVerification Field #948
-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
The error in your XML is that The suggestion in the second part of the message is a bit misleading: the schema validation sees the The information indicated in the "xsdSequenceOrder" property in fields.json can help you determine the right sequence for the various XML elements. |
Beta Was this translation helpful? Give feedback.


The error in your XML is that
cac:Attachmentmust be beforecac:IssuerPartyThis can been seen in the schema at:
https://github.com/OP-TED/eForms-SDK/blob/develop/schemas/common/UBL-CommonAggregateComponents-2.3.xsd#L2159
The suggestion in the second part of the message is a bit misleading: the schema validation sees the
cac:IssuerPartyfollowed bycac:Attachmentand indicates that the only element allowed aftercac:IssuerPartyiscac:ResultOfVerification.But
cac:ResultOfVerificationis not used in eForms.This message comes from the standard XML library, so we don't have any control over it.
The information indicated in the "xsdSequenceOrder" property in fields.json can help you determi…