Workday Tracking System · JSON Structure

Time Tracking Time Request Input Structure

Input for creating a time request

Type: object Properties: 3 Required: 2
Absence ManagementAttendanceEnterpriseHCMHuman Capital ManagementPayrollSchedulingTime TrackingTimesheetsWorkforce Management

TimeRequestInput is a JSON Structure definition published by Workday Tracking System, describing 3 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

requestDate requestType comment

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/workday-tracking-system/refs/heads/main/json-structure/time-tracking-time-request-input-structure.json",
  "name": "TimeRequestInput",
  "description": "Input for creating a time request",
  "type": "object",
  "properties": {
    "requestDate": {
      "type": "date",
      "description": "Date for the time request"
    },
    "requestType": {
      "type": "string",
      "description": "Type of time request",
      "enum": [
        "Overtime",
        "AdjustmentRequest",
        "ScheduleChange"
      ]
    },
    "comment": {
      "type": "string",
      "description": "Comment explaining the request"
    }
  },
  "required": [
    "requestDate",
    "requestType"
  ]
}