Auth0 · Schema

ListFlowExecutionsOffsetPaginatedResponseContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

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

JSON Schema

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