Unified.to · Schema

CalendarWebinarRegistrant

IntegrationsUnified API

Properties

Name Type Description
email string
name string
registered_at string
registration_reference string
registration_status string
View JSON Schema on GitHub

JSON Schema

unified-to-calendarwebinarregistrant-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CalendarWebinarRegistrant",
  "title": "CalendarWebinarRegistrant",
  "properties": {
    "email": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "registered_at": {
      "format": "date-time",
      "type": "string"
    },
    "registration_reference": {
      "type": "string"
    },
    "registration_status": {
      "enum": [
        "PENDING",
        "APPROVED",
        "REJECTED",
        "CANCELLED"
      ],
      "type": "string",
      "x-speakeasy-unknown-values": "allow"
    }
  },
  "type": "object"
}