SchedulingOrganizationInput

Input for creating a scheduling organization

Absence ManagementAttendanceEnterpriseHCMHuman Capital ManagementPayrollSchedulingTime TrackingTimesheetsWorkforce Management

Properties

Name Type Description
name string Name of the organization
type string Organization type
parentOrganizationId string Parent organization ID (optional)
timezone string Timezone identifier
View JSON Schema on GitHub

JSON Schema

scheduling-scheduling-organization-input-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/workday-tracking-system/refs/heads/main/json-schema/scheduling-scheduling-organization-input-schema.json",
  "title": "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"]
}