Workday Studio · Schema

ErrorResponse

CloudDevelopmentEnterpriseFinanceHRIDEIntegration

Properties

Name Type Description
error string A high-level error message
errors array Detailed list of validation or processing errors
View JSON Schema on GitHub

JSON Schema

workday-studio-errorresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ErrorResponse",
  "title": "ErrorResponse",
  "type": "object",
  "properties": {
    "error": {
      "type": "string",
      "description": "A high-level error message"
    },
    "errors": {
      "type": "array",
      "description": "Detailed list of validation or processing errors",
      "items": {
        "type": "object",
        "properties": {
          "error": {
            "type": "string",
            "description": "Error code or type"
          },
          "field": {
            "type": "string",
            "description": "The field that caused the error"
          },
          "message": {
            "type": "string",
            "description": "Human-readable error message"
          }
        }
      }
    }
  }
}