Auth0 · Schema

ActionExecutionResult

Captures the results of a single action being executed.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
action_name string The name of the action that was executed.
error object
started_at string The time when the action was started.
ended_at string The time when the action finished executing.
View JSON Schema on GitHub

JSON Schema

auth0-actionexecutionresult-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ActionExecutionResult",
  "title": "ActionExecutionResult",
  "type": "object",
  "description": "Captures the results of a single action being executed.",
  "additionalProperties": false,
  "properties": {
    "action_name": {
      "type": "string",
      "description": "The name of the action that was executed.",
      "default": "my-action"
    },
    "error": {
      "$ref": "#/components/schemas/ActionError"
    },
    "started_at": {
      "type": "string",
      "description": "The time when the action was started.",
      "default": "2021-01-01T00:00:00.000Z",
      "format": "date-time"
    },
    "ended_at": {
      "type": "string",
      "description": "The time when the action finished executing.",
      "default": "2021-01-01T00:00:00.000Z",
      "format": "date-time"
    }
  }
}