PostHog · Schema
GroupType
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 |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/GroupType",
"title": "GroupType",
"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
}
},
"required": [
"group_type",
"group_type_index"
]
}