{ "$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" } } } }