Workday · Schema

CustomerInvoice

Cloud ComputingEnterprise SoftwareFinancial ManagementHCMSaaS

Properties

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

JSON Schema

workday-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",
      "example": "abc123"
    },
    "descriptor": {
      "type": "string",
      "example": "example_value"
    },
    "invoiceNumber": {
      "type": "string",
      "example": "example_value"
    },
    "customer": {
      "$ref": "#/components/schemas/ResourceReference"
    },
    "invoiceDate": {
      "type": "string",
      "format": "date",
      "example": "2026-01-15"
    },
    "dueDate": {
      "type": "string",
      "format": "date",
      "example": "2026-01-15"
    },
    "totalAmount": {
      "type": "number",
      "format": "double",
      "example": 42.5
    },
    "currency": {
      "$ref": "#/components/schemas/ResourceReference"
    },
    "status": {
      "type": "string",
      "example": "example_value"
    }
  }
}