Properties
| Name | Type | Description |
|---|---|---|
| id | string | Workday ID (WID) for the revenue schedule |
| revenueContract | object | |
| scheduledDate | string | Scheduled recognition date |
| amount | number | Revenue amount to be recognized |
| currency | object | |
| status | string | Schedule status |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/RevenueSchedule",
"title": "RevenueSchedule",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Workday ID (WID) for the revenue schedule"
},
"revenueContract": {
"$ref": "#/components/schemas/ContractRef"
},
"scheduledDate": {
"type": "string",
"format": "date",
"description": "Scheduled recognition date"
},
"amount": {
"type": "number",
"format": "double",
"description": "Revenue amount to be recognized"
},
"currency": {
"$ref": "#/components/schemas/CurrencyRef"
},
"status": {
"type": "string",
"enum": [
"Scheduled",
"Recognized",
"Reversed"
],
"description": "Schedule status"
}
}
}