Properties
| Name | Type | Description |
|---|---|---|
| id | string | The Workday ID of the organization |
| descriptor | string | The display name of the organization |
| organizationType | string | The type of organization |
| organizationCode | string | The organization reference code |
| isActive | boolean | Whether the organization is currently active |
| manager | object | |
| superior | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Organization",
"title": "Organization",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The Workday ID of the organization"
},
"descriptor": {
"type": "string",
"description": "The display name of the organization"
},
"organizationType": {
"type": "string",
"description": "The type of organization"
},
"organizationCode": {
"type": "string",
"description": "The organization reference code"
},
"isActive": {
"type": "boolean",
"description": "Whether the organization is currently active"
},
"manager": {
"$ref": "#/components/schemas/ResourceReference"
},
"superior": {
"$ref": "#/components/schemas/ResourceReference"
}
}
}