Workday Security · Schema

Error

Error response returned when an API request fails due to invalid parameters or business rule violations.

Access ControlAuditAuthenticationComplianceEnterpriseIdentity ManagementPrivacySAMLSecuritySSO

Properties

Name Type Description
error string Error code identifying the type of error
message string Human-readable description of the error
View JSON Schema on GitHub

JSON Schema

workday-security-error-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Error",
  "title": "Error",
  "type": "object",
  "description": "Error response returned when an API request fails due to invalid parameters or business rule violations.",
  "properties": {
    "error": {
      "type": "string",
      "description": "Error code identifying the type of error"
    },
    "message": {
      "type": "string",
      "description": "Human-readable description of the error"
    }
  }
}