{ "$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." } } }