PostHog · Schema

SchemaPropertyGroup

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
id string
name string
description string
properties array
events array
created_at string
updated_at string
created_by object
View JSON Schema on GitHub

JSON Schema

posthog-schemapropertygroup-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SchemaPropertyGroup",
  "title": "SchemaPropertyGroup",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "readOnly": true
    },
    "name": {
      "type": "string",
      "maxLength": 400
    },
    "description": {
      "type": "string"
    },
    "properties": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/SchemaPropertyGroupProperty"
      }
    },
    "events": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/EventDefinitionBasic"
      },
      "readOnly": true
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "readOnly": true
    },
    "updated_at": {
      "type": "string",
      "format": "date-time",
      "readOnly": true
    },
    "created_by": {
      "allOf": [
        {
          "$ref": "#/components/schemas/UserBasic"
        }
      ],
      "readOnly": true
    }
  },
  "required": [
    "created_at",
    "created_by",
    "events",
    "id",
    "name",
    "updated_at"
  ]
}