PostHog · Schema
PatchedOrganizationMember
A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| user | object | |
| level | object | |
| joined_at | string | |
| updated_at | string | |
| is_2fa_enabled | boolean | |
| has_social_auth | boolean | |
| last_login | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/PatchedOrganizationMember",
"title": "PatchedOrganizationMember",
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid",
"readOnly": true
},
"user": {
"allOf": [
{
"$ref": "#/components/schemas/UserBasic"
}
],
"readOnly": true
},
"level": {
"$ref": "#/components/schemas/OrganizationMembershipLevelEnum"
},
"joined_at": {
"type": "string",
"format": "date-time",
"readOnly": true
},
"updated_at": {
"type": "string",
"format": "date-time",
"readOnly": true
},
"is_2fa_enabled": {
"type": "boolean",
"readOnly": true
},
"has_social_auth": {
"type": "boolean",
"readOnly": true
},
"last_login": {
"type": "string",
"format": "date-time",
"readOnly": true
}
}
}