Auth0 · Schema

ActionBindingRef

A reference to an action. An action can be referred to by ID or by Name.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
type object
value string The id or name of an action that is being bound to a trigger.
View JSON Schema on GitHub

JSON Schema

auth0-actionbindingref-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ActionBindingRef",
  "title": "ActionBindingRef",
  "type": "object",
  "description": "A reference to an action. An action can be referred to by ID or by Name.",
  "additionalProperties": true,
  "properties": {
    "type": {
      "$ref": "#/components/schemas/ActionBindingRefTypeEnum"
    },
    "value": {
      "type": "string",
      "description": "The id or name of an action that is being bound to a trigger.",
      "default": "my-action"
    }
  }
}