Auth0 · Schema

ListActionBindingsPaginatedResponseContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
total number The total result count.
page number Page index of the results being returned. First page is 0.
per_page number Number of results per page.
bindings array The list of actions that are bound to this trigger in the order in which they will be executed.
View JSON Schema on GitHub

JSON Schema

auth0-listactionbindingspaginatedresponsecontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListActionBindingsPaginatedResponseContent",
  "title": "ListActionBindingsPaginatedResponseContent",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "total": {
      "type": "number",
      "description": "The total result count.",
      "default": 1
    },
    "page": {
      "type": "number",
      "description": "Page index of the results being returned. First page is 0.",
      "default": 0
    },
    "per_page": {
      "type": "number",
      "description": "Number of results per page.",
      "default": 20
    },
    "bindings": {
      "type": "array",
      "description": "The list of actions that are bound to this trigger in the order in which they will be executed.",
      "items": {
        "$ref": "#/components/schemas/ActionBinding"
      }
    }
  }
}