Properties
| Name | Type | Description |
|---|---|---|
| id | string | Workday ID (WID) for the expense policy |
| name | string | Expense policy name |
| description | string | Policy description |
| active | boolean | Whether the policy is currently active |
| maxAmount | number | Maximum allowable amount per expense |
| requiresReceipt | boolean | Whether receipts are required |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ExpensePolicy",
"title": "ExpensePolicy",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Workday ID (WID) for the expense policy"
},
"name": {
"type": "string",
"description": "Expense policy name"
},
"description": {
"type": "string",
"description": "Policy description"
},
"active": {
"type": "boolean",
"description": "Whether the policy is currently active"
},
"maxAmount": {
"type": "number",
"format": "double",
"description": "Maximum allowable amount per expense"
},
"requiresReceipt": {
"type": "boolean",
"description": "Whether receipts are required"
}
}
}