VRBL: Item Attributes

You can add attributes to an item.

Elements

Use the AdditionalItemProperty element to model this information:

Name (Path)CardinalityDescription
Item Attributes0..nA group of elements providing information about properties of the goods and services invoiced.
Item Attribute - Name1..1The name of the attribute or property of the item.
Item Attribute - Value1..1The value of the attribute or property of the item.

Example

<Invoice>
    <!-- code omitted for clarity -->
    <cac:InvoiceLine>
        <!-- code omitted for clarity -->
        <cac:AdditionalItemProperty>
            <cbc:Name>Color</cbc:Name>
            <cbc:Value>Black</cbc:Value>
        </cac:AdditionalItemProperty>
        <!-- code omitted for clarity -->
    </cac:InvoiceLine>
</Invoice>