Workday · Schema

SupervisoryOrganization

Cloud ComputingEnterprise SoftwareFinancial ManagementHCMSaaS

Properties

Name Type Description
id string The Workday ID of the organization.
descriptor string A display descriptor for the organization.
name string The name of the supervisory organization.
code string The organization reference ID.
isInactive boolean Whether the organization is inactive.
staffingModel string The staffing model for the organization.
View JSON Schema on GitHub

JSON Schema

hcm-supervisory-organization-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "SupervisoryOrganization",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "The Workday ID of the organization."
    },
    "descriptor": {
      "type": "string",
      "description": "A display descriptor for the organization."
    },
    "name": {
      "type": "string",
      "description": "The name of the supervisory organization."
    },
    "code": {
      "type": "string",
      "description": "The organization reference ID."
    },
    "isInactive": {
      "type": "boolean",
      "description": "Whether the organization is inactive."
    },
    "staffingModel": {
      "type": "string",
      "description": "The staffing model for the organization."
    }
  }
}