Auth0 · Schema

EventStreamCloudEventContext

Information about the context in which the event was produced. This may include things like HTTP request details, client information, connection information, etc. Note: This field may not be present on all events, depending on the event type and the context in which it was generated.

AI AgentsAuthenticationAuthorizationFGAIdentity ManagementMCPOAuthOktaOpenID ConnectSAMLSecuritySCIM

Properties

Name Type Description
client object
connection object
request object
tenant object
View JSON Schema on GitHub

JSON Schema

auth0-eventstreamcloudeventcontext-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EventStreamCloudEventContext",
  "title": "EventStreamCloudEventContext",
  "type": "object",
  "description": "Information about the context in which the event was produced. This may include things like\nHTTP request details, client information, connection information, etc.\n\nNote: This field may not be present on all events, depending on the event type and the\ncontext in which it was generated.",
  "additionalProperties": false,
  "required": [
    "tenant"
  ],
  "properties": {
    "client": {
      "$ref": "#/components/schemas/EventStreamCloudEventContextClient"
    },
    "connection": {
      "$ref": "#/components/schemas/EventStreamCloudEventContextConnection"
    },
    "request": {
      "$ref": "#/components/schemas/EventStreamCloudEventContextRequest"
    },
    "tenant": {
      "$ref": "#/components/schemas/EventStreamCloudEventContextTenant"
    }
  }
}