Workday Finance · Schema

JournalEntryCreate

AccountingCloudEnterpriseERPFinanceFinancial Management

Properties

Name Type Description
period string Financial period identifier
postingDate string
memo string
lines array
View JSON Schema on GitHub

JSON Schema

workday-finance-journalentrycreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/JournalEntryCreate",
  "title": "JournalEntryCreate",
  "type": "object",
  "required": [
    "period",
    "lines"
  ],
  "properties": {
    "period": {
      "type": "string",
      "description": "Financial period identifier"
    },
    "postingDate": {
      "type": "string",
      "format": "date"
    },
    "memo": {
      "type": "string"
    },
    "lines": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/JournalEntryLine"
      }
    }
  }
}