Properties
| Name | Type | Description |
|---|---|---|
| type | string | The type of the invoice item group. |
| type_description | string | The description of the type of the invoice item group. |
| type_description_translated | string | The translated description of the type of the invoice item group. |
| instance_description | string | The identifier of the invoice item group. |
| product_vat_exclusive | object | The unit item price excluding VAT. |
| product_vat_inclusive | object | The unit item price including VAT. |
| item | array | The invoice items in the group. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/InvoiceItemGroup",
"title": "InvoiceItemGroup",
"type": "object",
"properties": {
"type": {
"type": "string",
"description": "The type of the invoice item group.",
"readOnly": true,
"writeOnly": false
},
"type_description": {
"type": "string",
"description": "The description of the type of the invoice item group.",
"readOnly": true,
"writeOnly": false
},
"type_description_translated": {
"type": "string",
"description": "The translated description of the type of the invoice item group.",
"readOnly": true,
"writeOnly": false
},
"instance_description": {
"type": "string",
"description": "The identifier of the invoice item group.",
"readOnly": true,
"writeOnly": false
},
"product_vat_exclusive": {
"type": "object",
"description": "The unit item price excluding VAT.",
"readOnly": true,
"writeOnly": false,
"$ref": "#/components/schemas/Amount"
},
"product_vat_inclusive": {
"type": "object",
"description": "The unit item price including VAT.",
"readOnly": true,
"writeOnly": false,
"$ref": "#/components/schemas/Amount"
},
"item": {
"type": "array",
"description": "The invoice items in the group.",
"readOnly": true,
"writeOnly": false,
"items": {
"$ref": "#/components/schemas/InvoiceItem"
}
}
}
}