Workday · Schema

TimeEntry

Cloud ComputingEnterprise SoftwareFinancial ManagementHCMSoftware-as-a-Service

Properties

Name Type Description
id string
descriptor string
date string
hours number The number of hours entered.
comment string
status string
View JSON Schema on GitHub

JSON Schema

timeTracking-time-entry-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "TimeEntry",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "descriptor": {
      "type": "string"
    },
    "date": {
      "type": "string"
    },
    "hours": {
      "type": "number",
      "description": "The number of hours entered."
    },
    "comment": {
      "type": "string"
    },
    "status": {
      "type": "string"
    }
  }
}