PostHog · Schema

CopyDashboardTileRequest

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
fromDashboardId integer Dashboard id the tile currently belongs to.
tileId integer Dashboard tile id to copy.
View JSON Schema on GitHub

JSON Schema

posthog-copydashboardtilerequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CopyDashboardTileRequest",
  "title": "CopyDashboardTileRequest",
  "type": "object",
  "properties": {
    "fromDashboardId": {
      "type": "integer",
      "description": "Dashboard id the tile currently belongs to."
    },
    "tileId": {
      "type": "integer",
      "description": "Dashboard tile id to copy."
    }
  },
  "required": [
    "fromDashboardId",
    "tileId"
  ]
}