PostHog · Schema
QuarantinedIdentifierEntry
A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording
Properties
| Name | Type | Description |
|---|---|---|
| created_by | object | |
| id | string | |
| identifier | string | |
| run_type | string | |
| reason | string | |
| expires_at | string | |
| created_at | string | |
| updated_at | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/QuarantinedIdentifierEntry",
"title": "QuarantinedIdentifierEntry",
"type": "object",
"properties": {
"created_by": {
"allOf": [
{
"$ref": "#/components/schemas/UserBasicInfo"
}
],
"nullable": true
},
"id": {
"type": "string",
"format": "uuid"
},
"identifier": {
"type": "string"
},
"run_type": {
"type": "string"
},
"reason": {
"type": "string"
},
"expires_at": {
"type": "string",
"format": "date-time",
"nullable": true
},
"created_at": {
"type": "string",
"format": "date-time"
},
"updated_at": {
"type": "string",
"format": "date-time"
}
},
"required": [
"created_at",
"expires_at",
"id",
"identifier",
"reason",
"run_type",
"updated_at"
]
}