Properties
| Name | Type | Description |
|---|---|---|
| id | string | Workday ID (WID) for the revenue contract |
| contractNumber | string | Contract reference number |
| customer | object | |
| startDate | string | Contract start date |
| endDate | string | Contract end date |
| totalContractValue | number | Total contract value |
| currency | object | |
| status | string | Current contract status |
| revenueRecognitionStandard | string | Revenue recognition standard applied |
| company | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/RevenueContract",
"title": "RevenueContract",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Workday ID (WID) for the revenue contract"
},
"contractNumber": {
"type": "string",
"description": "Contract reference number"
},
"customer": {
"$ref": "#/components/schemas/CustomerRef"
},
"startDate": {
"type": "string",
"format": "date",
"description": "Contract start date"
},
"endDate": {
"type": "string",
"format": "date",
"description": "Contract end date"
},
"totalContractValue": {
"type": "number",
"format": "double",
"description": "Total contract value"
},
"currency": {
"$ref": "#/components/schemas/CurrencyRef"
},
"status": {
"type": "string",
"enum": [
"Draft",
"Active",
"Completed",
"Canceled"
],
"description": "Current contract status"
},
"revenueRecognitionStandard": {
"type": "string",
"enum": [
"ASC_606",
"IFRS_15"
],
"description": "Revenue recognition standard applied"
},
"company": {
"$ref": "#/components/schemas/CompanyRef"
}
}
}