PostHog · Schema

PatchedGroupType

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
group_type string
group_type_index integer
name_singular string
name_plural string
detail_dashboard integer
default_columns array
created_at string
View JSON Schema on GitHub

JSON Schema

posthog-patchedgrouptype-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PatchedGroupType",
  "title": "PatchedGroupType",
  "type": "object",
  "properties": {
    "group_type": {
      "type": "string",
      "readOnly": true
    },
    "group_type_index": {
      "type": "integer",
      "readOnly": true
    },
    "name_singular": {
      "type": "string",
      "nullable": true,
      "maxLength": 400
    },
    "name_plural": {
      "type": "string",
      "nullable": true,
      "maxLength": 400
    },
    "detail_dashboard": {
      "type": "integer",
      "nullable": true
    },
    "default_columns": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "nullable": true
    },
    "created_at": {
      "type": "string",
      "format": "date-time",
      "nullable": true
    }
  }
}