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