{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CustomizedRegistrant",
"title": "CustomizedRegistrant",
"type": "object",
"required": [
"questionId",
"answers"
],
"properties": {
"questionId": {
"type": "number",
"example": 330087,
"description": "Unique identifier for the customized questions retrieved from the registration form."
},
"answers": {
"type": "array",
"items": {
"$ref": "#/components/schemas/AnswerForCustomizedQuestion"
},
"description": "The answers for customized questions. If the question type is checkbox, more than one answer can be set."
}
}
}