Workday Tracking System · JSON Structure

Scheduling Worker Scheduling Preferences Input Structure

Input for updating scheduling preferences

Type: object Properties: 5
Absence ManagementAttendanceEnterpriseHCMHuman Capital ManagementPayrollSchedulingTime TrackingTimesheetsWorkforce Management

WorkerSchedulingPreferencesInput is a JSON Structure definition published by Workday Tracking System, describing 5 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

preferredStartTime preferredEndTime preferredDaysOff maxHoursPerWeek minHoursPerWeek

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/scheduling-worker-scheduling-preferences-input-structure.json",
  "name": "WorkerSchedulingPreferencesInput",
  "description": "Input for updating scheduling preferences",
  "type": "object",
  "properties": {
    "preferredStartTime": {
      "type": "time"
    },
    "preferredEndTime": {
      "type": "time"
    },
    "preferredDaysOff": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "maxHoursPerWeek": {
      "type": "float"
    },
    "minHoursPerWeek": {
      "type": "float"
    }
  }
}