Workday · Schema

TimeEntryRequest

Cloud ComputingEnterprise SoftwareFinancial ManagementHCMSaaS

Properties

Name Type Description
date string
hours number
timeEntryCode object
worktag object
comment string
View JSON Schema on GitHub

JSON Schema

workday-timeentryrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TimeEntryRequest",
  "title": "TimeEntryRequest",
  "type": "object",
  "properties": {
    "date": {
      "type": "string",
      "format": "date",
      "example": "2026-01-15"
    },
    "hours": {
      "type": "number",
      "format": "double",
      "example": 42.5
    },
    "timeEntryCode": {
      "$ref": "#/components/schemas/ResourceReference"
    },
    "worktag": {
      "$ref": "#/components/schemas/ResourceReference"
    },
    "comment": {
      "type": "string",
      "example": "example_value"
    }
  },
  "required": [
    "date",
    "hours"
  ]
}