PostHog · Schema

ReorderTilesRequest

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
tile_order array Array of tile IDs in the desired display order (top to bottom, left to right).
View JSON Schema on GitHub

JSON Schema

posthog-reordertilesrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ReorderTilesRequest",
  "title": "ReorderTilesRequest",
  "type": "object",
  "properties": {
    "tile_order": {
      "type": "array",
      "items": {
        "type": "integer"
      },
      "description": "Array of tile IDs in the desired display order (top to bottom, left to right).",
      "minItems": 1
    }
  },
  "required": [
    "tile_order"
  ]
}