Auth0 · Schema

ListFlowExecutionsPaginatedResponseContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
next string Opaque identifier for use with the from query parameter for the next page of results.
This identifier is valid for 24 hours.
executions array
View JSON Schema on GitHub

JSON Schema

auth0-listflowexecutionspaginatedresponsecontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListFlowExecutionsPaginatedResponseContent",
  "title": "ListFlowExecutionsPaginatedResponseContent",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "next": {
      "type": "string",
      "description": "Opaque identifier for use with the <i>from</i> query parameter for the next page of results.<br/>This identifier is valid for 24 hours."
    },
    "executions": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/FlowExecutionSummary"
      }
    }
  }
}