PostHog · Schema

PatchedCustomerProfileConfig

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
id string
scope object
content object
sidebar object
created_at string
updated_at string
View JSON Schema on GitHub

JSON Schema

posthog-patchedcustomerprofileconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PatchedCustomerProfileConfig",
  "title": "PatchedCustomerProfileConfig",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "readOnly": true
    },
    "scope": {
      "$ref": "#/components/schemas/CustomerProfileConfigScopeEnum"
    },
    "content": {
      "nullable": true
    },
    "sidebar": {
      "nullable": true
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "readOnly": true
    },
    "updated_at": {
      "type": "string",
      "format": "date-time",
      "readOnly": true,
      "nullable": true
    }
  }
}