ErrorMessage

Detailed error response including additional context

Properties

Name Type Description
message string Human-readable description of the error
errorCode string Specific error code for programmatic handling
View JSON Schema on GitHub

JSON Schema

automation-anywhere-errormessage-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ErrorMessage",
  "title": "ErrorMessage",
  "type": "object",
  "description": "Detailed error response including additional context",
  "properties": {
    "message": {
      "type": "string",
      "description": "Human-readable description of the error"
    },
    "errorCode": {
      "type": "string",
      "description": "Specific error code for programmatic handling"
    }
  }
}