Auth0 · Schema

ListActionsPaginatedResponseContent

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.
actions array The list of actions.
View JSON Schema on GitHub

JSON Schema

auth0-listactionspaginatedresponsecontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListActionsPaginatedResponseContent",
  "title": "ListActionsPaginatedResponseContent",
  "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
    },
    "actions": {
      "type": "array",
      "description": "The list of actions.",
      "items": {
        "$ref": "#/components/schemas/Action"
      }
    }
  }
}