{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/AnswerSummaryItem", "title": "AnswerSummaryItem", "type": "object", "properties": { "order": { "type": "string", "example": "1", "description": "The order of the answer in the question." }, "value": { "type": "string", "example": "China", "description": "The content of the answer." }, "totalRespondents": { "type": "number", "example": 10, "description": "The total number of people who selected this answer." }, "isCorrect": { "type": "boolean", "example": true, "description": "Whether the answer is correct." } } }