Workday · Schema

ExpenseReport

Cloud ComputingEnterprise SoftwareFinancial ManagementHCMSaaS

Properties

Name Type Description
id string
descriptor string
worker object
createdDate string
totalAmount number
currency object
status string Status of the report (e.g., Draft, Submitted, Approved, Paid).
memo string
View JSON Schema on GitHub

JSON Schema

workday-expensereport-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ExpenseReport",
  "title": "ExpenseReport",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "example": "abc123"
    },
    "descriptor": {
      "type": "string",
      "example": "example_value"
    },
    "worker": {
      "$ref": "#/components/schemas/ResourceReference"
    },
    "createdDate": {
      "type": "string",
      "format": "date",
      "example": "2026-01-15"
    },
    "totalAmount": {
      "type": "number",
      "format": "double",
      "example": 42.5
    },
    "currency": {
      "$ref": "#/components/schemas/ResourceReference"
    },
    "status": {
      "type": "string",
      "description": "Status of the report (e.g., Draft, Submitted, Approved, Paid).",
      "example": "example_value"
    },
    "memo": {
      "type": "string",
      "example": "example_value"
    }
  }
}