Auth0 · Schema

GetActionModuleActionsResponseContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
actions array A list of action references.
total integer The total number of actions using this module.
page integer The page index of the returned results.
per_page integer The number of results requested per page.
View JSON Schema on GitHub

JSON Schema

auth0-getactionmoduleactionsresponsecontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GetActionModuleActionsResponseContent",
  "title": "GetActionModuleActionsResponseContent",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "actions": {
      "type": "array",
      "description": "A list of action references.",
      "items": {
        "$ref": "#/components/schemas/ActionModuleAction"
      }
    },
    "total": {
      "type": "integer",
      "description": "The total number of actions using this module."
    },
    "page": {
      "type": "integer",
      "description": "The page index of the returned results."
    },
    "per_page": {
      "type": "integer",
      "description": "The number of results requested per page."
    }
  }
}