{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AnswerForCustomizedQuestion", "title": "AnswerForCustomizedQuestion", "type": "object", "required": [ "answer" ], "properties": { "optionId": { "type": "number", "example": 1, "description": "Unique identifier for the option." }, "answer": { "type": "string", "example": "green", "description": "The content of the answer or the option for this question." } } }