Workday Security · Schema

ActorRef

Reference to the actor who performed an audited action, which can be a user account or system process.

Access ControlAuditAuthenticationComplianceEnterpriseIdentity ManagementPrivacySAMLSecuritySSO

Properties

Name Type Description
id string Unique identifier of the actor
descriptor string Display name of the actor
accountType string Type of account that performed the action
View JSON Schema on GitHub

JSON Schema

workday-security-actorref-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ActorRef",
  "title": "ActorRef",
  "type": "object",
  "description": "Reference to the actor who performed an audited action, which can be a user account or system process.",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier of the actor"
    },
    "descriptor": {
      "type": "string",
      "description": "Display name of the actor"
    },
    "accountType": {
      "type": "string",
      "enum": [
        "User",
        "IntegrationSystemUser",
        "System"
      ],
      "description": "Type of account that performed the action"
    }
  }
}