Workday Financials · Schema

ExpenseReportCreate

AccountingCloud ERPFinancial ManagementProcurement

Properties

Name Type Description
memo string Expense report memo or description
expenseDate string Primary expense date
company object
currency object
View JSON Schema on GitHub

JSON Schema

workday-financials-expensereportcreate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ExpenseReportCreate",
  "title": "ExpenseReportCreate",
  "type": "object",
  "required": [
    "memo",
    "expenseDate",
    "company"
  ],
  "properties": {
    "memo": {
      "type": "string",
      "description": "Expense report memo or description"
    },
    "expenseDate": {
      "type": "string",
      "format": "date",
      "description": "Primary expense date"
    },
    "company": {
      "$ref": "#/components/schemas/CompanyRef"
    },
    "currency": {
      "$ref": "#/components/schemas/CurrencyRef"
    }
  }
}