Workday Finance · Schema

JournalEntryLine

AccountingCloudEnterpriseERPFinanceFinancial Management

Properties

Name Type Description
lineOrder integer
account object
debitAmount number
creditAmount number
currency string
memo string
worktags array
View JSON Schema on GitHub

JSON Schema

workday-finance-journalentryline-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/JournalEntryLine",
  "title": "JournalEntryLine",
  "type": "object",
  "properties": {
    "lineOrder": {
      "type": "integer"
    },
    "account": {
      "$ref": "#/components/schemas/ResourceReference"
    },
    "debitAmount": {
      "type": "number",
      "format": "double"
    },
    "creditAmount": {
      "type": "number",
      "format": "double"
    },
    "currency": {
      "type": "string"
    },
    "memo": {
      "type": "string"
    },
    "worktags": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ResourceReference"
      }
    }
  }
}