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
View JSON Schema on GitHub

JSON Schema

workday-financials-revenuerecognitionevent-schema.json Raw ↑
{
  "$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"
    }
  }
}