{ "$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": "user@example.com" }, "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" } } }