{ "$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" } } }