PostHog · Schema
UserInterview
A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording
Properties
| Name | Type | Description |
|---|---|---|
| id | string | |
| created_by | object | |
| created_at | string | |
| interviewee_emails | array | |
| transcript | string | |
| summary | string | |
| audio | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/UserInterview",
"title": "UserInterview",
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "uuid",
"readOnly": true
},
"created_by": {
"allOf": [
{
"$ref": "#/components/schemas/UserBasic"
}
],
"readOnly": true
},
"created_at": {
"type": "string",
"format": "date-time",
"readOnly": true
},
"interviewee_emails": {
"type": "array",
"items": {
"type": "string",
"maxLength": 254
}
},
"transcript": {
"type": "string",
"readOnly": true
},
"summary": {
"type": "string"
},
"audio": {
"type": "string",
"format": "uri",
"writeOnly": true
}
},
"required": [
"audio",
"created_at",
"created_by",
"id",
"transcript"
]
}