Auth0 · Schema

ListUserSessionsPaginatedResponseContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
sessions array
next string A cursor to be used as the "from" query parameter for the next page of results.
View JSON Schema on GitHub

JSON Schema

auth0-listusersessionspaginatedresponsecontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListUserSessionsPaginatedResponseContent",
  "title": "ListUserSessionsPaginatedResponseContent",
  "type": "object",
  "additionalProperties": true,
  "properties": {
    "sessions": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/SessionResponseContent"
      }
    },
    "next": {
      "type": "string",
      "description": "A cursor to be used as the \"from\" query parameter for the next page of results."
    }
  }
}