Properties
| Name | Type | Description |
|---|---|---|
| id | string | Workday ID (WID) for the accounting period |
| name | string | Period name (e.g., January 2026) |
| startDate | string | Period start date |
| endDate | string | Period end date |
| status | string | Period status |
| fiscalYear | string | Fiscal year reference |
| company | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/AccountingPeriod",
"title": "AccountingPeriod",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Workday ID (WID) for the accounting period"
},
"name": {
"type": "string",
"description": "Period name (e.g., January 2026)"
},
"startDate": {
"type": "string",
"format": "date",
"description": "Period start date"
},
"endDate": {
"type": "string",
"format": "date",
"description": "Period end date"
},
"status": {
"type": "string",
"enum": [
"Open",
"Closed",
"Locked"
],
"description": "Period status"
},
"fiscalYear": {
"type": "string",
"description": "Fiscal year reference"
},
"company": {
"$ref": "#/components/schemas/CompanyRef"
}
}
}