PostHog · Schema

PatchedDatasetItem

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
id string
dataset string
input object
output object
metadata object
ref_trace_id string
ref_timestamp string
ref_source_id string
deleted boolean
created_at string
updated_at string
created_by object
team integer
View JSON Schema on GitHub

JSON Schema

posthog-patcheddatasetitem-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PatchedDatasetItem",
  "title": "PatchedDatasetItem",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "readOnly": true
    },
    "dataset": {
      "type": "string",
      "format": "uuid"
    },
    "input": {
      "nullable": true
    },
    "output": {
      "nullable": true
    },
    "metadata": {
      "nullable": true
    },
    "ref_trace_id": {
      "type": "string",
      "nullable": true,
      "maxLength": 255
    },
    "ref_timestamp": {
      "type": "string",
      "format": "date-time",
      "nullable": true
    },
    "ref_source_id": {
      "type": "string",
      "nullable": true,
      "maxLength": 255
    },
    "deleted": {
      "type": "boolean",
      "nullable": true
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "readOnly": true
    },
    "updated_at": {
      "type": "string",
      "format": "date-time",
      "readOnly": true,
      "nullable": true
    },
    "created_by": {
      "allOf": [
        {
          "$ref": "#/components/schemas/UserBasic"
        }
      ],
      "readOnly": true
    },
    "team": {
      "type": "integer",
      "readOnly": true
    }
  }
}