Figma · Schema

ActivityLogsMeta

CollaborationDesignGraphicsInterfacesPrototypesPrototypingUI/UX

Properties

Name Type Description
activityLogs array An array of activity logs sorted by timestamp in ascending order by default.
cursor string Encodes the last event (the most recent event)
nextPage boolean Whether there is a next page of events
View JSON Schema on GitHub

JSON Schema

figma-activity-logs-activity-logs-meta-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ActivityLogsMeta",
  "type": "object",
  "properties": {
    "activityLogs": {
      "type": "array",
      "description": "An array of activity logs sorted by timestamp in ascending order by default."
    },
    "cursor": {
      "type": "string",
      "description": "Encodes the last event (the most recent event)"
    },
    "nextPage": {
      "type": "boolean",
      "description": "Whether there is a next page of events"
    }
  }
}