Workday Tracking System · JSON Structure

Scheduling Labor Demand Input Structure

Input for creating a labor demand entry

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

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

Properties

organizationId date hour requiredHeadcount jobProfileId

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-labor-demand-input-structure.json",
  "name": "LaborDemandInput",
  "description": "Input for creating a labor demand entry",
  "type": "object",
  "properties": {
    "organizationId": {
      "type": "string",
      "description": "Scheduling organization ID"
    },
    "date": {
      "type": "date",
      "description": "Date for the demand"
    },
    "hour": {
      "type": "int32",
      "description": "Hour of the day (0-23)",
      "minimum": 0,
      "maximum": 23
    },
    "requiredHeadcount": {
      "type": "int32",
      "description": "Number of workers required"
    },
    "jobProfileId": {
      "type": "string",
      "description": "Job profile ID (optional)"
    }
  },
  "required": [
    "organizationId",
    "date",
    "requiredHeadcount"
  ]
}