PostHog · Schema

PatchedCustomerJourney

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
id string
insight integer
name string
description string
created_at string
created_by integer
updated_at string
View JSON Schema on GitHub

JSON Schema

posthog-patchedcustomerjourney-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PatchedCustomerJourney",
  "title": "PatchedCustomerJourney",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "readOnly": true
    },
    "insight": {
      "type": "integer"
    },
    "name": {
      "type": "string",
      "maxLength": 400
    },
    "description": {
      "type": "string",
      "nullable": true
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "readOnly": true
    },
    "created_by": {
      "type": "integer",
      "readOnly": true,
      "nullable": true
    },
    "updated_at": {
      "type": "string",
      "format": "date-time",
      "readOnly": true,
      "nullable": true
    }
  }
}