Properties
| Name | Type | Description |
|---|---|---|
| id | string | Workday ID (WID) for the billing schedule |
| revenueContract | object | |
| billingDate | string | Scheduled billing date |
| amount | number | Billing amount |
| currency | object | |
| status | string | Billing schedule status |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/BillingSchedule",
"title": "BillingSchedule",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Workday ID (WID) for the billing schedule"
},
"revenueContract": {
"$ref": "#/components/schemas/ContractRef"
},
"billingDate": {
"type": "string",
"format": "date",
"description": "Scheduled billing date"
},
"amount": {
"type": "number",
"format": "double",
"description": "Billing amount"
},
"currency": {
"$ref": "#/components/schemas/CurrencyRef"
},
"status": {
"type": "string",
"enum": [
"Scheduled",
"Invoiced",
"Canceled"
],
"description": "Billing schedule status"
}
}
}