Workday Financials · Schema

CustomerInvoice

AccountingCloud ERPFinancial ManagementProcurement

Properties

Name Type Description
id string Workday ID (WID) for the customer invoice
invoiceNumber string Invoice number
customer object
invoiceDate string Date on the invoice
dueDate string Payment due date
totalAmount number Total invoice amount
currency object
status string Current invoice status
company object
View JSON Schema on GitHub

JSON Schema

workday-financials-customerinvoice-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CustomerInvoice",
  "title": "CustomerInvoice",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Workday ID (WID) for the customer invoice"
    },
    "invoiceNumber": {
      "type": "string",
      "description": "Invoice number"
    },
    "customer": {
      "$ref": "#/components/schemas/CustomerRef"
    },
    "invoiceDate": {
      "type": "string",
      "format": "date",
      "description": "Date on the invoice"
    },
    "dueDate": {
      "type": "string",
      "format": "date",
      "description": "Payment due date"
    },
    "totalAmount": {
      "type": "number",
      "format": "double",
      "description": "Total invoice amount"
    },
    "currency": {
      "$ref": "#/components/schemas/CurrencyRef"
    },
    "status": {
      "type": "string",
      "enum": [
        "Draft",
        "Approved",
        "Paid",
        "Overdue",
        "Canceled"
      ],
      "description": "Current invoice status"
    },
    "company": {
      "$ref": "#/components/schemas/CompanyRef"
    }
  }
}