Auth0 · Schema

ListHooksOffsetPaginatedResponseContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
start number
limit number
total number
hooks array
View JSON Schema on GitHub

JSON Schema

auth0-listhooksoffsetpaginatedresponsecontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListHooksOffsetPaginatedResponseContent",
  "title": "ListHooksOffsetPaginatedResponseContent",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "start": {
      "type": "number"
    },
    "limit": {
      "type": "number"
    },
    "total": {
      "type": "number"
    },
    "hooks": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Hook"
      }
    }
  }
}