Workday · Schema

AccountingJournal

Cloud ComputingEnterprise SoftwareFinancial ManagementHCMSoftware-as-a-Service

Properties

Name Type Description
id string
descriptor string
journalNumber string
accountingDate string
status string
totalDebitAmount number
totalCreditAmount number
View JSON Schema on GitHub

JSON Schema

financialManagement-accounting-journal-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "AccountingJournal",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "descriptor": {
      "type": "string"
    },
    "journalNumber": {
      "type": "string"
    },
    "accountingDate": {
      "type": "string"
    },
    "status": {
      "type": "string"
    },
    "totalDebitAmount": {
      "type": "number"
    },
    "totalCreditAmount": {
      "type": "number"
    }
  }
}