Spaces:
Sleeping
Sleeping
File size: 885 Bytes
d17773d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
# questions.py
questions = [
{
"id": 1,
"question": "1.1 - Unidade do CEU:",
"type": "radio",
"options": [
"CEU Itapuã",
"CEU Recanto",
"CEU QNR 02",
"CEU QMN 28",
"CEU QNN 13",
"Outro"
],
"otherOption": True,
"section": "1. Informações Gerais",
"allowComment": False
},
# ... inclua todas as 14 perguntas aqui ...
{
"id": 14,
"question": "5.3 - Há algum outro comentário ou sugestão que gostaria de compartilhar?",
"type": "radio",
"options": ["Sim", "Não"],
"section": "5. Sugestões e Melhorias",
"allowComment": True,
"interpretation": "Um espaço aberto para o participante expressar livremente opiniões, sugestões e relatos além dos itens anteriores."
}
]
|