Workday Financials · Schema

BillingSchedule

AccountingCloud ERPFinancial ManagementProcurement

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

JSON Schema

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