Item Attributes

You can add attributes to an item.

Use the AdditionalItemProperty subelement of the Item element to model this information.

Elements

ElementDescription
Invoice/InvoiceLine/Item/AdditionalItemProperty/NameThe name of the attribute.
Invoice/InvoiceLine/Item/AdditionalItemProperty/ValueThe value of the attribute.

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>