Properties
| Name | Type | Description |
|---|---|---|
| questionId | string | Unique identifier for the question. |
| questionText | string | The question text. |
| questionType | string | The type of question. |
| isRequired | boolean | Whether the question requires an answer. |
| options | array | Available answer options (for choice-type questions). |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/ScorecardQuestion",
"title": "ScorecardQuestion",
"type": "object",
"properties": {
"questionId": {
"type": "string",
"description": "Unique identifier for the question."
},
"questionText": {
"type": "string",
"description": "The question text."
},
"questionType": {
"type": "string",
"enum": [
"YesNo",
"Scale",
"FreeText",
"SingleChoice",
"MultipleChoice"
],
"description": "The type of question."
},
"isRequired": {
"type": "boolean",
"description": "Whether the question requires an answer."
},
"options": {
"type": "array",
"items": {
"type": "object",
"properties": {
"value": {
"type": "string"
},
"label": {
"type": "string"
}
}
},
"description": "Available answer options (for choice-type questions)."
}
}
}