Workday Tracking System · JSON Structure

Scheduling Scheduling Organization Input Structure

Input for creating a scheduling organization

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

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

Properties

name type parentOrganizationId timezone

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-scheduling-organization-input-structure.json",
  "name": "SchedulingOrganizationInput",
  "description": "Input for creating a scheduling organization",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Name of the organization"
    },
    "type": {
      "type": "string",
      "description": "Organization type",
      "enum": [
        "Site",
        "Department",
        "Team"
      ]
    },
    "parentOrganizationId": {
      "type": "string",
      "description": "Parent organization ID (optional)"
    },
    "timezone": {
      "type": "string",
      "description": "Timezone identifier"
    }
  },
  "required": [
    "name",
    "type"
  ]
}