Regal · Schema

RegalEvent

A custom event submitted to the Regal Events API.

AIAI AgentsVoice AIContact CenterOutbound CallingInbound CallingPhone AgentsSMSChatWebRTCConversation IntelligenceJourney OrchestrationBranded Caller IDCCaaSCPaaSSales DialerCustomer Engagement

Properties

Name Type Description
userId string
traits object
name string Event name. Triggers Journeys when matched.
properties object
originalTimestamp string
eventSource string
View JSON Schema on GitHub

JSON Schema

regal-event-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/regal-ai/refs/heads/main/json-schema/regal-event-schema.json",
  "title": "RegalEvent",
  "description": "A custom event submitted to the Regal Events API.",
  "type": "object",
  "required": ["name"],
  "properties": {
    "userId": { "type": "string" },
    "traits": { "$ref": "https://raw.githubusercontent.com/api-evangelist/regal-ai/refs/heads/main/json-schema/regal-contact-schema.json" },
    "name": { "type": "string", "description": "Event name. Triggers Journeys when matched." },
    "properties": { "type": "object", "additionalProperties": true },
    "originalTimestamp": { "type": "string" },
    "eventSource": { "type": "string" }
  }
}