Workday Financials · Schema

AccountingJournal

AccountingCloud ERPFinancial ManagementProcurement

Properties

Name Type Description
id string Workday ID (WID) for the accounting journal
name string Name of the accounting journal
journalType string Type of accounting journal
active boolean Whether the journal is active
View JSON Schema on GitHub

JSON Schema

workday-financials-accountingjournal-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AccountingJournal",
  "title": "AccountingJournal",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Workday ID (WID) for the accounting journal"
    },
    "name": {
      "type": "string",
      "description": "Name of the accounting journal"
    },
    "journalType": {
      "type": "string",
      "description": "Type of accounting journal"
    },
    "active": {
      "type": "boolean",
      "description": "Whether the journal is active"
    }
  }
}