PostHog · Schema

EnterprisePropertyDefinition

Serializer mixin that handles tags for objects.

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
id string
name string
description string
tags array
is_numerical boolean
updated_at string
updated_by object
is_seen_on_filtered_events boolean
property_type object
verified boolean
verified_at string
verified_by object
hidden boolean
View JSON Schema on GitHub

JSON Schema

posthog-enterprisepropertydefinition-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EnterprisePropertyDefinition",
  "title": "EnterprisePropertyDefinition",
  "type": "object",
  "description": "Serializer mixin that handles tags for objects.",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "readOnly": true
    },
    "name": {
      "type": "string",
      "readOnly": true
    },
    "description": {
      "type": "string",
      "nullable": true
    },
    "tags": {
      "type": "array",
      "items": {}
    },
    "is_numerical": {
      "type": "boolean",
      "readOnly": true
    },
    "updated_at": {
      "type": "string",
      "format": "date-time",
      "readOnly": true
    },
    "updated_by": {
      "allOf": [
        {
          "$ref": "#/components/schemas/UserBasic"
        }
      ],
      "readOnly": true
    },
    "is_seen_on_filtered_events": {
      "type": "boolean",
      "readOnly": true,
      "nullable": true
    },
    "property_type": {
      "nullable": true,
      "oneOf": [
        {
          "$ref": "#/components/schemas/PropertyDefinitionTypeEnum"
        },
        {
          "$ref": "#/components/schemas/BlankEnum"
        },
        {
          "$ref": "#/components/schemas/NullEnum"
        }
      ]
    },
    "verified": {
      "type": "boolean"
    },
    "verified_at": {
      "type": "string",
      "format": "date-time",
      "readOnly": true,
      "nullable": true
    },
    "verified_by": {
      "allOf": [
        {
          "$ref": "#/components/schemas/UserBasic"
        }
      ],
      "readOnly": true
    },
    "hidden": {
      "type": "boolean",
      "nullable": true
    }
  },
  "required": [
    "id",
    "is_numerical",
    "is_seen_on_filtered_events",
    "name",
    "updated_at",
    "updated_by",
    "verified_at",
    "verified_by"
  ]
}