Workday Financials · Schema

SupplierInvoice

AccountingCloud ERPFinancial ManagementProcurement

Properties

Name Type Description
id string Workday ID (WID) for the supplier invoice
invoiceNumber string Invoice number
supplier 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-supplierinvoice-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SupplierInvoice",
  "title": "SupplierInvoice",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Workday ID (WID) for the supplier invoice"
    },
    "invoiceNumber": {
      "type": "string",
      "description": "Invoice number"
    },
    "supplier": {
      "$ref": "#/components/schemas/SupplierRef"
    },
    "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",
        "Canceled"
      ],
      "description": "Current invoice status"
    },
    "company": {
      "$ref": "#/components/schemas/CompanyRef"
    }
  }
}