Auth0 · Schema

GetActionModuleVersionsResponseContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
versions array A list of ActionsModuleVersion objects.
total integer The total number of versions for 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-getactionmoduleversionsresponsecontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GetActionModuleVersionsResponseContent",
  "title": "GetActionModuleVersionsResponseContent",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "versions": {
      "type": "array",
      "description": "A list of ActionsModuleVersion objects.",
      "items": {
        "$ref": "#/components/schemas/ActionModuleVersion"
      }
    },
    "total": {
      "type": "integer",
      "description": "The total number of versions for 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."
    }
  }
}