PostHog · Schema

DesktopRecordingTask

Serializer for extracted tasks

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
title string
description string
assignee string
View JSON Schema on GitHub

JSON Schema

posthog-desktoprecordingtask-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DesktopRecordingTask",
  "title": "DesktopRecordingTask",
  "type": "object",
  "description": "Serializer for extracted tasks",
  "properties": {
    "title": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "assignee": {
      "type": "string",
      "nullable": true
    }
  },
  "required": [
    "title"
  ]
}