Workday Finance · Schema

SupplierInvoice

AccountingCloudEnterpriseERPFinanceFinancial Management

Properties

Name Type Description
id string
descriptor string
invoiceNumber string
status string
supplier object
invoiceDate string
dueDate string
totalAmount number
currency string
purchaseOrder object
href string
View JSON Schema on GitHub

JSON Schema

workday-finance-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"
    },
    "descriptor": {
      "type": "string"
    },
    "invoiceNumber": {
      "type": "string"
    },
    "status": {
      "type": "string",
      "enum": [
        "draft",
        "submitted",
        "approved",
        "paid",
        "cancelled"
      ]
    },
    "supplier": {
      "$ref": "#/components/schemas/ResourceReference"
    },
    "invoiceDate": {
      "type": "string",
      "format": "date"
    },
    "dueDate": {
      "type": "string",
      "format": "date"
    },
    "totalAmount": {
      "type": "number",
      "format": "double"
    },
    "currency": {
      "type": "string"
    },
    "purchaseOrder": {
      "$ref": "#/components/schemas/ResourceReference"
    },
    "href": {
      "type": "string",
      "format": "uri"
    }
  }
}