PostHog · Schema
GeneratedSurveyQuestionTranslation
A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording
Properties
| Name | Type | Description |
|---|---|---|
| question | string | Translated question text. |
| description | string | Translated question description. |
| buttonText | string | Translated submit button text. |
| choices | array | Translated choices in the same order as the source choices. |
| lowerBoundLabel | string | Translated lower rating bound label. |
| upperBoundLabel | string | Translated upper rating bound label. |
| link | string | Translated link text or localized URL. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/GeneratedSurveyQuestionTranslation",
"title": "GeneratedSurveyQuestionTranslation",
"type": "object",
"properties": {
"question": {
"type": "string",
"description": "Translated question text."
},
"description": {
"type": "string",
"description": "Translated question description."
},
"buttonText": {
"type": "string",
"description": "Translated submit button text."
},
"choices": {
"type": "array",
"items": {
"type": "string"
},
"description": "Translated choices in the same order as the source choices."
},
"lowerBoundLabel": {
"type": "string",
"description": "Translated lower rating bound label."
},
"upperBoundLabel": {
"type": "string",
"description": "Translated upper rating bound label."
},
"link": {
"type": "string",
"description": "Translated link text or localized URL."
}
}
}