Workday Security · Schema

WorkerRef

Reference to a Workday worker associated with a user account

Access ControlAuditAuthenticationComplianceEnterpriseIdentity ManagementPrivacySAMLSecuritySSO

Properties

Name Type Description
id string Unique identifier of the worker
descriptor string Display name of the worker
href string API URL for the worker resource
View JSON Schema on GitHub

JSON Schema

workday-security-workerref-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/WorkerRef",
  "title": "WorkerRef",
  "type": "object",
  "description": "Reference to a Workday worker associated with a user account",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier of the worker"
    },
    "descriptor": {
      "type": "string",
      "description": "Display name of the worker"
    },
    "href": {
      "type": "string",
      "format": "uri",
      "description": "API URL for the worker resource"
    }
  }
}