Sage · Schema

SalesInvoice

AccountingBusiness ManagementCloud SoftwareERPPayrollHR

Properties

Name Type Description
id string
displayed_as string
date string
due_date string
reference string
status object
contact object
line_items array
net_amount number
tax_amount number
total_amount number
outstanding_amount number
currency object
View JSON Schema on GitHub

JSON Schema

sage-salesinvoice-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SalesInvoice",
  "title": "SalesInvoice",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "displayed_as": {
      "type": "string"
    },
    "date": {
      "type": "string",
      "format": "date"
    },
    "due_date": {
      "type": "string",
      "format": "date"
    },
    "reference": {
      "type": "string"
    },
    "status": {
      "$ref": "#/components/schemas/StatusRef"
    },
    "contact": {
      "$ref": "#/components/schemas/ContactRef"
    },
    "line_items": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/LineItem"
      }
    },
    "net_amount": {
      "type": "number"
    },
    "tax_amount": {
      "type": "number"
    },
    "total_amount": {
      "type": "number"
    },
    "outstanding_amount": {
      "type": "number"
    },
    "currency": {
      "$ref": "#/components/schemas/CurrencyRef"
    }
  }
}