Sage · Schema

LedgerAccount

AccountingBusiness ManagementCloud SoftwareERPPayrollHR

Properties

Name Type Description
id string
displayed_as string
name string
nominal_code string
ledger_account_type object
is_control_account boolean
View JSON Schema on GitHub

JSON Schema

sage-ledgeraccount-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LedgerAccount",
  "title": "LedgerAccount",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "displayed_as": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "nominal_code": {
      "type": "string"
    },
    "ledger_account_type": {
      "$ref": "#/components/schemas/TypeRef"
    },
    "is_control_account": {
      "type": "boolean"
    }
  }
}