Auth0 · Schema

ListEventStreamsResponseContent

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
eventStreams array
next string Opaque identifier for use with the from query parameter for the next page of results.
View JSON Schema on GitHub

JSON Schema

auth0-listeventstreamsresponsecontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ListEventStreamsResponseContent",
  "title": "ListEventStreamsResponseContent",
  "type": "object",
  "additionalProperties": true,
  "properties": {
    "eventStreams": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/EventStreamResponseContent"
      }
    },
    "next": {
      "type": "string",
      "description": "Opaque identifier for use with the <i>from</i> query parameter for the next page of results."
    }
  }
}