Figma · Schema

ActivityLog

An event returned by the Activity Logs API.

CollaborationDesignGraphicsInterfacesPrototypesPrototypingUI/UX

Properties

Name Type Description
id string The ID of the event.
timestamp number The timestamp of the event in seconds since the Unix epoch.
View JSON Schema on GitHub

JSON Schema

figma-activity-logs-activity-log-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ActivityLog",
  "type": "object",
  "description": "An event returned by the Activity Logs API.",
  "properties": {
    "id": {
      "type": "string",
      "description": "The ID of the event."
    },
    "timestamp": {
      "type": "number",
      "description": "The timestamp of the event in seconds since the Unix epoch."
    }
  }
}