PostHog · Schema
SchemaPropertyGroupProperty
A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| name | string | |
| property_type | object | |
| is_required | boolean | |
| is_optional_in_types | boolean | |
| description | string | |
| created_at | string | |
| updated_at | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SchemaPropertyGroupProperty",
"title": "SchemaPropertyGroupProperty",
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid",
"readOnly": true
},
"name": {
"type": "string",
"maxLength": 400
},
"property_type": {
"$ref": "#/components/schemas/SchemaPropertyGroupPropertyPropertyTypeEnum"
},
"is_required": {
"type": "boolean"
},
"is_optional_in_types": {
"type": "boolean"
},
"description": {
"type": "string"
},
"created_at": {
"type": "string",
"format": "date-time",
"readOnly": true
},
"updated_at": {
"type": "string",
"format": "date-time",
"readOnly": true
}
},
"required": [
"created_at",
"id",
"name",
"property_type",
"updated_at"
]
}