PostHog · Schema
Role
A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| name | string | |
| created_at | string | |
| created_by | object | |
| members | array | Members assigned to this role |
| is_default | boolean |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Role",
"title": "Role",
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid",
"readOnly": true
},
"name": {
"type": "string",
"maxLength": 200
},
"created_at": {
"type": "string",
"format": "date-time",
"readOnly": true
},
"created_by": {
"allOf": [
{
"$ref": "#/components/schemas/UserBasic"
}
],
"readOnly": true
},
"members": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": true
},
"description": "Members assigned to this role",
"readOnly": true
},
"is_default": {
"type": "boolean",
"readOnly": true
}
},
"required": [
"created_at",
"created_by",
"id",
"is_default",
"members",
"name"
]
}