CorrectionData (Extn)

Use this Extension to model information about corrections.

Elements

Name (Path)CardinalityDescription
Document Level Correction Data (Invoice//InvoiceExtension/CorrectionData)0..1A group holding information about the document level correction data
Correction Method (Invoice//InvoiceExtension/CorrectionData/CorrectionMethod)1..1The codified method used for the correction.
Correction Reason (Invoice//InvoiceExtension/CorrectionData/CorrectionReason)1..1An extension element used to provide the reason for the cancellation.
Invoice Period Description(Invoice//InvoiceExtension/CorrectionData/InvoicePeriodDescription)1..1An element describing the invoicing period.

Country-Specific Configurations

Example

<ubl:Invoice>
    <!-- Code omitted for clarity -->
    <ext:UBLExtensions>
        <ext:UBLExtension>
            <ext:ExtensionContent>
                <vrbl:InvoiceExtension>
                    <vrbl:CorrectionData>
                        <vrbl:CorrectionMethod>VRBL:PL:2</vrbl:CorrectionMethod>
                        <vrbl:CorrectionReason>A discount of 50,000 due to the purchase volume.</vrbl:CorrectionReason>
                        <!-- Free-text period description -->
                        <vrbl:InvoicePeriodDescription>First half of 2026</vrbl:InvoicePeriodDescription>
                    </vrbl:CorrectionData>
                    <!-- Code omitted for clarity -->
                </vrbl:InvoiceExtension>
            </ext:ExtensionContent>
        </ext:UBLExtension>
    </ext:UBLExtensions>
</ubl:Invoice>