Sage · Schema

LineItem

AccountingBusiness ManagementCloud SoftwareERPPayrollHR

Properties

Name Type Description
id string
description string
quantity number
unit_price number
net_amount number
tax_amount number
total_amount number
ledger_account object
tax_rate object
View JSON Schema on GitHub

JSON Schema

sage-lineitem-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LineItem",
  "title": "LineItem",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "quantity": {
      "type": "number"
    },
    "unit_price": {
      "type": "number"
    },
    "net_amount": {
      "type": "number"
    },
    "tax_amount": {
      "type": "number"
    },
    "total_amount": {
      "type": "number"
    },
    "ledger_account": {
      "$ref": "#/components/schemas/LedgerAccountRef"
    },
    "tax_rate": {
      "$ref": "#/components/schemas/TaxRateRef"
    }
  }
}