Properties
| Name | Type | Description |
|---|---|---|
| id | string | Workday ID (WID) for the expense item |
| expenseItemType | string | Type of expense (e.g., Airfare, Hotel, Meals) |
| amount | number | Expense amount |
| currency | object | |
| date | string | Date the expense was incurred |
| memo | string | Description of the expense |
| receipt | object | |
| costCenter | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ExpenseItem",
"title": "ExpenseItem",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Workday ID (WID) for the expense item"
},
"expenseItemType": {
"type": "string",
"description": "Type of expense (e.g., Airfare, Hotel, Meals)"
},
"amount": {
"type": "number",
"format": "double",
"description": "Expense amount"
},
"currency": {
"$ref": "#/components/schemas/CurrencyRef"
},
"date": {
"type": "string",
"format": "date",
"description": "Date the expense was incurred"
},
"memo": {
"type": "string",
"description": "Description of the expense"
},
"receipt": {
"$ref": "#/components/schemas/ReceiptRef"
},
"costCenter": {
"$ref": "#/components/schemas/CostCenterRef"
}
}
}