Properties
| Name | Type | Description |
|---|---|---|
| id | string | The Workday ID of the worker. |
| descriptor | string | A display descriptor for the worker (typically full name). |
| href | string | A link to the full worker resource. |
| primaryWorkEmail | string | The primary work email address. |
| primaryWorkPhone | string | The primary work phone number. |
| isPrimaryJob | boolean | Whether this is the primary job for the worker. |
| businessTitle | string | The business title for the worker. |
| primarySupervisoryOrganization | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/WorkerSummary",
"title": "WorkerSummary",
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The Workday ID of the worker.",
"example": "abc123"
},
"descriptor": {
"type": "string",
"description": "A display descriptor for the worker (typically full name).",
"example": "example_value"
},
"href": {
"type": "string",
"format": "uri",
"description": "A link to the full worker resource.",
"example": "https://www.example.com"
},
"primaryWorkEmail": {
"type": "string",
"format": "email",
"description": "The primary work email address.",
"example": "[email protected]"
},
"primaryWorkPhone": {
"type": "string",
"description": "The primary work phone number.",
"example": "example_value"
},
"isPrimaryJob": {
"type": "boolean",
"description": "Whether this is the primary job for the worker.",
"example": true
},
"businessTitle": {
"type": "string",
"description": "The business title for the worker.",
"example": "example_value"
},
"primarySupervisoryOrganization": {
"$ref": "#/components/schemas/ResourceReference"
}
}
}