Workday Financials · Schema
RevenueRecognitionEvent
AccountingCloud ERPFinancial ManagementProcurement
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Workday ID (WID) for the recognition event |
| revenueContract | object | |
| recognitionDate | string | Date revenue was recognized |
| amount | number | Recognized revenue amount |
| currency | object | |
| recognitionType | string | Type of recognition event |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/RevenueRecognitionEvent",
"title": "RevenueRecognitionEvent",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Workday ID (WID) for the recognition event"
},
"revenueContract": {
"$ref": "#/components/schemas/ContractRef"
},
"recognitionDate": {
"type": "string",
"format": "date",
"description": "Date revenue was recognized"
},
"amount": {
"type": "number",
"format": "double",
"description": "Recognized revenue amount"
},
"currency": {
"$ref": "#/components/schemas/CurrencyRef"
},
"recognitionType": {
"type": "string",
"description": "Type of recognition event"
}
}
}