{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/QuestionOptionObject", "title": "QuestionOptionObject", "type": "object", "required": [ "id", "value" ], "properties": { "id": { "type": "number", "example": 1, "description": "Unique identifier for the question option." }, "value": { "type": "string", "example": "Yes", "description": "Value for the question option." } } }