VRBL: Item Attributes
You can add attributes to an item.
Elements
Use the AdditionalItemProperty element to model this information:
Name (Path) | Cardinality | Description |
---|---|---|
Item Attributes | 0..n | A group of elements providing information about properties of the goods and services invoiced. |
Item Attribute - Name | 1..1 | The name of the attribute or property of the item. |
Item Attribute - Value | 1..1 | The 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>
Updated 20 days ago