PostHog · Schema

PatchedUserInterview

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
View JSON Schema on GitHub

JSON Schema

posthog-patcheduserinterview-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PatchedUserInterview",
  "title": "PatchedUserInterview",
  "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
    }
  }
}