PostHog · Schema

FileSystemShortcutReorder

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
ordered_ids array IDs of the current user's shortcuts in the desired display order.
View JSON Schema on GitHub

JSON Schema

posthog-filesystemshortcutreorder-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/FileSystemShortcutReorder",
  "title": "FileSystemShortcutReorder",
  "type": "object",
  "properties": {
    "ordered_ids": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "uuid"
      },
      "description": "IDs of the current user's shortcuts in the desired display order."
    }
  },
  "required": [
    "ordered_ids"
  ]
}