Reclaim.ai · Schema

Notification

AISchedulingCalendarProductivityTasksHabitsTime ManagementMeetingsFocus Time

Properties

Name Type Description
id object
userId object
contextDateTime string
type object
context object
status object
View JSON Schema on GitHub

JSON Schema

reclaim-ai-notification.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api.app.reclaim.ai/schemas/Notification",
  "title": "Notification",
  "required": [
    "context",
    "contextDateTime",
    "id",
    "status",
    "type",
    "userId"
  ],
  "type": "object",
  "properties": {
    "id": {
      "$ref": "#/components/schemas/NotificationId"
    },
    "userId": {
      "$ref": "#/components/schemas/UserIdentifier"
    },
    "contextDateTime": {
      "type": "string",
      "format": "date-time"
    },
    "type": {
      "$ref": "#/components/schemas/NotificationType"
    },
    "context": {
      "$ref": "#/components/schemas/NotificationContext"
    },
    "status": {
      "$ref": "#/components/schemas/NotificationStatus"
    }
  }
}