Auth0 · Schema

ActionBindingWithRef

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
ref object
display_name string The name of the binding.
secrets array The list of secrets that are included in an action or a version of an action.
View JSON Schema on GitHub

JSON Schema

auth0-actionbindingwithref-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ActionBindingWithRef",
  "title": "ActionBindingWithRef",
  "type": "object",
  "additionalProperties": false,
  "required": [
    "ref"
  ],
  "properties": {
    "ref": {
      "$ref": "#/components/schemas/ActionBindingRef"
    },
    "display_name": {
      "type": "string",
      "description": "The name of the binding.",
      "default": "my-action-1"
    },
    "secrets": {
      "type": "array",
      "description": "The list of secrets that are included in an action or a version of an action.",
      "items": {
        "$ref": "#/components/schemas/ActionSecretRequest"
      }
    }
  }
}