PostHog · Schema

GeneratedSurveyQuestionTranslationPatch

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
id string Survey question id this patch applies to.
translations object Question translation patch keyed by target language.
View JSON Schema on GitHub

JSON Schema

posthog-generatedsurveyquestiontranslationpatch-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GeneratedSurveyQuestionTranslationPatch",
  "title": "GeneratedSurveyQuestionTranslationPatch",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Survey question id this patch applies to."
    },
    "translations": {
      "type": "object",
      "additionalProperties": {
        "$ref": "#/components/schemas/GeneratedSurveyQuestionTranslation"
      },
      "description": "Question translation patch keyed by target language."
    }
  },
  "required": [
    "id",
    "translations"
  ]
}