docs: fix total descriptions across docs (#14366)

This commit is contained in:
Shahed Nasser
2025-12-19 15:31:28 +02:00
committed by GitHub
parent 365468d3da
commit 797878af26
33 changed files with 1063 additions and 815 deletions

View File

@@ -143,44 +143,48 @@ properties:
original_total:
type: number
title: original_total
description: The item's original total.
description: The line item's original total before discounts, including taxes.
original_subtotal:
type: number
title: original_subtotal
description: The item's original subtotal.
description: The line item's original subtotal before discounts, excluding taxes.
original_tax_total:
type: number
title: original_tax_total
description: The item's original tax total.
description: The line item's original tax total before discounts.
item_total:
type: number
title: item_total
description: The item's item total.
description: The line item's total after discounts, including taxes.
item_subtotal:
type: number
title: item_subtotal
description: The item's item subtotal.
description: The line item's subtotal before discounts, excluding taxes.
item_tax_total:
type: number
title: item_tax_total
description: The item's item tax total.
description: The line item's tax total after discounts.
total:
type: number
title: total
description: The item's total.
description: The line item's total after discounts, including taxes.
subtotal:
type: number
title: subtotal
description: The item's subtotal.
description: The line item's subtotal before discounts, excluding taxes.
tax_total:
type: number
title: tax_total
description: The item's tax total.
description: The line item's tax total after discounts.
discount_total:
type: number
title: discount_total
description: The item's discount total.
description: >-
The total amount of discounts applied to the line item, including the tax
portion of discounts.
discount_tax_total:
type: number
title: discount_tax_total
description: The item's discount tax total.
description: >-
The total amount of discounts applied to the line item's tax. Represents
the tax portion of discounts.