Workday Financials · Schema

JournalLine

AccountingCloud ERPFinancial ManagementProcurement

Properties

Name Type Description
ledgerAccount object
debitAmount number Debit amount for this line
creditAmount number Credit amount for this line
memo string Line-level memo
costCenter object
View JSON Schema on GitHub

JSON Schema

workday-financials-journalline-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/JournalLine",
  "title": "JournalLine",
  "type": "object",
  "properties": {
    "ledgerAccount": {
      "$ref": "#/components/schemas/LedgerAccountRef"
    },
    "debitAmount": {
      "type": "number",
      "format": "double",
      "description": "Debit amount for this line"
    },
    "creditAmount": {
      "type": "number",
      "format": "double",
      "description": "Credit amount for this line"
    },
    "memo": {
      "type": "string",
      "description": "Line-level memo"
    },
    "costCenter": {
      "$ref": "#/components/schemas/CostCenterRef"
    }
  }
}